Gentoo Archives: gentoo-commits

From: "Jeremy Olexa (darkside)" <darkside@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/wicd: ChangeLog wicd-1.5.3.ebuild
Date: Mon, 29 Sep 2008 16:25:32
Message-Id: E1KkLYv-00014E-II@stork.gentoo.org
1 darkside 08/09/29 16:25:29
2
3 Modified: ChangeLog
4 Added: wicd-1.5.3.ebuild
5 Log:
6 Version bump, net-misc/wicd-1.5.3
7 (Portage version: 2.2_rc11/cvs/Linux 2.6.26-gentoo x86_64)
8
9 Revision Changes Path
10 1.10 net-misc/wicd/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/wicd/ChangeLog?rev=1.10&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/wicd/ChangeLog?rev=1.10&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/wicd/ChangeLog?r1=1.9&r2=1.10
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-misc/wicd/ChangeLog,v
19 retrieving revision 1.9
20 retrieving revision 1.10
21 diff -u -r1.9 -r1.10
22 --- ChangeLog 22 Sep 2008 15:50:10 -0000 1.9
23 +++ ChangeLog 29 Sep 2008 16:25:29 -0000 1.10
24 @@ -1,6 +1,11 @@
25 # ChangeLog for net-misc/wicd
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-misc/wicd/ChangeLog,v 1.9 2008/09/22 15:50:10 darkside Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-misc/wicd/ChangeLog,v 1.10 2008/09/29 16:25:29 darkside Exp $
29 +
30 +*wicd-1.5.3 (29 Sep 2008)
31 +
32 + 29 Sep 2008; Jeremy Olexa <darkside@g.o> +wicd-1.5.3.ebuild:
33 + Version bump, net-misc/wicd-1.5.3
34
35 22 Sep 2008; Jeremy Olexa <darkside@g.o> files/wicd-init.d:
36 Fix bashism in init file, bug #238278. Thanks Davide Pesavento for fix.
37
38
39
40 1.1 net-misc/wicd/wicd-1.5.3.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/wicd/wicd-1.5.3.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/wicd/wicd-1.5.3.ebuild?rev=1.1&content-type=text/plain
44
45 Index: wicd-1.5.3.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/net-misc/wicd/wicd-1.5.3.ebuild,v 1.1 2008/09/29 16:25:29 darkside Exp $
50
51 inherit distutils eutils
52
53 DESCRIPTION="A lightweight wired and wireless network manager for Linux"
54 HOMEPAGE="http://wicd.sourceforge.net/"
55 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
56
57 LICENSE="GPL-2"
58 SLOT="0"
59 KEYWORDS="~amd64 ~x86"
60 IUSE=""
61
62 RDEPEND="dev-python/dbus-python
63 dev-python/pygtk
64 || (
65 net-misc/dhcp
66 net-misc/dhcpcd
67 net-misc/pump
68 )
69 net-wireless/wireless-tools
70 net-wireless/wpa_supplicant
71 || (
72 sys-apps/ethtool
73 sys-apps/net-tools
74 )"
75
76 src_compile() {
77 ${python} ./setup.py configure --no-install-init --no-install-docs --resume=/usr/share/wicd/scripts/ --suspend=/usr/share/wicd/scripts/ --verbose
78 distutils_src_compile
79 }
80
81 src_install() {
82 DOCS="CHANGES"
83 distutils_src_install
84 newinitd "${FILESDIR}/wicd-init.d" wicd || die "newinitd failed"
85 }
86
87 pkg_postinst() {
88 distutils_pkg_postinst
89
90 elog "You may need to restart the dbus service after upgrading wicd."
91 echo
92 elog "To start wicd at boot, add /etc/init.d/wicd to a runlevel and:"
93 elog "- Remove all net.* initscripts (except for net.lo) from all runlevels"
94 elog "- Add these scripts to the RC_PLUG_SERVICES line in /etc/conf.d/rc"
95 elog "(For example, RC_PLUG_SERVICES=\"!net.eth0 !net.wlan0\")"
96 }