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.49.ebuild connman-0.46.ebuild
Date: Thu, 11 Feb 2010 17:15:55
Message-Id: E1Nfcdt-00054N-MB@stork.gentoo.org
1 dagger 10/02/11 17:15:53
2
3 Modified: ChangeLog
4 Added: connman-0.49.ebuild
5 Removed: connman-0.46.ebuild
6 Log:
7 New version of Connman. Fixes issues with wifi, bluetooth and adds static IP settings
8 (Portage version: 2.1.7.17/cvs/Linux x86_64, RepoMan options: --force)
9
10 Revision Changes Path
11 1.11 net-misc/connman/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/connman/ChangeLog?rev=1.11&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/connman/ChangeLog?rev=1.11&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/connman/ChangeLog?r1=1.10&r2=1.11
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-misc/connman/ChangeLog,v
20 retrieving revision 1.10
21 retrieving revision 1.11
22 diff -u -r1.10 -r1.11
23 --- ChangeLog 5 Feb 2010 13:21:31 -0000 1.10
24 +++ ChangeLog 11 Feb 2010 17:15:52 -0000 1.11
25 @@ -1,6 +1,13 @@
26 # ChangeLog for net-misc/connman
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-misc/connman/ChangeLog,v 1.10 2010/02/05 13:21:31 dagger Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-misc/connman/ChangeLog,v 1.11 2010/02/11 17:15:52 dagger Exp $
30 +
31 +*connman-0.49 (11 Feb 2010)
32 +
33 + 11 Feb 2010; Robert Piasek <dagger@g.o> -connman-0.46.ebuild,
34 + +connman-0.49.ebuild:
35 + New version of Connman. Fixes issues with wifi, bluetooth and adds static
36 + IP settings
37
38 *connman-0.48-r1 (05 Feb 2010)
39
40
41
42
43 1.1 net-misc/connman/connman-0.49.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/connman/connman-0.49.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/connman/connman-0.49.ebuild?rev=1.1&content-type=text/plain
47
48 Index: connman-0.49.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header $
53
54 EAPI="2"
55
56 DESCRIPTION="Provides a daemon for managing internet connections"
57 HOMEPAGE="http://connman.net"
58 SRC_URI="mirror://kernel/linux/network/${PN}/${P}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~arm ~amd64 ~x86"
63 IUSE="3G bluetooth debug +dhclient dnsproxy doc +ethernet google moblin ofono policykit resolvconf threads tools +udev +wifi"
64 # ospm wimax
65
66 RDEPEND=">=dev-libs/glib-2.16
67 >=sys-apps/dbus-1.3
68 bluetooth? ( net-wireless/bluez )
69 dhclient? ( net-misc/dhcp )
70 ofono? ( net-misc/ofono )
71 policykit? ( >=sys-auth/policykit-0.7 )
72 resolvconf? ( net-dns/openresolv )
73 udev? ( >=sys-fs/udev-141 )
74 wifi? ( >=net-wireless/wpa_supplicant-0.7[dbus] )"
75
76 DEPEND="${RDEPEND}
77 doc? ( dev-util/gtk-doc )"
78
79 src_configure() {
80 econf \
81 --localstatedir=/var \
82 --enable-client \
83 --enable-fake \
84 --enable-datafiles \
85 --enable-loopback=builtin \
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 dhclient dhclient builtin) \
91 $(use_enable resolvconf resolvconf builtin) \
92 $(use_enable dnsproxy dnsproxy builtin) \
93 $(use_enable google google builtin) \
94 $(use_enable moblin moblin builtin) \
95 $(use_enable 3G hso builtin) \
96 $(use_enable 3G mbm builtin) \
97 $(use_enable policykit polkit builtin) \
98 $(use_enable debug) \
99 $(use_enable doc gtk-doc) \
100 $(use_enable threads) \
101 $(use_enable tools) \
102 $(use_enable udev) \
103 --disable-udhcp \
104 --disable-iwmx \
105 --disable-iospm
106 }
107
108 src_install() {
109 emake DESTDIR="${D}" install || die "emake install failed"
110 dobin client/cm || die "client installation failed"
111
112 keepdir /var/lib/${PN} || die
113 newinitd "${FILESDIR}"/${PN}.initd ${PN} || die
114 newconfd "${FILESDIR}"/${PN}.confd ${PN} || die
115 }