blob: 3ae9fa5a2b6964ed84e15d7728a242d196106a81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/dahdi-tools/dahdi-tools-2.6.2.ebuild,v 1.2 2013/05/08 16:26:52 vincent Exp $
EAPI=5
inherit base
DESCRIPTION="Userspace tools to configure the kernel modules from net-misc/dahdi"
HOMEPAGE="http://www.asterisk.org"
SRC_URI="http://downloads.asterisk.org/pub/telephony/${PN}/releases/${P}.tar.gz
mirror://gentoo/gentoo-${PN}-patchset-0.3.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="ppp"
DEPEND="dev-libs/newt
ppp? ( net-dialup/ppp )
>=net-misc/dahdi-2.5.0
!net-misc/zaptel
>=sys-kernel/linux-headers-2.6.35
virtual/libusb:0"
RDEPEND="${DEPEND}"
EPATCH_SUFFIX="diff"
PATCHES=( "${WORKDIR}/${PN}-patchset" )
src_compile() {
default_src_compile
emake tests
use ppp && emake -C ppp
}
src_install() {
emake DESTDIR="${D}" install
use ppp && emake DESTDIR="${D}" -C ppp install
emake DESTDIR="${D}" config
dosbin patgen pattest patlooptest hdlcstress hdlctest hdlcgen hdlcverify timertest
# install init scripts
newinitd "${FILESDIR}"/dahdi.init2 dahdi
newinitd "${FILESDIR}"/dahdi-autoconf.init2 dahdi-autoconf
newconfd "${FILESDIR}"/dahdi-autoconf.conf2 dahdi-autoconf
}
|