a16bc14e18
* 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.
41 lines
1.2 KiB
Makefile
41 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.18 2008/10/09 04:14:28 lukem Exp $
|
|
#
|
|
|
|
DISTNAME= tnftpd-20081009
|
|
CATEGORIES= net
|
|
MASTER_SITES= ftp://ftp.NetBSD.org/pub/NetBSD/misc/tnftp/
|
|
|
|
MAINTAINER= lukem@NetBSD.org
|
|
COMMENT= The NetBSD FTP Daemon
|
|
|
|
CONFLICTS= wu-ftpd-[0-9]*
|
|
CONFLICTS+= kth-krb4-[0-9]*
|
|
CONFLICTS+= lukemftpd-[0-9]*
|
|
|
|
GNU_CONFIGURE= YES
|
|
MANCOMPRESSED_IF_MANZ= YES
|
|
USE_TOOLS+= yacc
|
|
|
|
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR:Q}
|
|
|
|
CONF_FILES+= ${EXAMPLEDIR}/ftpd.conf ${PKG_SYSCONFDIR}/ftpd.conf
|
|
CONF_FILES+= ${EXAMPLEDIR}/ftpusers ${PKG_SYSCONFDIR}/ftpusers
|
|
|
|
.include "options.mk"
|
|
|
|
OPSYSVARS+= MAKE_ENV
|
|
MAKE_ENV.SunOS+= CPPFLAGS=""
|
|
|
|
EXAMPLEDIR= ${PREFIX}/share/examples/tnftpd
|
|
INSTALLATION_DIRS= libexec ${PKGMANDIR}/man5 ${PKGMANDIR}/man8
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/tnftpd ${PREFIX}/libexec
|
|
${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}
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|