You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
799 B
39 lines
799 B
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
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 ~arm ~arm64 ppc ~sparc x86"
|
|
|
|
DEPEND="sys-libs/ncurses:0="
|
|
RDEPEND="${DEPEND}"
|
|
BDEPEND="virtual/pkgconfig"
|
|
|
|
DOCS=( Changelog README INSTALL )
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${P}-tinfo.patch
|
|
"${FILESDIR}"/${P}-fno-common.patch
|
|
)
|
|
|
|
src_compile() {
|
|
filter-lfs-flags
|
|
emake CC="$(tc-getCC)" PKG_CONFIG="$(tc-getPKG_CONFIG)"
|
|
}
|
|
|
|
src_install() {
|
|
dobin "${PN}"
|
|
doman "${PN}.1"
|
|
insinto /etc
|
|
newins "${PN}.conf.sample" "${PN}.conf"
|
|
einstalldocs
|
|
}
|