blob: 76c265cc44fdad5bba0c6ffd6859e68aa627e296 (
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
29
|
# 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-2.2.ebuild,v 1.1 2004/12/05 00:58:03 ka0ttic Exp $
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="~x86 ~amd64 ~ppc"
IUSE=""
DEPEND="sys-libs/ncurses"
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"
}
|