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-1.13.ebuild ChangeLog
Date: Tue, 30 Apr 2013 15:38:51
Message-Id: 20130430153844.76DD22171D@flycatcher.gentoo.org
1 chainsaw 13/04/30 15:38:44
2
3 Modified: ChangeLog
4 Added: connman-1.13.ebuild
5 Log:
6 Version bump to 1.13; as requested by Andrew Brouwers in bug #468000.
7
8 (Portage version: 2.1.11.62/cvs/Linux x86_64, signed Manifest commit with key 0xB5058F9A)
9
10 Revision Changes Path
11 1.62 net-misc/connman/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/ChangeLog?rev=1.62&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/ChangeLog?rev=1.62&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/ChangeLog?r1=1.61&r2=1.62
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-misc/connman/ChangeLog,v
20 retrieving revision 1.61
21 retrieving revision 1.62
22 diff -u -r1.61 -r1.62
23 --- ChangeLog 14 Mar 2013 12:51:31 -0000 1.61
24 +++ ChangeLog 30 Apr 2013 15:38:44 -0000 1.62
25 @@ -1,6 +1,11 @@
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.61 2013/03/14 12:51:31 chainsaw Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-misc/connman/ChangeLog,v 1.62 2013/04/30 15:38:44 chainsaw Exp $
30 +
31 +*connman-1.13 (30 Apr 2013)
32 +
33 + 30 Apr 2013; Tony Vroon <chainsaw@g.o> +connman-1.13.ebuild:
34 + Version bump to 1.13; as requested by Andrew Brouwers in bug #468000.
35
36 *connman-1.11 (14 Mar 2013)
37
38
39
40
41 1.1 net-misc/connman/connman-1.13.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/connman-1.13.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/connman-1.13.ebuild?rev=1.1&content-type=text/plain
45
46 Index: connman-1.13.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-misc/connman/connman-1.13.ebuild,v 1.1 2013/04/30 15:38:44 chainsaw Exp $
51
52 EAPI="5"
53 inherit base
54
55 DESCRIPTION="Provides a daemon for managing internet connections"
56 HOMEPAGE="http://connman.net"
57 SRC_URI="mirror://kernel/linux/network/${PN}/${P}.tar.xz"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
62 IUSE="bluetooth debug doc examples +ethernet ofono openvpn policykit threads tools vpnc +wifi"
63
64 RDEPEND=">=dev-libs/glib-2.16
65 >=sys-apps/dbus-1.2.24
66 >=net-firewall/iptables-1.4.8
67 net-libs/gnutls
68 bluetooth? ( net-wireless/bluez )
69 ofono? ( net-misc/ofono )
70 policykit? ( sys-auth/polkit )
71 openvpn? ( net-misc/openvpn )
72 vpnc? ( net-misc/vpnc )
73 wifi? ( >=net-wireless/wpa_supplicant-0.7[dbus] )"
74
75 DEPEND="${RDEPEND}
76 >=sys-kernel/linux-headers-2.6.39
77 doc? ( dev-util/gtk-doc )"
78
79 src_configure() {
80 econf \
81 --localstatedir=/var \
82 --enable-client \
83 --enable-datafiles \
84 --enable-loopback=builtin \
85 $(use_enable examples test) \
86 $(use_enable ethernet ethernet builtin) \
87 $(use_enable wifi wifi builtin) \
88 $(use_enable bluetooth bluetooth builtin) \
89 $(use_enable ofono ofono builtin) \
90 $(use_enable openvpn openvpn builtin) \
91 $(use_enable policykit polkit builtin) \
92 $(use_enable vpnc vpnc builtin) \
93 $(use_enable debug) \
94 $(use_enable doc gtk-doc) \
95 $(use_enable threads) \
96 $(use_enable tools) \
97 --disable-iospm \
98 --disable-hh2serial-gps \
99 --disable-openconnect
100 }
101
102 src_install() {
103 emake DESTDIR="${D}" install || die "emake install failed"
104 dobin client/connmanctl || die "client installation failed"
105
106 keepdir /var/lib/${PN} || die
107 newinitd "${FILESDIR}"/${PN}.initd2 ${PN} || die
108 newconfd "${FILESDIR}"/${PN}.confd ${PN} || die
109 }