diff options
Diffstat (limited to 'net-ftp/bbftp-client/bbftp-client-3.2.0.ebuild')
-rw-r--r-- | net-ftp/bbftp-client/bbftp-client-3.2.0.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/net-ftp/bbftp-client/bbftp-client-3.2.0.ebuild b/net-ftp/bbftp-client/bbftp-client-3.2.0.ebuild new file mode 100644 index 000000000..0f59a9336 --- /dev/null +++ b/net-ftp/bbftp-client/bbftp-client-3.2.0.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +DESCRIPTION="bbFTP is a file transfer software. It implements its own transfer protocol, which is optimized for large files (larger than 2GB) and secure as it does not read the password in a file and encrypts the connection information." + +HOMEPAGE="http://doc.in2p3.fr/bbftp/" +SRC_URI="http://doc.in2p3.fr/bbftp/dist/${P}.tar.gz" +S="${WORKDIR}/${P}/bbftpc" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="ssl" + +DEPEND="ssl? ( dev-libs/openssl )" +RDEPEND="${DEPEND}" + +src_compile() { + sed -i -e '/@INSTALL@\|mkdir/s:${\(prefix\|mandir\|bindir\)}:${DESTDIR}${\1}:' -e '/\/etc/d' Makefile.in + econf $(use_with ssl) --with-gzip \ + --without-rfio \ + --without-afs || die "configure failed" + emake +} + +src_install() { + emake DESTDIR="${D}" install || die "install failed" + dodoc ../README ../ChangeLog ../TODO + dodoc ../doc/* + doman ../doc/bbftp.1 +} + |