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. bbFTP main features are: * Encoded username and password at connection * SSH and Certificate authentication modules * Multi-stream transfer * Big windows as defined in RFC1323 * On-the-fly data compression * Automatic retry * Customizable time-outs * Transfer simulation * AFS authentication integration * RFIO interface bbFTP is open-source software, released under the GNU General Public License. It was written by Gilles Farrache at IN2P3 Computing Center in Lyon, France. WWW: http://doc.in2p3.fr/bbftp/index.html PR: ports/98610 Submitted by: Petr Holub <hopet@ics.muni.cz>
42 lines
1.1 KiB
Makefile
42 lines
1.1 KiB
Makefile
# New ports collection makefile for: bbftp
|
|
# Date created: 6 June 2006
|
|
# Whom: Petr Holub <hopet@ics.muni.cz>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= bbftp
|
|
PORTVERSION= 3.0.2
|
|
CATEGORIES= ftp
|
|
MASTER_SITES= http://doc.in2p3.fr/bbftp/dist/ \
|
|
http://ftp.riken.go.jp/pub/net/bbftp/
|
|
|
|
MAINTAINER= hopet@ics.muni.cz
|
|
COMMENT= Multiple stream file transfer protocol optimized for large files
|
|
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
EXTRA_PATCHES= ${FILESDIR}/bbftp.patch
|
|
|
|
USE_RC_SUBR= bbftpd
|
|
|
|
MAN1= bbftp.1 bbftpd.1
|
|
|
|
do-configure:
|
|
${CP} -f ${TEMPLATES}/config.guess ${WRKSRC}
|
|
${CP} -f ${TEMPLATES}/config.sub ${WRKSRC}
|
|
cd ${WRKSRC}/bbftpc && ./configure --prefix=${PREFIX} ${CONFIGURE_ARGS}
|
|
cd ${WRKSRC}/bbftpd && ./configure --prefix=${PREFIX} ${CONFIGURE_ARGS}
|
|
|
|
do-build:
|
|
cd ${WRKSRC}/bbftpc && ${GMAKE}
|
|
cd ${WRKSRC}/bbftpd && ${GMAKE}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bbftpc/bbftp ${PREFIX}/bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bbftpd/bbftpd ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/doc/bbftp.1 ${PREFIX}/man/man1
|
|
${INSTALL_MAN} ${WRKSRC}/doc/bbftpd.1 ${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|