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: ChangeLog connman-1.14.ebuild connman-1.15.ebuild
Date: Tue, 04 Jun 2013 10:15:28
Message-Id: 20130604101522.387992171D@flycatcher.gentoo.org
1 chainsaw 13/06/04 10:15:22
2
3 Modified: ChangeLog
4 Added: connman-1.14.ebuild connman-1.15.ebuild
5 Log:
6 Version bumps. Primarily bugfixes, particularly around hidden SSID (WiFi) scanning and the command line client.
7
8 (Portage version: 2.1.12.2/cvs/Linux x86_64, signed Manifest commit with key 0xB5058F9A)
9
10 Revision Changes Path
11 1.63 net-misc/connman/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/ChangeLog?rev=1.63&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/ChangeLog?rev=1.63&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/ChangeLog?r1=1.62&r2=1.63
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-misc/connman/ChangeLog,v
20 retrieving revision 1.62
21 retrieving revision 1.63
22 diff -u -r1.62 -r1.63
23 --- ChangeLog 30 Apr 2013 15:38:44 -0000 1.62
24 +++ ChangeLog 4 Jun 2013 10:15:22 -0000 1.63
25 @@ -1,6 +1,14 @@
26 # ChangeLog for net-misc/connman
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-misc/connman/ChangeLog,v 1.62 2013/04/30 15:38:44 chainsaw Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-misc/connman/ChangeLog,v 1.63 2013/06/04 10:15:22 chainsaw Exp $
30 +
31 +*connman-1.15 (04 Jun 2013)
32 +*connman-1.14 (04 Jun 2013)
33 +
34 + 04 Jun 2013; Tony Vroon <chainsaw@g.o> +connman-1.14.ebuild,
35 + +connman-1.15.ebuild:
36 + Version bumps. Primarily bugfixes, particularly around hidden SSID (WiFi)
37 + scanning and the command line client.
38
39 *connman-1.13 (30 Apr 2013)
40
41
42
43
44 1.1 net-misc/connman/connman-1.14.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/connman-1.14.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/connman-1.14.ebuild?rev=1.1&content-type=text/plain
48
49 Index: connman-1.14.ebuild
50 ===================================================================
51 # Copyright 1999-2013 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/net-misc/connman/connman-1.14.ebuild,v 1.1 2013/06/04 10:15:22 chainsaw Exp $
54
55 EAPI="5"
56 inherit base
57
58 DESCRIPTION="Provides a daemon for managing internet connections"
59 HOMEPAGE="http://connman.net"
60 SRC_URI="mirror://kernel/linux/network/${PN}/${P}.tar.xz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
65 IUSE="bluetooth debug doc examples +ethernet ofono openvpn policykit threads tools vpnc +wifi"
66
67 RDEPEND=">=dev-libs/glib-2.16
68 >=sys-apps/dbus-1.2.24
69 >=net-firewall/iptables-1.4.8
70 net-libs/gnutls
71 bluetooth? ( net-wireless/bluez )
72 ofono? ( net-misc/ofono )
73 policykit? ( sys-auth/polkit )
74 openvpn? ( net-misc/openvpn )
75 vpnc? ( net-misc/vpnc )
76 wifi? ( >=net-wireless/wpa_supplicant-0.7[dbus] )"
77
78 DEPEND="${RDEPEND}
79 >=sys-kernel/linux-headers-2.6.39
80 doc? ( dev-util/gtk-doc )"
81
82 src_configure() {
83 econf \
84 --localstatedir=/var \
85 --enable-client \
86 --enable-datafiles \
87 --enable-loopback=builtin \
88 $(use_enable examples test) \
89 $(use_enable ethernet ethernet builtin) \
90 $(use_enable wifi wifi builtin) \
91 $(use_enable bluetooth bluetooth builtin) \
92 $(use_enable ofono ofono builtin) \
93 $(use_enable openvpn openvpn builtin) \
94 $(use_enable policykit polkit builtin) \
95 $(use_enable vpnc vpnc builtin) \
96 $(use_enable debug) \
97 $(use_enable doc gtk-doc) \
98 $(use_enable threads) \
99 $(use_enable tools) \
100 --disable-iospm \
101 --disable-hh2serial-gps \
102 --disable-openconnect
103 }
104
105 src_install() {
106 emake DESTDIR="${D}" install || die "emake install failed"
107 dobin client/connmanctl || die "client installation failed"
108
109 keepdir /var/lib/${PN} || die
110 newinitd "${FILESDIR}"/${PN}.initd2 ${PN} || die
111 newconfd "${FILESDIR}"/${PN}.confd ${PN} || die
112 }
113
114
115
116 1.1 net-misc/connman/connman-1.15.ebuild
117
118 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/connman-1.15.ebuild?rev=1.1&view=markup
119 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/connman-1.15.ebuild?rev=1.1&content-type=text/plain
120
121 Index: connman-1.15.ebuild
122 ===================================================================
123 # Copyright 1999-2013 Gentoo Foundation
124 # Distributed under the terms of the GNU General Public License v2
125 # $Header: /var/cvsroot/gentoo-x86/net-misc/connman/connman-1.15.ebuild,v 1.1 2013/06/04 10:15:22 chainsaw Exp $
126
127 EAPI="5"
128 inherit base
129
130 DESCRIPTION="Provides a daemon for managing internet connections"
131 HOMEPAGE="http://connman.net"
132 SRC_URI="mirror://kernel/linux/network/${PN}/${P}.tar.xz"
133
134 LICENSE="GPL-2"
135 SLOT="0"
136 KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
137 IUSE="bluetooth debug doc examples +ethernet ofono openvpn policykit threads tools vpnc +wifi"
138
139 RDEPEND=">=dev-libs/glib-2.16
140 >=sys-apps/dbus-1.2.24
141 >=net-firewall/iptables-1.4.8
142 net-libs/gnutls
143 bluetooth? ( net-wireless/bluez )
144 ofono? ( net-misc/ofono )
145 policykit? ( sys-auth/polkit )
146 openvpn? ( net-misc/openvpn )
147 vpnc? ( net-misc/vpnc )
148 wifi? ( >=net-wireless/wpa_supplicant-0.7[dbus] )"
149
150 DEPEND="${RDEPEND}
151 >=sys-kernel/linux-headers-2.6.39
152 doc? ( dev-util/gtk-doc )"
153
154 src_configure() {
155 econf \
156 --localstatedir=/var \
157 --enable-client \
158 --enable-datafiles \
159 --enable-loopback=builtin \
160 $(use_enable examples test) \
161 $(use_enable ethernet ethernet builtin) \
162 $(use_enable wifi wifi builtin) \
163 $(use_enable bluetooth bluetooth builtin) \
164 $(use_enable ofono ofono builtin) \
165 $(use_enable openvpn openvpn builtin) \
166 $(use_enable policykit polkit builtin) \
167 $(use_enable vpnc vpnc builtin) \
168 $(use_enable debug) \
169 $(use_enable doc gtk-doc) \
170 $(use_enable threads) \
171 $(use_enable tools) \
172 --disable-iospm \
173 --disable-hh2serial-gps \
174 --disable-openconnect
175 }
176
177 src_install() {
178 emake DESTDIR="${D}" install || die "emake install failed"
179 dobin client/connmanctl || die "client installation failed"
180
181 keepdir /var/lib/${PN} || die
182 newinitd "${FILESDIR}"/${PN}.initd2 ${PN} || die
183 newconfd "${FILESDIR}"/${PN}.confd ${PN} || die
184 }