diff options
author | Jeremy Olexa <darkside@gentoo.org> | 2009-05-14 14:55:35 +0000 |
---|---|---|
committer | Jeremy Olexa <darkside@gentoo.org> | 2009-05-14 14:55:35 +0000 |
commit | 054872c835124e18ce1a7182c81c1098395c5f89 (patch) | |
tree | 96b00484fd008e376050164a5bdde07604b8ed2c /net-misc | |
parent | Run tests and add ~amd64 (#269846) (diff) | |
download | gentoo-2-054872c835124e18ce1a7182c81c1098395c5f89.tar.gz gentoo-2-054872c835124e18ce1a7182c81c1098395c5f89.tar.bz2 gentoo-2-054872c835124e18ce1a7182c81c1098395c5f89.zip |
Version bump, bug fixes and minor GUI improvements
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/wicd/ChangeLog | 8 | ||||
-rw-r--r-- | net-misc/wicd/metadata.xml | 1 | ||||
-rw-r--r-- | net-misc/wicd/wicd-1.6.0_beta1.ebuild (renamed from net-misc/wicd/wicd-1.6.0_alpha3.ebuild) | 13 |
3 files changed, 15 insertions, 7 deletions
diff --git a/net-misc/wicd/ChangeLog b/net-misc/wicd/ChangeLog index e7df2bb291e3..246f671dfaef 100644 --- a/net-misc/wicd/ChangeLog +++ b/net-misc/wicd/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-misc/wicd # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/wicd/ChangeLog,v 1.42 2009/05/13 19:02:34 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/wicd/ChangeLog,v 1.43 2009/05/14 14:55:35 darkside Exp $ + +*wicd-1.6.0_beta1 (14 May 2009) + + 14 May 2009; Jeremy Olexa <darkside@gentoo.org> metadata.xml, + -wicd-1.6.0_alpha3.ebuild, +wicd-1.6.0_beta1.ebuild: + Version bump, bug fixes and minor GUI improvements 13 May 2009; Christian Faulhammer <fauli@gentoo.org> wicd-1.6.0_alpha3.ebuild: diff --git a/net-misc/wicd/metadata.xml b/net-misc/wicd/metadata.xml index 57f57c1a3b1c..a369cf4c5fd5 100644 --- a/net-misc/wicd/metadata.xml +++ b/net-misc/wicd/metadata.xml @@ -8,5 +8,6 @@ <use> <flag name='ioctl'>Installs additional python libraries to use as a backend. This will improve speed but is experimental.</flag> + <flag name='ncurses'>Installs a ncurses UI</flag> </use> </pkgmetadata> diff --git a/net-misc/wicd/wicd-1.6.0_alpha3.ebuild b/net-misc/wicd/wicd-1.6.0_beta1.ebuild index 6748d22512d3..59bd160ee3e9 100644 --- a/net-misc/wicd/wicd-1.6.0_alpha3.ebuild +++ b/net-misc/wicd/wicd-1.6.0_beta1.ebuild @@ -1,12 +1,12 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/wicd/wicd-1.6.0_alpha3.ebuild,v 1.2 2009/05/13 19:02:34 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/wicd/wicd-1.6.0_beta1.ebuild,v 1.1 2009/05/14 14:55:35 darkside Exp $ EAPI="2" inherit distutils eutils -MY_P=${P/_alpha/a} +MY_P=${P/_beta/b} DESCRIPTION="A lightweight wired and wireless network manager for Linux" HOMEPAGE="http://wicd.sourceforge.net/" @@ -15,13 +15,12 @@ SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" -IUSE="libnotify ioctl" +IUSE="ioctl libnotify ncurses" DEPEND="" RDEPEND=" dev-python/dbus-python dev-python/pygtk - >=dev-python/urwid-0.9.8.4 || ( net-misc/dhcpcd net-misc/dhcp @@ -39,15 +38,17 @@ RDEPEND=" kde-base/kdesu ) >=sys-power/pm-utils-1.1.1 - libnotify? ( dev-python/notify-python ) ioctl? ( dev-python/python-iwscan dev-python/python-wpactrl ) + libnotify? ( dev-python/notify-python ) + ncurses? ( >=dev-python/urwid-0.9.8.4 ) " S="${WORKDIR}/${MY_P}" src_compile() { local myconf - use libnotify || myconf="--no-use-notifications" + use ncurses || myconf="${myconf} --no-install-ncurses" + use libnotify || myconf="${myconf} --no-use-notifications" ${python} ./setup.py configure --no-install-docs --resume=/usr/share/wicd/scripts/ --suspend=/usr/share/wicd/scripts/ --verbose ${myconf} distutils_src_compile } |