blob: 9aacde8317f6090c53a02140dbf035d84750f650 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Copyright 1999-2003 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.4 2003/02/13 14:06:52 vapier 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 ~ppc"
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
}
|