Gentoo Archives: gentoo-commits

From: "Tony Vroon (chainsaw)" <chainsaw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/dahdi-tools: ChangeLog dahdi-tools-2.2.0.ebuild
Date: Wed, 28 Oct 2009 11:25:17
Message-Id: E1N36eQ-0001bW-7d@stork.gentoo.org
1 chainsaw 09/10/28 11:25:14
2
3 Modified: ChangeLog
4 Added: dahdi-tools-2.2.0.ebuild
5 Log:
6 Version bump. Change libusb dependency as requested by Mounir "volkmar" Lamouri in bug #270160. Header & modprobe.d fixups by Csaba Tóth in bug #270283. Run fxotune from the init script, from Jaco Kroon in bug #273390.
7 (Portage version: 2.1.7.1/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.2 net-misc/dahdi-tools/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/dahdi-tools/ChangeLog?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/dahdi-tools/ChangeLog?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/dahdi-tools/ChangeLog?r1=1.1&r2=1.2
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-misc/dahdi-tools/ChangeLog,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- ChangeLog 10 Mar 2009 17:08:00 -0000 1.1
23 +++ ChangeLog 28 Oct 2009 11:25:13 -0000 1.2
24 @@ -1,6 +1,15 @@
25 # ChangeLog for net-misc/dahdi-tools
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-misc/dahdi-tools/ChangeLog,v 1.1 2009/03/10 17:08:00 chainsaw Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-misc/dahdi-tools/ChangeLog,v 1.2 2009/10/28 11:25:13 chainsaw Exp $
29 +
30 +*dahdi-tools-2.2.0 (28 Oct 2009)
31 +
32 + 28 Oct 2009; <chainsaw@g.o> +dahdi-tools-2.2.0.ebuild,
33 + +files/dahdi-tools-2.2.0-ifreq.patch,
34 + +files/dahdi-tools-2.2.0-modprobe-suffix.patch, +files/dahdi.init2:
35 + Version bump. Change libusb dependency as requested by Mounir "volkmar"
36 + Lamouri in bug #270160. Header & modprobe.d fixups by Csaba Tóth in bug
37 + #270283. Run fxotune from the init script, from Jaco Kroon in bug #273390.
38
39 *dahdi-tools-2.1.0.2 (10 Mar 2009)
40
41
42
43
44 1.1 net-misc/dahdi-tools/dahdi-tools-2.2.0.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/dahdi-tools/dahdi-tools-2.2.0.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/dahdi-tools/dahdi-tools-2.2.0.ebuild?rev=1.1&content-type=text/plain
48
49 Index: dahdi-tools-2.2.0.ebuild
50 ===================================================================
51 # Copyright 1999-2009 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/net-misc/dahdi-tools/dahdi-tools-2.2.0.ebuild,v 1.1 2009/10/28 11:25:13 chainsaw Exp $
54
55 EAPI=1
56 inherit eutils
57
58 DESCRIPTION="Userspace tools to configure the kernel modules from net-misc/dahdi"
59 HOMEPAGE="http://www.asterisk.org"
60 SRC_URI="http://downloads.digium.com/pub/telephony/dahdi-tools/releases/${P}.tar.gz"
61
62 LICENSE="GPL-2 LGPL-2.1"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE=""
66
67 DEPEND="net-misc/dahdi
68 virtual/libusb:0"
69
70 RDEPEND="${DEPEND}"
71
72 src_unpack() {
73 unpack ${A}
74 cd "${S}"
75 epatch "${FILESDIR}/${P}-ifreq.patch"
76 epatch "${FILESDIR}/${P}-modprobe-suffix.patch"
77 }
78
79 src_install() {
80 emake DESTDIR="${D}" install || die "Failed to install binaries"
81 emake DESTDIR="${D}" config || die "Failed to install configuration files"
82
83 # install init script
84 newinitd "${FILESDIR}"/dahdi.init2 dahdi
85 }