diff options
Diffstat (limited to 'net/vsftpd')
-rw-r--r-- | net/vsftpd/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/net/vsftpd/Makefile b/net/vsftpd/Makefile index 74b001e8e6a..7ea0a233b47 100644 --- a/net/vsftpd/Makefile +++ b/net/vsftpd/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2004/12/28 02:47:48 reed Exp $ +# $NetBSD: Makefile,v 1.13 2005/02/02 23:12:52 jlam Exp $ # DISTNAME= vsftpd-1.2.2 @@ -32,10 +32,14 @@ CONF_FILES= ${EGDIR}/vsftpd.conf.default ${PKG_SYSCONFDIR}/vsftpd.conf MAKE_DIRS= ${VARBASE}/chroot OWN_DIRS= ${VARBASE}/chroot/vsftpd +INSTALLATION_DIRS= libexec man/man5 man/man8 + # XXX: This package doesn't work on non-IPv6 enabled operating systems. # BUILD_DEFS+= USE_INET6 +.include "../../security/tcp_wrappers/buildlink3.mk" + post-patch: @cd ${WRKSRC} && \ for f in vsftpd.8 vsftpd.conf.5 vsftpd.conf; do \ @@ -52,6 +56,4 @@ do-install: ${INSTALL_DATA_DIR} ${DOCDIR} cd ${WRKSRC} && ${INSTALL_DATA} FAQ INSTALL README TUNING ${DOCDIR} -.include "../../security/tcp_wrappers/buildlink3.mk" - .include "../../mk/bsd.pkg.mk" |