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/connman: connman-0.79.ebuild ChangeLog connman-0.80.ebuild connman-0.75.ebuild connman-0.73.ebuild
Date: Fri, 20 Apr 2012 10:33:02
Message-Id: 20120420103250.5E4792004B@flycatcher.gentoo.org
1 chainsaw 12/04/20 10:32:50
2
3 Modified: ChangeLog
4 Added: connman-0.79.ebuild connman-0.80.ebuild
5 Removed: connman-0.75.ebuild connman-0.73.ebuild
6 Log:
7 Version bump to 0.79 and 0.80 as requested by Vadim Efimov & Alessandro Capogna in bug #407563.
8
9 (Portage version: 2.1.10.56/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.50 net-misc/connman/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/ChangeLog?rev=1.50&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/ChangeLog?rev=1.50&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/ChangeLog?r1=1.49&r2=1.50
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-misc/connman/ChangeLog,v
21 retrieving revision 1.49
22 retrieving revision 1.50
23 diff -u -r1.49 -r1.50
24 --- ChangeLog 18 Apr 2012 17:52:28 -0000 1.49
25 +++ ChangeLog 20 Apr 2012 10:32:50 -0000 1.50
26 @@ -1,6 +1,16 @@
27 # ChangeLog for net-misc/connman
28 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-misc/connman/ChangeLog,v 1.49 2012/04/18 17:52:28 ago Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-misc/connman/ChangeLog,v 1.50 2012/04/20 10:32:50 chainsaw Exp $
31 +
32 +*connman-0.80 (20 Apr 2012)
33 +*connman-0.79 (20 Apr 2012)
34 +
35 + 20 Apr 2012; Tony Vroon <chainsaw@g.o> -connman-0.73.ebuild,
36 + -connman-0.75.ebuild, +connman-0.79.ebuild,
37 + +files/connman-0.79-glib-include.patch, +connman-0.80.ebuild,
38 + -files/fix-for-iptables-1.4.11.patch:
39 + Version bump to 0.79 and 0.80 as requested by Vadim Efimov & Alessandro
40 + Capogna in bug #407563.
41
42 18 Apr 2012; Agostino Sarubbo <ago@g.o> connman-0.78.ebuild:
43 Stable for amd64, wrt bug #410613
44
45
46
47 1.1 net-misc/connman/connman-0.79.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/connman-0.79.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/connman-0.79.ebuild?rev=1.1&content-type=text/plain
51
52 Index: connman-0.79.ebuild
53 ===================================================================
54 # Copyright 1999-2012 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/net-misc/connman/connman-0.79.ebuild,v 1.1 2012/04/20 10:32:50 chainsaw Exp $
57
58 EAPI="4"
59
60 inherit base eutils systemd
61
62 DESCRIPTION="Provides a daemon for managing internet connections"
63 HOMEPAGE="http://connman.net"
64 SRC_URI="mirror://kernel/linux/network/${PN}/${P}.tar.gz"
65
66 LICENSE="GPL-2"
67 SLOT="0"
68 KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
69 IUSE="bluetooth +caps debug doc examples +ethernet google ofono openvpn policykit threads tools vpnc +wifi wimax"
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 net-libs/gnutls
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 vpnc? ( net-misc/vpnc )
82 wifi? ( >=net-wireless/wpa_supplicant-0.7[dbus] )
83 wimax? ( net-wireless/wimax )"
84
85 DEPEND="${RDEPEND}
86 >=sys-kernel/linux-headers-2.6.39
87 doc? ( dev-util/gtk-doc )"
88
89 PATCHES=( "${FILESDIR}/${P}-glib-include.patch" )
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 google google builtin) \
105 $(use_enable openvpn openvpn builtin) \
106 $(use_enable policykit polkit builtin) \
107 $(use_enable vpnc vpnc 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-meego \
116 --disable-openconnect \
117 "$(systemd_with_unitdir systemdunitdir)"
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/lib/${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.80.ebuild
132
133 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/connman-0.80.ebuild?rev=1.1&view=markup
134 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/connman-0.80.ebuild?rev=1.1&content-type=text/plain
135
136 Index: connman-0.80.ebuild
137 ===================================================================
138 # Copyright 1999-2012 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.80.ebuild,v 1.1 2012/04/20 10:32:50 chainsaw Exp $
141
142 EAPI="4"
143
144 inherit eutils systemd
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 ~ppc ~ppc64 ~x86"
153 IUSE="bluetooth +caps debug doc examples +ethernet ofono openvpn policykit threads tools vpnc +wifi wimax"
154
155 RDEPEND=">=dev-libs/glib-2.16
156 >=sys-apps/dbus-1.2.24
157 >=dev-libs/libnl-1.1
158 >=net-firewall/iptables-1.4.8
159 net-libs/gnutls
160 bluetooth? ( net-wireless/bluez )
161 caps? ( sys-libs/libcap-ng )
162 ofono? ( net-misc/ofono )
163 policykit? ( sys-auth/polkit )
164 openvpn? ( net-misc/openvpn )
165 vpnc? ( net-misc/vpnc )
166 wifi? ( >=net-wireless/wpa_supplicant-0.7[dbus] )
167 wimax? ( net-wireless/wimax )"
168
169 DEPEND="${RDEPEND}
170 >=sys-kernel/linux-headers-2.6.39
171 doc? ( dev-util/gtk-doc )"
172
173 src_configure() {
174 econf \
175 --localstatedir=/var \
176 --enable-client \
177 --enable-fake \
178 --enable-datafiles \
179 --enable-loopback=builtin \
180 $(use_enable caps capng) \
181 $(use_enable examples test) \
182 $(use_enable ethernet ethernet builtin) \
183 $(use_enable wifi wifi builtin) \
184 $(use_enable bluetooth bluetooth builtin) \
185 $(use_enable ofono ofono builtin) \
186 $(use_enable openvpn openvpn builtin) \
187 $(use_enable policykit polkit builtin) \
188 $(use_enable vpnc vpnc builtin) \
189 $(use_enable wimax iwmx builtin) \
190 $(use_enable debug) \
191 $(use_enable doc gtk-doc) \
192 $(use_enable threads) \
193 $(use_enable tools) \
194 --disable-iospm \
195 --disable-hh2serial-gps \
196 --disable-openconnect \
197 "$(systemd_with_unitdir systemdunitdir)"
198 }
199
200 src_install() {
201 emake DESTDIR="${D}" install || die "emake install failed"
202 dobin client/cm || die "client installation failed"
203
204 keepdir /var/lib/${PN} || die
205 newinitd "${FILESDIR}"/${PN}.initd ${PN} || die
206 newconfd "${FILESDIR}"/${PN}.confd ${PN} || die
207 }