diff options
author | Donny Davies <woodchip@gentoo.org> | 2002-06-06 19:20:55 +0000 |
---|---|---|
committer | Donny Davies <woodchip@gentoo.org> | 2002-06-06 19:20:55 +0000 |
commit | 8c41457718d1b7746565842722bacb42ff7c8dcb (patch) | |
tree | e5486f8a5249b8362c6ce65b8c2771ad76968911 /net-ftp/yafc | |
parent | and + close #2079 (diff) | |
download | gentoo-2-8c41457718d1b7746565842722bacb42ff7c8dcb.tar.gz gentoo-2-8c41457718d1b7746565842722bacb42ff7c8dcb.tar.bz2 gentoo-2-8c41457718d1b7746565842722bacb42ff7c8dcb.zip |
close #859
Diffstat (limited to 'net-ftp/yafc')
-rw-r--r-- | net-ftp/yafc/ChangeLog | 6 | ||||
-rw-r--r-- | net-ftp/yafc/files/digest-yafc-0.7.9 | 1 | ||||
-rw-r--r-- | net-ftp/yafc/yafc-0.7.9.ebuild | 29 |
3 files changed, 35 insertions, 1 deletions
diff --git a/net-ftp/yafc/ChangeLog b/net-ftp/yafc/ChangeLog index 87fd45ffbffd..52003cedc5df 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.1 2002/05/27 01:24:18 rphillips Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/yafc/ChangeLog,v 1.2 2002/06/06 19:20:54 woodchip Exp $ + +*yafc-0.7.9 (6 Jun 2002) + 6 Jun 2002; Donny Davies <woodchip@gentoo.org> : + Add docs + ssh RDEPEND + $P; close #859. *yafc-0.7.2-r1 (26 May 2002) diff --git a/net-ftp/yafc/files/digest-yafc-0.7.9 b/net-ftp/yafc/files/digest-yafc-0.7.9 new file mode 100644 index 000000000000..eeab1b00ef97 --- /dev/null +++ b/net-ftp/yafc/files/digest-yafc-0.7.9 @@ -0,0 +1 @@ +MD5 5e860d523b3f64a3bbaac4b33789be83 yafc-0.7.9.tar.bz2 402749 diff --git a/net-ftp/yafc/yafc-0.7.9.ebuild b/net-ftp/yafc/yafc-0.7.9.ebuild new file mode 100644 index 000000000000..e362fc0b29fb --- /dev/null +++ b/net-ftp/yafc/yafc-0.7.9.ebuild @@ -0,0 +1,29 @@ +# 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 $ + +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" +SLOT="0" + +src_compile() { + use readline || myconf="--without-readline" + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + ${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 +} |