diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /app-admin/quickswitch | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'app-admin/quickswitch')
-rw-r--r-- | app-admin/quickswitch/Manifest | 1 | ||||
-rw-r--r-- | app-admin/quickswitch/metadata.xml | 12 | ||||
-rw-r--r-- | app-admin/quickswitch/quickswitch-1.05.ebuild | 39 |
3 files changed, 52 insertions, 0 deletions
diff --git a/app-admin/quickswitch/Manifest b/app-admin/quickswitch/Manifest new file mode 100644 index 000000000000..5c90fde01bb2 --- /dev/null +++ b/app-admin/quickswitch/Manifest @@ -0,0 +1 @@ +DIST quickswitch-1.05.tar.gz 20218 SHA256 88dc6cff47fc9555064bd368bed8aad6d817a885743775b99ef9fe2c90b7f29e SHA512 dfb6b952e06d03834b22ad1abe415499bc3f231dcfee0b551ceadc4c020604b2574b70fff03ffb7099913d77e49c545ee44d51f9f7651c4fba113b0503c3bd26 WHIRLPOOL b3284add168e12941e78a872f27a9cae19700df6448427aa023a8f41025e97ff7a59cd95ffe97d652dc274d212b336f5dbcb9047ce2f6a52798880ef5e78238f diff --git a/app-admin/quickswitch/metadata.xml b/app-admin/quickswitch/metadata.xml new file mode 100644 index 000000000000..3c6ff9fb93de --- /dev/null +++ b/app-admin/quickswitch/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer> + <email>maintainer-needed@gentoo.org</email> + </maintainer> + <longdescription>A utility for linux laptop users to use multiple network + profiles, and switch effortlessly.</longdescription> + <upstream> + <remote-id type="sourceforge">quickswitch</remote-id> + </upstream> +</pkgmetadata> diff --git a/app-admin/quickswitch/quickswitch-1.05.ebuild b/app-admin/quickswitch/quickswitch-1.05.ebuild new file mode 100644 index 000000000000..7dd0c7a22821 --- /dev/null +++ b/app-admin/quickswitch/quickswitch-1.05.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +IUSE="ncurses" + +DESCRIPTION="Utility to switch network profiles on the fly" +SRC_URI="mirror://sourceforge/quickswitch/${P}.tar.gz" +HOMEPAGE="http://quickswitch.sf.net" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86 ppc sparc s390 amd64" + +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 + + dosed "s:/etc/switchto.last:/etc/quickswitch/switchto.last:" \ + /etc/quickswitch/switchto.conf.sample + dosed "s:/usr/local/sbin/iwconfig:/sbin/iwconfig:" \ + /etc/quickswitch/switchto.conf.sample + dodoc README +} |