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.62.ebuild connman-0.60-r1.ebuild
Date: Mon, 04 Oct 2010 14:23:16
Message-Id: 20101004142307.7303120051@flycatcher.gentoo.org
1 dagger 10/10/04 14:23:07
2
3 Modified: ChangeLog
4 Added: connman-0.62.ebuild
5 Removed: connman-0.60-r1.ebuild
6 Log:
7 New version of connman is now ready.
8
9 (Portage version: 2.1.9.13/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.24 net-misc/connman/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/ChangeLog?rev=1.24&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/ChangeLog?rev=1.24&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/ChangeLog?r1=1.23&r2=1.24
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-misc/connman/ChangeLog,v
21 retrieving revision 1.23
22 retrieving revision 1.24
23 diff -u -r1.23 -r1.24
24 --- ChangeLog 30 Sep 2010 10:10:33 -0000 1.23
25 +++ ChangeLog 4 Oct 2010 14:23:07 -0000 1.24
26 @@ -1,6 +1,12 @@
27 # ChangeLog for net-misc/connman
28 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-misc/connman/ChangeLog,v 1.23 2010/09/30 10:10:33 dagger Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-misc/connman/ChangeLog,v 1.24 2010/10/04 14:23:07 dagger Exp $
31 +
32 +*connman-0.62 (04 Oct 2010)
33 +
34 + 04 Oct 2010; Robert Piasek <dagger@g.o> -connman-0.60-r1.ebuild,
35 + +connman-0.62.ebuild:
36 + Version bump
37
38 *connman-0.61-r1 (30 Sep 2010)
39 *connman-0.60-r1 (30 Sep 2010)
40
41
42
43 1.1 net-misc/connman/connman-0.62.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/connman-0.62.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/connman/connman-0.62.ebuild?rev=1.1&content-type=text/plain
47
48 Index: connman-0.62.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-misc/connman/connman-0.62.ebuild,v 1.1 2010/10/04 14:23:07 dagger Exp $
53
54 EAPI="2"
55
56 inherit multilib eutils
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.gz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~arm ~x86"
65 IUSE="bluetooth +caps debug +dhclient dnsproxy doc examples +ethernet google ofono policykit threads tools +udev +wifi wimax"
66 # gps meego ospm openconnect
67
68 RDEPEND=">=dev-libs/glib-2.16
69 >=sys-apps/dbus-1.2.24
70 >=dev-libs/libnl-1.1
71 bluetooth? ( net-wireless/bluez )
72 caps? ( sys-libs/libcap-ng )
73 dhclient? ( net-misc/dhcp )
74 ofono? ( net-misc/ofono )
75 policykit? ( >=sys-auth/policykit-0.7 )
76 udev? ( >=sys-fs/udev-141 )
77 wifi? ( >=net-wireless/wpa_supplicant-0.7[dbus] )
78 wimax? ( net-wireless/wimax )"
79
80 DEPEND="${RDEPEND}
81 doc? ( dev-util/gtk-doc )"
82
83 #src_prepare() {
84 # epatch "${FILESDIR}/${P}-fix-iptables-test.patch"
85 #}
86
87 src_configure() {
88 econf \
89 --localstatedir=/var \
90 --enable-client \
91 --enable-fake \
92 --enable-datafiles \
93 --enable-loopback=builtin \
94 $(use_enable caps capng) \
95 $(use_enable examples test) \
96 $(use_enable ethernet ethernet builtin) \
97 $(use_enable wifi wifi builtin) \
98 $(use_enable bluetooth bluetooth builtin) \
99 $(use_enable ofono ofono builtin) \
100 $(use_enable dhclient dhclient 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-iospm \
111 --disable-hh2serial-gps \
112 --disable-portal \
113 --disable-meego \
114 --disable-openconnect
115 }
116
117 src_install() {
118 emake DESTDIR="${D}" install || die "emake install failed"
119 dobin client/cm || die "client installation failed"
120
121 keepdir /var/"$(get_libdir)"/${PN} || die
122 newinitd "${FILESDIR}"/${PN}.initd ${PN} || die
123 newconfd "${FILESDIR}"/${PN}.confd ${PN} || die
124 }