diff options
author | Jack Morgan <jmorgan@gentoo.org> | 2002-10-10 01:44:06 +0000 |
---|---|---|
committer | Jack Morgan <jmorgan@gentoo.org> | 2002-10-10 01:44:06 +0000 |
commit | e64cc176768654a438dff96ea7d1d91aeed458cf (patch) | |
tree | 55ee3857dfd6b53b0b230f41277e368a6f1798e6 /net-ftp | |
parent | Unmasked apache 1.3.27 (diff) | |
download | gentoo-2-e64cc176768654a438dff96ea7d1d91aeed458cf.tar.gz gentoo-2-e64cc176768654a438dff96ea7d1d91aeed458cf.tar.bz2 gentoo-2-e64cc176768654a438dff96ea7d1d91aeed458cf.zip |
updated version to fix sparc64 issue
Diffstat (limited to 'net-ftp')
-rw-r--r-- | net-ftp/yafc/ChangeLog | 6 | ||||
-rw-r--r-- | net-ftp/yafc/files/digest-yafc-0.7.10 | 1 | ||||
-rw-r--r-- | net-ftp/yafc/yafc-0.7.10.ebuild | 30 |
3 files changed, 36 insertions, 1 deletions
diff --git a/net-ftp/yafc/ChangeLog b/net-ftp/yafc/ChangeLog index 52003cedc5df..41986b9c3449 100644 --- a/net-ftp/yafc/ChangeLog +++ b/net-ftp/yafc/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-ftp/yafc # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-ftp/yafc/ChangeLog,v 1.2 2002/06/06 19:20:54 woodchip Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/yafc/ChangeLog,v 1.3 2002/10/10 01:44:06 jmorgan Exp $ + +*yafc-0.7.10 (10 Oct 2002) + 10 Oct 2002; Jack Morgan <jmorgan@gentoo.org> : + Updated version number to fix an issue with sparc64 *yafc-0.7.9 (6 Jun 2002) 6 Jun 2002; Donny Davies <woodchip@gentoo.org> : diff --git a/net-ftp/yafc/files/digest-yafc-0.7.10 b/net-ftp/yafc/files/digest-yafc-0.7.10 new file mode 100644 index 000000000000..c033cf910a5c --- /dev/null +++ b/net-ftp/yafc/files/digest-yafc-0.7.10 @@ -0,0 +1 @@ +65b78deb212cc6858ab91fb9363e4fb2 yafc-0.7.10.ebuild diff --git a/net-ftp/yafc/yafc-0.7.10.ebuild b/net-ftp/yafc/yafc-0.7.10.ebuild new file mode 100644 index 000000000000..6fc284d7e940 --- /dev/null +++ b/net-ftp/yafc/yafc-0.7.10.ebuild @@ -0,0 +1,30 @@ +# 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.10.ebuild,v 1.1 2002/10/10 01:44:06 jmorgan Exp $ + +IUSE="readline" + +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="readline? ( >=sys-libs/readline-4.1-r4 )" +RDEPEND=">=net-misc/openssh-3.0" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86 sparc sparc64" + +src_compile() { + use readline || myconf="--without-readline" + + econf ${myconf} || die "./configure failed" + emake || die +} + +src_install () { + make DESTDIR=${D} install || die + dodoc ABOUT-NLS BUGS COPYING COPYRIGHT INSTALL NEWS \ + README THANKS TODO *.sample +} |