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: connman-0.65.ebuild ChangeLog connman-0.64-r1.ebuild connman-0.61-r2.ebuild connman-0.62.ebuild connman-0.64.ebuild
Date: Thu, 06 Jan 2011 15:27:57
Message-Id: 20110106152742.D8DF320051@flycatcher.gentoo.org
1 dagger 11/01/06 15:27:42
2
3 Modified: ChangeLog
4 Added: connman-0.65.ebuild connman-0.64-r1.ebuild
5 Removed: connman-0.61-r2.ebuild connman-0.62.ebuild
6 connman-0.64.ebuild
7 Log:
8 Added version 0.65 (bug #350758). Removed unused USE flag (bug #349006)
9
10 (Portage version: 2.1.9.29/cvs/Linux x86_64)
11
12 Revision Changes Path
13 1.29 net-misc/connman/ChangeLog
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/ChangeLog?rev=1.29&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/ChangeLog?rev=1.29&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/ChangeLog?r1=1.28&r2=1.29
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/net-misc/connman/ChangeLog,v
22 retrieving revision 1.28
23 retrieving revision 1.29
24 diff -u -r1.28 -r1.29
25 --- ChangeLog 17 Dec 2010 14:46:07 -0000 1.28
26 +++ ChangeLog 6 Jan 2011 15:27:42 -0000 1.29
27 @@ -1,6 +1,13 @@
28 # ChangeLog for net-misc/connman
29 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/net-misc/connman/ChangeLog,v 1.28 2010/12/17 14:46:07 dagger Exp $
31 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
32 +# $Header: /var/cvsroot/gentoo-x86/net-misc/connman/ChangeLog,v 1.29 2011/01/06 15:27:42 dagger Exp $
33 +
34 +*connman-0.65 (06 Jan 2011)
35 +*connman-0.64-r1 (06 Jan 2011)
36 +
37 + 06 Jan 2011; Robert Piasek <dagger@g.o> -connman-0.61-r2.ebuild,
38 + -connman-0.62.ebuild, +connman-0.64-r1.ebuild, +connman-0.65.ebuild:
39 + Added version 0.65 (bug #350758). Removed unused USE flag (bug #349006)
40
41 *connman-0.64 (17 Dec 2010)
42 *connman-0.63-r2 (17 Dec 2010)
43
44
45
46 1.1 net-misc/connman/connman-0.65.ebuild
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/connman-0.65.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/connman-0.65.ebuild?rev=1.1&content-type=text/plain
50
51 Index: connman-0.65.ebuild
52 ===================================================================
53 # Copyright 1999-2011 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 # $Header: /var/cvsroot/gentoo-x86/net-misc/connman/connman-0.65.ebuild,v 1.1 2011/01/06 15:27:42 dagger Exp $
56
57 EAPI="2"
58
59 inherit multilib eutils
60
61 DESCRIPTION="Provides a daemon for managing internet connections"
62 HOMEPAGE="http://connman.net"
63 SRC_URI="mirror://kernel/linux/network/${PN}/${P}.tar.gz"
64
65 LICENSE="GPL-2"
66 SLOT="0"
67 KEYWORDS="~amd64 ~arm ~x86"
68 IUSE="bluetooth +caps debug dnsproxy doc examples +ethernet google ofono openvpn policykit threads tools +wifi wimax"
69 # gps meego ospm openconnect
70
71 RDEPEND=">=dev-libs/glib-2.16
72 >=sys-apps/dbus-1.2.24
73 >=dev-libs/libnl-1.1
74 >=net-firewall/iptables-1.4.8
75 >=sys-kernel/linux-headers-2.6.30
76 bluetooth? ( net-wireless/bluez )
77 caps? ( sys-libs/libcap-ng )
78 ofono? ( net-misc/ofono )
79 policykit? ( sys-auth/polkit )
80 openvpn? ( net-misc/openvpn )
81 wifi? ( >=net-wireless/wpa_supplicant-0.7[dbus] )
82 wimax? ( net-wireless/wimax )"
83
84 DEPEND="${RDEPEND}
85 doc? ( dev-util/gtk-doc )"
86
87 #src_prepare() {
88 # epatch "${FILESDIR}/${P}-fix-iptables-test.patch"
89 #}
90
91 src_configure() {
92 econf \
93 --localstatedir=/var \
94 --enable-client \
95 --enable-fake \
96 --enable-datafiles \
97 --enable-loopback=builtin \
98 $(use_enable caps capng) \
99 $(use_enable examples test) \
100 $(use_enable ethernet ethernet builtin) \
101 $(use_enable wifi wifi builtin) \
102 $(use_enable bluetooth bluetooth builtin) \
103 $(use_enable ofono ofono builtin) \
104 $(use_enable dnsproxy dnsproxy builtin) \
105 $(use_enable google google builtin) \
106 $(use_enable openvpn openvpn builtin) \
107 $(use_enable policykit polkit builtin) \
108 $(use_enable wimax iwmx builtin) \
109 $(use_enable debug) \
110 $(use_enable doc gtk-doc) \
111 $(use_enable threads) \
112 $(use_enable tools) \
113 --disable-iospm \
114 --disable-hh2serial-gps \
115 --disable-portal \
116 --disable-meego \
117 --disable-openconnect
118 }
119
120 src_install() {
121 emake DESTDIR="${D}" install || die "emake install failed"
122 dobin client/cm || die "client installation failed"
123
124 keepdir /var/"$(get_libdir)"/${PN} || die
125 newinitd "${FILESDIR}"/${PN}.initd ${PN} || die
126 newconfd "${FILESDIR}"/${PN}.confd ${PN} || die
127 }
128
129
130
131 1.1 net-misc/connman/connman-0.64-r1.ebuild
132
133 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/connman-0.64-r1.ebuild?rev=1.1&view=markup
134 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/connman-0.64-r1.ebuild?rev=1.1&content-type=text/plain
135
136 Index: connman-0.64-r1.ebuild
137 ===================================================================
138 # Copyright 1999-2011 Gentoo Foundation
139 # Distributed under the terms of the GNU General Public License v2
140 # $Header: /var/cvsroot/gentoo-x86/net-misc/connman/connman-0.64-r1.ebuild,v 1.1 2011/01/06 15:27:42 dagger Exp $
141
142 EAPI="2"
143
144 inherit multilib eutils
145
146 DESCRIPTION="Provides a daemon for managing internet connections"
147 HOMEPAGE="http://connman.net"
148 SRC_URI="mirror://kernel/linux/network/${PN}/${P}.tar.gz"
149
150 LICENSE="GPL-2"
151 SLOT="0"
152 KEYWORDS="~amd64 ~arm ~x86"
153 IUSE="bluetooth +caps debug dnsproxy doc examples +ethernet google ofono openvpn policykit threads tools +wifi wimax"
154 # gps meego ospm openconnect
155
156 RDEPEND=">=dev-libs/glib-2.16
157 >=sys-apps/dbus-1.2.24
158 >=dev-libs/libnl-1.1
159 >=net-firewall/iptables-1.4.8
160 >=sys-kernel/linux-headers-2.6.30
161 bluetooth? ( net-wireless/bluez )
162 caps? ( sys-libs/libcap-ng )
163 ofono? ( net-misc/ofono )
164 policykit? ( sys-auth/polkit )
165 openvpn? ( net-misc/openvpn )
166 wifi? ( >=net-wireless/wpa_supplicant-0.7[dbus] )
167 wimax? ( net-wireless/wimax )"
168
169 DEPEND="${RDEPEND}
170 doc? ( dev-util/gtk-doc )"
171
172 #src_prepare() {
173 # epatch "${FILESDIR}/${P}-fix-iptables-test.patch"
174 #}
175
176 src_configure() {
177 econf \
178 --localstatedir=/var \
179 --enable-client \
180 --enable-fake \
181 --enable-datafiles \
182 --enable-loopback=builtin \
183 $(use_enable caps capng) \
184 $(use_enable examples test) \
185 $(use_enable ethernet ethernet builtin) \
186 $(use_enable wifi wifi builtin) \
187 $(use_enable bluetooth bluetooth builtin) \
188 $(use_enable ofono ofono builtin) \
189 $(use_enable dnsproxy dnsproxy builtin) \
190 $(use_enable google google builtin) \
191 $(use_enable openvpn openvpn builtin) \
192 $(use_enable policykit polkit builtin) \
193 $(use_enable wimax iwmx builtin) \
194 $(use_enable debug) \
195 $(use_enable doc gtk-doc) \
196 $(use_enable threads) \
197 $(use_enable tools) \
198 --disable-iospm \
199 --disable-hh2serial-gps \
200 --disable-portal \
201 --disable-meego \
202 --disable-openconnect
203 }
204
205 src_install() {
206 emake DESTDIR="${D}" install || die "emake install failed"
207 dobin client/cm || die "client installation failed"
208
209 keepdir /var/"$(get_libdir)"/${PN} || die
210 newinitd "${FILESDIR}"/${PN}.initd ${PN} || die
211 newconfd "${FILESDIR}"/${PN}.confd ${PN} || die
212 }