blob: a8402d4955639d74ae68dbef0e3a63726263d507 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# 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.3 2004/06/24 22:37:14 agriffis Exp $
inherit flag-o-matic gcc
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"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 amd64 ~ppc"
IUSE=""
DEPEND="sys-libs/ncurses"
src_compile() {
filter-lfs-flags
emake CC="$(gcc-getCC)" || die "emake failed"
}
src_install() {
dobin vcp || die
doman vcp.1
insinto /etc
newins vcp.conf.sample vcp.conf
}
|