diff options
author | Lars Weiler <pylon@gentoo.org> | 2003-03-22 02:56:23 +0000 |
---|---|---|
committer | Lars Weiler <pylon@gentoo.org> | 2003-03-22 02:56:23 +0000 |
commit | 5f26a39dd8347ea9c079109b84e08021deacd2b2 (patch) | |
tree | 666fd3aaac4eab182945d3c78fdc791d698d194f /app-admin/quickswitch | |
parent | new ebuild (diff) | |
download | gentoo-2-5f26a39dd8347ea9c079109b84e08021deacd2b2.tar.gz gentoo-2-5f26a39dd8347ea9c079109b84e08021deacd2b2.tar.bz2 gentoo-2-5f26a39dd8347ea9c079109b84e08021deacd2b2.zip |
version bump
Diffstat (limited to 'app-admin/quickswitch')
-rw-r--r-- | app-admin/quickswitch/ChangeLog | 9 | ||||
-rw-r--r-- | app-admin/quickswitch/files/digest-quickswitch-1.02 | 1 | ||||
-rw-r--r-- | app-admin/quickswitch/quickswitch-1.02.ebuild | 35 |
3 files changed, 44 insertions, 1 deletions
diff --git a/app-admin/quickswitch/ChangeLog b/app-admin/quickswitch/ChangeLog index d3adaed7295e..d7ab36c537a0 100644 --- a/app-admin/quickswitch/ChangeLog +++ b/app-admin/quickswitch/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-admin/quickswitch # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/quickswitch/ChangeLog,v 1.6 2003/02/12 02:26:31 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/quickswitch/ChangeLog,v 1.7 2003/03/22 02:56:23 pylon Exp $ + +*quickswitch-1.02 (22 March 2003) + + 22 Mär 2003; Lars Weiler <pylon@gentoo.org> quickswitch-1.02.ebuild: + version bump. + will copy switcher only if USE=curses and compile therefore CursesWidgets + closes bug #14823 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords diff --git a/app-admin/quickswitch/files/digest-quickswitch-1.02 b/app-admin/quickswitch/files/digest-quickswitch-1.02 new file mode 100644 index 000000000000..e8fedce25fa2 --- /dev/null +++ b/app-admin/quickswitch/files/digest-quickswitch-1.02 @@ -0,0 +1 @@ +MD5 7586598d21169ca9ed7f705b613612a2 quickwitch-1.02.tar.gz 20167 diff --git a/app-admin/quickswitch/quickswitch-1.02.ebuild b/app-admin/quickswitch/quickswitch-1.02.ebuild new file mode 100644 index 000000000000..5fd9aac333cb --- /dev/null +++ b/app-admin/quickswitch/quickswitch-1.02.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/quickswitch/quickswitch-1.02.ebuild,v 1.1 2003/03/22 02:56:23 pylon Exp $ + +IUSE="" + +MY_PN="quickwitch" +MY_P="${MY_PN}-${PV/_/}" +S=${WORKDIR}/${MY_PN} +DESCRIPTION="Utility to switch network profiles on the fly" +SRC_URI="mirror://sourceforge/quickswitch/${MY_P}.tar.gz" +HOMEPAGE="http://edgesolutions.ca/" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86 ppc sparc " + +DEPEND=">=dev-lang/perl-5.6.0" +RDEPEND="ncurses? ( dev-perl/CursesWidgets )" + +src_install() { + dobin switchto + dosed "s:/etc/switchto.conf:/etc/quickswitch/switchto.conf:" /usr/bin/switchto + dosed "s:/etc/switchto.last:/etc/quickswitch/switchto.last:" /usr/bin/switchto + if [ "`use ncurses`" ]; then + dobin switcher + dosed "s:/etc/switchto.conf:/etc/quickswitch/switchto.conf:" /usr/bin/switcher + fi + + dodir /etc/quickswitch + insinto /etc/quickswitch + newins switchto.conf switchto.conf.sample + + dodoc README LICENSE +} |