summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Walker <ka0ttic@gentoo.org>2004-12-05 00:58:03 +0000
committerAaron Walker <ka0ttic@gentoo.org>2004-12-05 00:58:03 +0000
commit1eacfd66961c367db4f6ef90f22056a19b82cde8 (patch)
tree577490fb0d726d0279e08ed90c68baf5c0317571 /app-misc/vcp/vcp-1.7.2.ebuild
parentI can't find any of the other media-tv guys, and it's been fairly bug free, s... (diff)
downloadhistorical-1eacfd66961c367db4f6ef90f22056a19b82cde8.tar.gz
historical-1eacfd66961c367db4f6ef90f22056a19b82cde8.tar.bz2
historical-1eacfd66961c367db4f6ef90f22056a19b82cde8.zip
Version bump for bug 73360. Updated HOMEPAGE and SRC_URI for both ebuilds. Updated to use toolchain-funcs.eclass rather than gcc.eclass. Also, updated LICENSE to BSD for version 2.2.
Diffstat (limited to 'app-misc/vcp/vcp-1.7.2.ebuild')
-rw-r--r--app-misc/vcp/vcp-1.7.2.ebuild16
1 files changed, 8 insertions, 8 deletions
diff --git a/app-misc/vcp/vcp-1.7.2.ebuild b/app-misc/vcp/vcp-1.7.2.ebuild
index c5629398e023..f12c77b68518 100644
--- a/app-misc/vcp/vcp-1.7.2.ebuild
+++ b/app-misc/vcp/vcp-1.7.2.ebuild
@@ -1,12 +1,12 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/vcp/vcp-1.7.2.ebuild,v 1.4 2004/10/05 13:34:52 pvdabeel Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/vcp/vcp-1.7.2.ebuild,v 1.5 2004/12/05 00:58:03 ka0ttic Exp $
-inherit flag-o-matic gcc
+inherit flag-o-matic toolchain-funcs
DESCRIPTION="copy files/directories in a curses interface"
-HOMEPAGE="http://members.optusnet.com.au/~dbbryan/vcp/"
-SRC_URI="http://members.optusnet.com.au/~dbbryan/vcp/${P}.tar.gz"
+HOMEPAGE="http://members.iinet.net.au/~lynx/vcp/"
+SRC_URI="http://members.iinet.net.au/~lynx/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
@@ -17,12 +17,12 @@ DEPEND="sys-libs/ncurses"
src_compile() {
filter-lfs-flags
- emake CC="$(gcc-getCC)" || die "emake failed"
+ emake CC="$(tc-getCC)" || die "emake failed"
}
src_install() {
- dobin vcp || die
- doman vcp.1
+ dobin vcp || die "dobin failed"
+ doman vcp.1 || die "doman failed"
insinto /etc
- newins vcp.conf.sample vcp.conf
+ newins vcp.conf.sample vcp.conf || die "newins failed"
}