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-misc/vcp | |
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-misc/vcp')
-rw-r--r-- | app-misc/vcp/Manifest | 1 | ||||
-rw-r--r-- | app-misc/vcp/metadata.xml | 5 | ||||
-rw-r--r-- | app-misc/vcp/vcp-2.2-r1.ebuild | 36 |
3 files changed, 42 insertions, 0 deletions
diff --git a/app-misc/vcp/Manifest b/app-misc/vcp/Manifest new file mode 100644 index 000000000000..217dcc282e38 --- /dev/null +++ b/app-misc/vcp/Manifest @@ -0,0 +1 @@ +DIST vcp-2.2.tar.gz 20075 SHA256 2827f09e46e975bdd079f7ad826d29dd6eafa567dcb9059b7fb2a9a49f931b01 SHA512 3f9f60bce875f16a825b935fd241b11cc75d45b85b66133b27d16b86644c4bbfe69fa5f22571703e0ed6d235498f920a8796f6d74259db51a1abbd626c6f5137 WHIRLPOOL f0bea40888a271baf154a35928c3369c8bfe01ad0406386d8bc305138f2268e4460848d801ff55a5ab9fc8f9b55156ea7e8445a78365a8ceac3673dace0354f3 diff --git a/app-misc/vcp/metadata.xml b/app-misc/vcp/metadata.xml new file mode 100644 index 000000000000..40149c995561 --- /dev/null +++ b/app-misc/vcp/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>shell-tools</herd> +</pkgmetadata> diff --git a/app-misc/vcp/vcp-2.2-r1.ebuild b/app-misc/vcp/vcp-2.2-r1.ebuild new file mode 100644 index 000000000000..cd3b7e4e2ceb --- /dev/null +++ b/app-misc/vcp/vcp-2.2-r1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="2" + +inherit flag-o-matic toolchain-funcs + +DESCRIPTION="copy files/directories in a curses interface" +HOMEPAGE="http://members.iinet.net.au/~lynx/vcp/" +SRC_URI="http://members.iinet.net.au/~lynx/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="amd64 ppc ~sparc x86" +IUSE="" + +DEPEND="sys-libs/ncurses" +RDEPEND="${DEPEND}" + +src_prepare() { + sed -i Makefile -e '/-o vcp/s|$(CFLAGS)|& $(LDFLAGS)|' || die "sed Makefile" +} + +src_compile() { + filter-lfs-flags + emake CC="$(tc-getCC)" || die "emake failed" +} + +src_install() { + dobin vcp || die "dobin failed" + doman vcp.1 || die "doman failed" + insinto /etc + newins vcp.conf.sample vcp.conf || die "newins failed" + dodoc Changelog README INSTALL || die "dodoc failed" +} |