diff options
Diffstat (limited to 'net-ftp/yafc/yafc-0.7.9.ebuild')
-rw-r--r-- | net-ftp/yafc/yafc-0.7.9.ebuild | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/net-ftp/yafc/yafc-0.7.9.ebuild b/net-ftp/yafc/yafc-0.7.9.ebuild index e362fc0b29fb..e87915dce937 100644 --- a/net-ftp/yafc/yafc-0.7.9.ebuild +++ b/net-ftp/yafc/yafc-0.7.9.ebuild @@ -1,24 +1,23 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/yafc/yafc-0.7.9.ebuild,v 1.1 2002/06/06 19:20:55 woodchip Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/yafc/yafc-0.7.9.ebuild,v 1.2 2002/07/17 09:39:57 seemant Exp $ S=${WORKDIR}/${P} DESCRIPTION="Console ftp client with a lot of nifty features" SRC_URI="ftp://ftp.sourceforge.net/pub/sourceforge/${PN}/${P}.tar.bz2" HOMEPAGE="http://yafc.sourceforge.net/" -DEPEND="virtual/glibc readline? ( >=sys-libs/readline-4.1-r4 )" -RDEPEND="${DEPEND} >=net-misc/openssh-3.0" -LICENSE="GPL-2" + +DEPEND="readline? ( >=sys-libs/readline-4.1-r4 )" +RDEPEND=">=net-misc/openssh-3.0" + SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86" src_compile() { use readline || myconf="--without-readline" - ./configure \ - --host=${CHOST} \ - --prefix=/usr \ - --infodir=/usr/share/info \ - --mandir=/usr/share/man \ - ${myconf} || die "./configure failed" + + econf ${myconf} || die "./configure failed" emake || die } |