# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-ftp/tnftp/tnftp-20070806.ebuild,v 1.1 2007/08/06 17:18:41 swegener Exp $ 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="~alpha ~amd64 ~ppc ~ppc-macos ~sparc ~x86 ~x86-fbsd" IUSE="ipv6 socks5" DEPEND=">=sys-libs/ncurses-5.1 dev-libs/libedit socks5? ( net-proxy/dante )" RDEPEND="${DEPEND}" src_unpack() { unpack ${A} cd "${S}" epatch "${FILESDIR}"/use-system-libedit-configure.patch } src_compile() { eautoconf 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 COPYING ChangeLog README THANKS || die "dodoc failed" }