diff options
author | lukem <lukem@pkgsrc.org> | 2008-10-09 04:14:28 +0000 |
---|---|---|
committer | lukem <lukem@pkgsrc.org> | 2008-10-09 04:14:28 +0000 |
commit | a16bc14e182af801774de7f5c2dbfeb1aaefd75a (patch) | |
tree | 49c70ae80adae2e6b201c470fa7ad6d48f59506c /net/tnftpd/Makefile | |
parent | c3abff51c1b321549c1fa682f3a027d0dc2e005d (diff) | |
download | pkgsrc-a16bc14e182af801774de7f5c2dbfeb1aaefd75a.tar.gz |
Update to tnftpd 20081009. Notable changes since 20061217:
* Don't split large commands into multiple commands; just fail on them.
This prevents cross-site request forgery (CSRF)-like attacks,
when a web browser is used to access an ftp server.
* Enhance -C to support an optional @host ('-C user[@host]'):
checks whether user as connecting from host would be granted
access by ftpusers(5).
* Support IPv6 in the host directive of ftpusers(5).
* Implement -n to disable hostname lookups.
* Disable SOCKS support; I don't have the ability to test it,
and the autoconf checks were very out of date.
* Add configure --with-pam to enable PAM authentication support.
Defaults to checking for PAM.
* Add configure --with-skey to enable S/Key authentication support.
Incompatible with --with-pam, defaults to no.
* Fix pathnames in the installed manual pages to contain
the appropriate $(prefix) substitution.
* Use fcntl(3) locking instead of flock(3) or lockf(3).
* Various other portability improvements.
Diffstat (limited to 'net/tnftpd/Makefile')
-rw-r--r-- | net/tnftpd/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/net/tnftpd/Makefile b/net/tnftpd/Makefile index 3518ff9e288..ffd961a4fb2 100644 --- a/net/tnftpd/Makefile +++ b/net/tnftpd/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.17 2007/03/01 14:01:21 salo Exp $ +# $NetBSD: Makefile,v 1.18 2008/10/09 04:14:28 lukem Exp $ # -DISTNAME= tnftpd-20061217 +DISTNAME= tnftpd-20081009 CATEGORIES= net MASTER_SITES= ftp://ftp.NetBSD.org/pub/NetBSD/misc/tnftp/ @@ -31,9 +31,9 @@ INSTALLATION_DIRS= libexec ${PKGMANDIR}/man5 ${PKGMANDIR}/man8 do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/tnftpd ${PREFIX}/libexec - ${INSTALL_MAN} ${WRKSRC}/src/ftpd.conf.5 ${PREFIX}/${PKGMANDIR}/man5 - ${INSTALL_MAN} ${WRKSRC}/src/ftpusers.5 ${PREFIX}/${PKGMANDIR}/man5 - ${INSTALL_MAN} ${WRKSRC}/src/ftpd.8 ${PREFIX}/${PKGMANDIR}/man8 + ${INSTALL_MAN} ${WRKSRC}/src/ftpd.conf.man ${PREFIX}/${PKGMANDIR}/man5/ftpd.conf.5 + ${INSTALL_MAN} ${WRKSRC}/src/ftpusers.man ${PREFIX}/${PKGMANDIR}/man5/ftpusers.5 + ${INSTALL_MAN} ${WRKSRC}/src/tnftpd.man ${PREFIX}/${PKGMANDIR}/man8/tnftpd.8 ${INSTALL_DATA_DIR} ${EXAMPLEDIR} ${INSTALL_DATA} ${WRKSRC}/examples/ftpd.conf ${EXAMPLEDIR} ${INSTALL_DATA} ${WRKSRC}/examples/ftpusers ${EXAMPLEDIR} |