diff options
-rw-r--r-- | app-misc/vcp/vcp-2.2-r2.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/app-misc/vcp/vcp-2.2-r2.ebuild b/app-misc/vcp/vcp-2.2-r2.ebuild new file mode 100644 index 00000000000..506ddf1b278 --- /dev/null +++ b/app-misc/vcp/vcp-2.2-r2.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +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" + +DEPEND="sys-libs/ncurses:0=" +RDEPEND="${DEPEND}" + +DOCS=( Changelog README INSTALL ) + +src_prepare() { + default + sed -i Makefile -e '/-o vcp/s|$(CFLAGS)|& $(LDFLAGS)|' || die "sed Makefile" +} + +src_compile() { + filter-lfs-flags + emake CC="$(tc-getCC)" +} + +src_install() { + dobin "${PN}" + doman "${PN}.1" + insinto /etc + newins "${PN}.conf.sample" "${PN}.conf" + einstalldocs +} |