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.46.ebuild connman-0.41.ebuild
Date: Tue, 03 Nov 2009 16:13:49
Message-Id: E1N5M0x-0006Ad-A4@stork.gentoo.org
1 dagger 09/11/03 16:13:47
2
3 Modified: ChangeLog
4 Added: connman-0.46.ebuild
5 Removed: connman-0.41.ebuild
6 Log:
7 Version bump for connman
8 (Portage version: 2.1.7.3/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.7 net-misc/connman/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/connman/ChangeLog?rev=1.7&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/connman/ChangeLog?rev=1.7&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/connman/ChangeLog?r1=1.6&r2=1.7
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-misc/connman/ChangeLog,v
20 retrieving revision 1.6
21 retrieving revision 1.7
22 diff -u -r1.6 -r1.7
23 --- ChangeLog 22 Oct 2009 14:58:52 -0000 1.6
24 +++ ChangeLog 3 Nov 2009 16:13:46 -0000 1.7
25 @@ -1,6 +1,16 @@
26 # ChangeLog for net-misc/connman
27 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-misc/connman/ChangeLog,v 1.6 2009/10/22 14:58:52 dagger Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-misc/connman/ChangeLog,v 1.7 2009/11/03 16:13:46 dagger Exp $
30 +
31 + 03 Nov 2009; Robert Piasek <dagger@g.o> -connman-0.41.ebuild,
32 + +connman-0.46.ebuild:
33 + Version bump
34 +
35 +*connman-0.46 (03 Nov 2009)
36 +
37 + 03 Nov 2009; Robert Piasek <dagger@g.o> -connman-0.41.ebuild,
38 + +connman-0.46.ebuild:
39 + Version bump
40
41 *connman-0.44 (22 Oct 2009)
42
43
44
45
46 1.1 net-misc/connman/connman-0.46.ebuild
47
48 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/connman/connman-0.46.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/connman/connman-0.46.ebuild?rev=1.1&content-type=text/plain
50
51 Index: connman-0.46.ebuild
52 ===================================================================
53 # Copyright 1999-2009 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.46.ebuild,v 1.1 2009/11/03 16:13:46 dagger Exp $
56
57 EAPI="2"
58
59 DESCRIPTION="Provides a daemon for managing internet connections"
60 HOMEPAGE="http://connman.net"
61 SRC_URI="mirror://kernel/linux/network/${PN}/${P}.tar.gz"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~arm ~amd64 ~x86"
66 IUSE="3G bluetooth debug +dhclient dnsproxy doc +ethernet modemmanager ofono policykit ppp resolvconf threads tools +udev +wifi"
67 # ospm wimax
68
69 RDEPEND=">=dev-libs/glib-2.16
70 >=sys-apps/dbus-1.2
71 bluetooth? ( net-wireless/bluez )
72 dhclient? ( net-misc/dhcp )
73 modemmanager? ( net-misc/modemmanager )
74 ofono? ( net-misc/ofono )
75 policykit? ( >=sys-auth/policykit-0.7 )
76 ppp? ( net-dialup/ppp )
77 resolvconf? ( net-dns/openresolv )
78 udev? ( >=sys-fs/udev-141 )
79 wifi? ( net-wireless/wpa_supplicant[dbus] )"
80
81 DEPEND="${RDEPEND}
82 doc? ( dev-util/gtk-doc )"
83
84 src_configure() {
85 econf \
86 --localstatedir=/var \
87 --enable-loopback \
88 --enable-client \
89 --enable-fake \
90 --enable-datafiles \
91 $(use_enable 3G novatel) \
92 $(use_enable 3G huawei) \
93 $(use_enable 3G hso) \
94 $(use_enable 3G mbm) \
95 $(use_enable bluetooth) \
96 $(use_enable debug) \
97 $(use_enable dhclient) \
98 $(use_enable dnsproxy) \
99 $(use_enable doc gtk-doc) \
100 $(use_enable ethernet) \
101 $(use_enable modemmanager modemmgr) \
102 $(use_enable ofono) \
103 $(use_enable policykit polkit) \
104 $(use_enable ppp) \
105 $(use_enable resolvconf) \
106 $(use_enable threads) \
107 $(use_enable tools) \
108 $(use_enable udev) \
109 $(use_enable wifi) \
110 --disable-udhcp \
111 --disable-iwmx \
112 --disable-iospm
113 }
114
115 src_install() {
116 emake DESTDIR="${D}" install || die "emake install failed"
117 dobin client/cm || die "client installation failed"
118
119 keepdir /var/lib/${PN} || die
120 newinitd "${FILESDIR}"/${PN}.initd ${PN} || die
121
122 }