blob: 29fc8f525b6cd52c84cf6e83a9e847b17ef25885 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-ftp/ncftp/ncftp-3.1.4.ebuild,v 1.1 2002/07/07 15:01:13 stroke Exp $
# Author Jerry A! <jerry@thehutt.org>
S=${WORKDIR}/${P}
DESCRIPTION="An extremely configurable ftp client"
SRC_URI="ftp://ftp.ncftp.com/ncftp/${P}-src.tar.bz2"
HOMEPAGE="http://www.ncftp.com/"
SLOT="0"
DEPEND="virtual/glibc
>=sys-libs/ncurses-5.2"
LICENSE="Clarified-Artistic"
src_compile() {
./configure --prefix=/usr --host=${CHOST} \
--mandir=/usr/share/man || die
emake || die
}
src_install() {
dodir /usr/share
make prefix=${D}/usr mandir=${D}/usr/share/man install || die
dodoc CHANGELOG FIREWALL-PROXY-README LICENSE.txt
dodoc READLINE-README README WHATSNEW-3.0
}
|