Gentoo Archives: gentoo-commits

From: "Robert Piasek (dagger)" <dagger@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/connman: ChangeLog connman-0.57-r1.ebuild connman-0.57.ebuild
Date: Fri, 20 Aug 2010 08:08:01
Message-Id: 20100820080757.291EA2004E@flycatcher.gentoo.org
1 dagger 10/08/20 08:07:57
2
3 Modified: ChangeLog
4 Added: connman-0.57-r1.ebuild
5 Removed: connman-0.57.ebuild
6 Log:
7 Added patch to fix compilation with iptables 1.4.9
8 (Portage version: 2.1.8.3/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.17 net-misc/connman/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/ChangeLog?rev=1.17&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/ChangeLog?rev=1.17&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/ChangeLog?r1=1.16&r2=1.17
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-misc/connman/ChangeLog,v
20 retrieving revision 1.16
21 retrieving revision 1.17
22 diff -u -r1.16 -r1.17
23 --- ChangeLog 16 Aug 2010 12:42:55 -0000 1.16
24 +++ ChangeLog 20 Aug 2010 08:07:53 -0000 1.17
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-misc/connman
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-misc/connman/ChangeLog,v 1.16 2010/08/16 12:42:55 dagger Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-misc/connman/ChangeLog,v 1.17 2010/08/20 08:07:53 dagger Exp $
30 +
31 +*connman-0.57-r1 (20 Aug 2010)
32 +
33 + 20 Aug 2010; Robert Piasek <dagger@g.o> -connman-0.57.ebuild,
34 + +connman-0.57-r1.ebuild, +files/connman-0.57-fix-iptables-test.patch:
35 + This patch fixes test/iptables to compile with iptables 1.4.9 and newer
36
37 *connman-0.57 (16 Aug 2010)
38
39
40
41
42 1.1 net-misc/connman/connman-0.57-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/connman-0.57-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/connman-0.57-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: connman-0.57-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header $
52
53 EAPI="2"
54
55 inherit multilib eutils
56
57 DESCRIPTION="Provides a daemon for managing internet connections"
58 HOMEPAGE="http://connman.net"
59 SRC_URI="mirror://kernel/linux/network/${PN}/${P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="bluetooth +caps debug +dhclient dnsproxy doc examples +ethernet google ofono policykit resolvconf threads tools +udev +wifi wimax"
65 # gps meego ospm openconnect
66
67 RDEPEND=">=dev-libs/glib-2.16
68 >=sys-apps/dbus-1.2.24
69 bluetooth? ( net-wireless/bluez )
70 caps? ( sys-libs/libcap-ng )
71 dhclient? ( net-misc/dhcp )
72 ofono? ( net-misc/ofono )
73 policykit? ( >=sys-auth/policykit-0.7 )
74 resolvconf? ( net-dns/openresolv )
75 udev? ( >=sys-fs/udev-141 )
76 wifi? ( >=net-wireless/wpa_supplicant-0.7[dbus] )
77 wimax? ( net-wireless/wimax )"
78
79 DEPEND="${RDEPEND}
80 doc? ( dev-util/gtk-doc )"
81
82 src_prepare() {
83 epatch "${FILESDIR}/${P}-fix-iptables-test.patch"
84 }
85
86 src_configure() {
87 econf \
88 --localstatedir=/var \
89 --enable-client \
90 --enable-fake \
91 --enable-datafiles \
92 --enable-loopback=builtin \
93 $(use_enable caps capng) \
94 $(use_enable example test) \
95 $(use_enable ethernet ethernet builtin) \
96 $(use_enable wifi wifi builtin) \
97 $(use_enable bluetooth bluetooth builtin) \
98 $(use_enable ofono ofono builtin) \
99 $(use_enable dhclient dhclient builtin) \
100 $(use_enable resolvconf resolvconf builtin) \
101 $(use_enable dnsproxy dnsproxy builtin) \
102 $(use_enable google google builtin) \
103 $(use_enable policykit polkit builtin) \
104 $(use_enable wimax iwmx builtin) \
105 $(use_enable debug) \
106 $(use_enable doc gtk-doc) \
107 $(use_enable threads) \
108 $(use_enable tools) \
109 $(use_enable udev) \
110 --disable-udhcp \
111 --disable-iospm \
112 --disable-hh2serial-gps \
113 --disable-portal \
114 --disable-meego \
115 --disable-openconnect
116 }
117
118 src_install() {
119 emake DESTDIR="${D}" install || die "emake install failed"
120 dobin client/cm || die "client installation failed"
121
122 keepdir /var/"$(get_libdir)"/${PN} || die
123 newinitd "${FILESDIR}"/${PN}.initd ${PN} || die
124 newconfd "${FILESDIR}"/${PN}.confd ${PN} || die
125 }