diff options
author | jlam <jlam@pkgsrc.org> | 2005-02-02 23:12:52 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-02-02 23:12:52 +0000 |
commit | 0cead0578e5154e75ec80ee7196473d3f6c6bd2d (patch) | |
tree | 0f2946aba6fa6717e0e25f0e8a3447923dadc3c8 /net | |
parent | 019e10c51228c92152e16dd48390121b95cd13d0 (diff) | |
download | pkgsrc-0cead0578e5154e75ec80ee7196473d3f6c6bd2d.tar.gz |
Set INSTALLATION_DIRS to create some directories used by the do-install
target that appears later in the Makefile. Also move inclusion of
buildlink3.mk files above target definitions, as per style guidelines.
Diffstat (limited to 'net')
-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" |