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