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/asterisk-addons: ChangeLog asterisk-addons-1.6.1.1.ebuild
Date: Fri, 11 Sep 2009 16:39:55
Message-Id: E1Mm9A8-0001IZ-LA@stork.gentoo.org
1 chainsaw 09/09/11 16:39:52
2
3 Modified: ChangeLog
4 Added: asterisk-addons-1.6.1.1.ebuild
5 Log:
6 Version bump, closes bug #267366 by Cédric Caron.
7 (Portage version: 2.1.6.13/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.16 net-misc/asterisk-addons/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/asterisk-addons/ChangeLog?rev=1.16&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/asterisk-addons/ChangeLog?rev=1.16&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/asterisk-addons/ChangeLog?r1=1.15&r2=1.16
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-misc/asterisk-addons/ChangeLog,v
19 retrieving revision 1.15
20 retrieving revision 1.16
21 diff -u -r1.15 -r1.16
22 --- ChangeLog 1 May 2009 15:43:59 -0000 1.15
23 +++ ChangeLog 11 Sep 2009 16:39:52 -0000 1.16
24 @@ -1,6 +1,13 @@
25 # ChangeLog for net-misc/asterisk-addons
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-misc/asterisk-addons/ChangeLog,v 1.15 2009/05/01 15:43:59 chainsaw Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-misc/asterisk-addons/ChangeLog,v 1.16 2009/09/11 16:39:52 chainsaw Exp $
29 +
30 +*asterisk-addons-1.6.1.1 (11 Sep 2009)
31 +
32 + 11 Sep 2009; <chainsaw@g.o> +asterisk-addons-1.6.1.1.ebuild,
33 + +files/asterisk-addons-1.6.1.1-parallel-make.diff,
34 + +files/asterisk-addons-1.6.1.1-uclibc.diff:
35 + Version bump, closes bug #267366 by Cédric Caron.
36
37 *asterisk-addons-1.2.9 (01 May 2009)
38
39
40
41
42 1.1 net-misc/asterisk-addons/asterisk-addons-1.6.1.1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/asterisk-addons/asterisk-addons-1.6.1.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/asterisk-addons/asterisk-addons-1.6.1.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: asterisk-addons-1.6.1.1.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-misc/asterisk-addons/asterisk-addons-1.6.1.1.ebuild,v 1.1 2009/09/11 16:39:52 chainsaw Exp $
52
53 inherit eutils
54
55 DESCRIPTION="Asterisk: A Modular Open Source PBX System"
56 HOMEPAGE="http://www.asterisk.org/"
57 SRC_URI="http://downloads.digium.com/pub/asterisk/releases/${P}.tar.gz"
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~amd64 ~x86"
61
62 IUSE="bluetooth elibc_uclibc mysql"
63
64 RDEPEND=">=net-misc/asterisk-1.6.1.6"
65
66 src_unpack() {
67 unpack ${A}
68 cd "${S}"
69
70 epatch "${FILESDIR}/${P}-parallel-make.diff"
71
72 # forward-ported patch from jaervosz for uclibc
73 # if use elibc_uclibc; then
74 epatch "${FILESDIR}/${P}-uclibc.diff"
75 # fi
76 }
77
78 src_compile() {
79 econf \
80 --libdir="/usr/$(get_libdir)" \
81 --localstatedir="/var" \
82 $(use_with bluetooth) \
83 $(use_with mysql mysqlclient) \
84 || die "Failed to configure"
85
86 emake || die "Failed to compile"
87 }
88
89 src_install() {
90 dodoc configs/*
91 emake DESTDIR="${D}" install || die "Failed to install"
92 }