blob: c6e2056532a0ad8542694a07177e2a2cb115ccbc (
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
31
32
33
34
35
36
37
38
39
40
41
42
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-ftp/ftp/ftp-0.17-r3.ebuild,v 1.14 2004/06/24 22:45:04 agriffis Exp $
inherit eutils
MY_P=netkit-${P}
S=${WORKDIR}/${MY_P}
DESCRIPTION="Standard Linux FTP client with optional SSL support"
HOMEPAGE="http://www.hcs.harvard.edu/~dholland/computers/netkit.html"
SRC_URI="ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/${MY_P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="x86 ppc sparc mips alpha arm hppa amd64 ia64 ppc64"
IUSE="ssl"
RDEPEND=">=sys-libs/ncurses-5.2
ssl? ( dev-libs/openssl )"
DEPEND="${RDEPEND}
>=sys-apps/sed-4"
src_unpack() {
unpack ${A}
cd ${S}
use ssl \
&& epatch ${FILESDIR}/${MY_P}+ssl-0.2.diff \
&& epatch ${FILESDIR}/${MY_P}+ssl-0.2+auth.diff
}
src_compile() {
./configure --prefix=/usr || die
sed -i "s:-pipe -O2:${CFLAGS}:" MCONFIG
emake || die
}
src_install() {
dobin ftp/ftp || die
doman ftp/ftp.1 ftp/netrc.5
dodoc ChangeLog README BUGS
}
|