summaryrefslogtreecommitdiff
blob: 5c674f92da18e8b33f80f7f880c3a69da95d92b4 (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
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/vcp/vcp-1.6.2.ebuild,v 1.4 2004/01/20 06:44:53 avenj Exp $

inherit flag-o-matic
filter-flags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE

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"

DEPEND="sys-libs/ncurses"

src_compile() {
	emake || die "emake failed"
}

src_install() {
	dobin vcp
	doman vcp.1
	insinto /etc
	newins vcp.conf.sample vcp.conf
}