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.
gentoo-overlay/net-ftp/tnftp/tnftp-20090520.ebuild

49 lines
1.2 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-ftp/tnftp/tnftp-20090520.ebuild,v 1.2 2012/02/05 18:43:32 armin76 Exp $
WANT_AUTOCONF="2.5"
WANT_AUTOMAKE="none"
inherit eutils autotools
DESCRIPTION="NetBSD FTP client with several advanced features"
SRC_URI="ftp://ftp.netbsd.org/pub/NetBSD/misc/${PN}/${P}.tar.gz
ftp://ftp.netbsd.org/pub/NetBSD/misc/${PN}/old/${P}.tar.gz"
HOMEPAGE="ftp://ftp.netbsd.org/pub/NetBSD/misc/tnftp/"
SLOT="0"
LICENSE="as-is"
KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
IUSE="ipv6 socks5"
DEPEND=">=sys-libs/ncurses-5.1
socks5? ( net-proxy/dante )"
RDEPEND="${DEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-libedit.patch
epatch "${FILESDIR}"/${P}-glibc-2.8-ARG_MAX.patch
epatch "${FILESDIR}"/${P}-getline.patch
eautoconf
}
src_compile() {
econf \
--enable-editcomplete \
$(use_enable ipv6) \
$(use_with socks5 socks) \
|| die "econf failed"
emake || die "emake failed"
}
src_install() {
newbin src/ftp tnftp || die "newbin failed"
newman src/ftp.1 tnftp.1 || die "newman failed"
dodoc ChangeLog README THANKS || die "dodoc failed"
}