# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-ftp/tnftp/tnftp-20050625-r1.ebuild,v 1.2 2005/11/28 18:11:43 grobian 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" IUSE="ipv6" DEPEND=">=sys-libs/ncurses-5.1" src_unpack() { unpack ${A} epatch "${FILESDIR}/${P}"-macos.patch cd "${S}" export WANT_AUTOCONF="2.5" eautoreconf } src_compile() { econf \ --enable-editcomplete \ $(use_enable ipv6) \ || 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" for x in ftp lukemftp do if [ ! -e "${ROOT}"/usr/bin/${x} ] then dosym tnftp /usr/bin/${x} || die "dosym failed" fi done dodoc COPYING ChangeLog README THANKS || die "dodoc failed" }