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.6.ebuild wicd-1.5.3-r2.ebuild wicd-1.5.5.ebuild
Date: Thu, 04 Dec 2008 14:10:34
Message-Id: E1L8EuN-0003BO-RQ@stork.gentoo.org
1 darkside 08/12/04 14:10:23
2
3 Modified: ChangeLog
4 Added: wicd-1.5.6.ebuild
5 Removed: wicd-1.5.3-r2.ebuild wicd-1.5.5.ebuild
6 Log:
7 version bump
8 (Portage version: 2.2_rc16/cvs/Linux 2.6.28-rc6-wl-dirty x86_64)
9
10 Revision Changes Path
11 1.21 net-misc/wicd/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/wicd/ChangeLog?rev=1.21&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/wicd/ChangeLog?rev=1.21&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/wicd/ChangeLog?r1=1.20&r2=1.21
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-misc/wicd/ChangeLog,v
20 retrieving revision 1.20
21 retrieving revision 1.21
22 diff -u -r1.20 -r1.21
23 --- ChangeLog 1 Dec 2008 13:35:56 -0000 1.20
24 +++ ChangeLog 4 Dec 2008 14:10:23 -0000 1.21
25 @@ -1,6 +1,15 @@
26 # ChangeLog for net-misc/wicd
27 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-misc/wicd/ChangeLog,v 1.20 2008/12/01 13:35:56 darkside Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-misc/wicd/ChangeLog,v 1.21 2008/12/04 14:10:23 darkside Exp $
30 +
31 +*wicd-1.5.6 (04 Dec 2008)
32 +
33 + 04 Dec 2008; Jeremy Olexa <darkside@g.o>
34 + -files/wicd-1.5.3-wicd-client-manpage.patch, -wicd-1.5.3-r2.ebuild,
35 + -wicd-1.5.5.ebuild, +wicd-1.5.6.ebuild:
36 + Version bump, from CHANGES file:
37 + 1.5.6
38 + * Wicd will now start if the logging directory is present, but the log isn't
39
40 *wicd-1.5.5 (01 Dec 2008)
41
42
43
44
45 1.1 net-misc/wicd/wicd-1.5.6.ebuild
46
47 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/wicd/wicd-1.5.6.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/wicd/wicd-1.5.6.ebuild?rev=1.1&content-type=text/plain
49
50 Index: wicd-1.5.6.ebuild
51 ===================================================================
52 # Copyright 1999-2008 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/net-misc/wicd/wicd-1.5.6.ebuild,v 1.1 2008/12/04 14:10:23 darkside Exp $
55
56 inherit distutils eutils
57
58 MY_P=${P/-/_}
59
60 DESCRIPTION="A lightweight wired and wireless network manager for Linux"
61 HOMEPAGE="http://wicd.sourceforge.net/"
62 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
63
64 LICENSE="GPL-2"
65 SLOT="0"
66 KEYWORDS="~amd64 ~ppc ~x86"
67 IUSE=""
68
69 DEPEND=""
70 RDEPEND="dev-python/dbus-python
71 dev-python/pygtk
72 || (
73 net-misc/dhcpcd
74 net-misc/dhcp
75 net-misc/pump
76 )
77 net-wireless/wireless-tools
78 net-wireless/wpa_supplicant
79 || (
80 sys-apps/net-tools
81 sys-apps/ethtool
82 )
83 || ( x11-misc/ktsuss x11-libs/gksu kde-base/kdesu )"
84
85 src_compile() {
86 ${python} ./setup.py configure --no-install-init --no-install-docs --resume=/usr/share/wicd/scripts/ --suspend=/usr/share/wicd/scripts/ --verbose
87 distutils_src_compile
88 }
89
90 src_install() {
91 DOCS="CHANGES"
92 distutils_src_install
93 newinitd "${FILESDIR}/wicd-init.d" wicd || die "newinitd failed"
94 }
95
96 pkg_postinst() {
97 distutils_pkg_postinst
98
99 elog "You may need to restart the dbus service after upgrading wicd."
100 echo
101 elog "To start wicd at boot, add /etc/init.d/wicd to a runlevel and:"
102 elog "- Remove all net.* initscripts (except for net.lo) from all runlevels"
103 elog "- Add these scripts to the RC_PLUG_SERVICES line in /etc/conf.d/rc"
104 elog "(For example, RC_PLUG_SERVICES=\"!net.eth0 !net.wlan0\")"
105 }