50157aef27
Changes: o fixed two file descriptor leaks in ftpcopy. (Spotted by Matthias Andree) o added --bps option to ftpcopy. o ftpcopy and ftpls now work with the runsocks program from the socks5 reference implementation. See the FAQ. o ftpcopy and ftpls now have a --timeout option to set the timeout used during the connection. o ftpcopy now has a --tolower option, causing it to change all local file and directory names to lowercase. Note: you'll possibly want to read the manual page before you use this option. o ftpls can make recursive directory listings. Use the --recursive option for this. o don't allow the FTP server do redirect PASV to other hosts or ports below 1024 (with the exception of port 20). o temporary files are created in the target directory.
24 lines
523 B
Makefile
24 lines
523 B
Makefile
# $OpenBSD: Makefile,v 1.3 2001/07/04 16:30:32 pvalchev Exp $
|
|
|
|
COMMENT= "FTP listing and transfer tools"
|
|
|
|
DISTNAME= ftpcopy-0.3.9
|
|
HOMEPAGE= http://www.ohse.de/uwe/ftpcopy.html
|
|
|
|
CATEGORIES= net
|
|
NEED_VERSION= 1.419
|
|
MAINTAINER= Brian J. Kifiak <bk@rt.fm>
|
|
|
|
MASTER_SITES= http://www.ohse.de/uwe/ftpcopy/ \
|
|
ftp://rt.fm/pub/ftpcopy/
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MAKE_FLAGS= CC="${CC}"
|
|
FAKE_FLAGS= prefix="${DESTDIR}/${PREFIX}"
|
|
|
|
.include <bsd.port.mk>
|