aboutsummaryrefslogtreecommitdiff
path: root/ftp/pure-ftpd
diff options
context:
space:
mode:
authorRoman Bogorodskiy <novel@FreeBSD.org>2005-04-02 16:32:48 +0000
committerRoman Bogorodskiy <novel@FreeBSD.org>2005-04-02 16:32:48 +0000
commit8eda7d41718267e1cf718fbff2a10ee4680ce96d (patch)
treec88f23eef6f8a9845fe3582421df6045cea77e8d /ftp/pure-ftpd
parent459fef72b2ded5c00d39c66b9184e24ca3649923 (diff)
downloadports-8eda7d41718267e1cf718fbff2a10ee4680ce96d.tar.gz
ports-8eda7d41718267e1cf718fbff2a10ee4680ce96d.zip
Notes
Diffstat (limited to 'ftp/pure-ftpd')
-rw-r--r--ftp/pure-ftpd/Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/ftp/pure-ftpd/Makefile b/ftp/pure-ftpd/Makefile
index 55edf149b409..f301b442feba 100644
--- a/ftp/pure-ftpd/Makefile
+++ b/ftp/pure-ftpd/Makefile
@@ -7,7 +7,7 @@
PORTNAME= pure-ftpd
PORTVERSION= 1.0.20
-PORTREVISION= 2
+PORTREVISION= 3
CATEGORIES= ftp ipv6
MASTER_SITES= ftp://ftp.pureftpd.org/pub/pure-ftpd/releases/ \
ftp://ftp2.fr.pureftpd.org/pub/mirrors/ftp.fr.pureftpd.org/pub/pure-ftpd/releases/ \
@@ -45,7 +45,8 @@ OPTIONS= LDAP "Support for users in LDAP directories" off \
PGSQL "Support for users in PostgreSQL database" off \
PRIVSEP "Enable privilege separation" off \
PERUSERLIMITS "Per-user concurrency limits" off \
- THROTTLING "Bandwidth throttling" off
+ THROTTLING "Bandwidth throttling" off \
+ BANNER "Show ${PORTNAME} welcome upon session start" on
.include <bsd.port.pre.mk>
@@ -97,6 +98,11 @@ CONFIGURE_ARGS+= --with-certfile=${WITH_CERTFILE}
CONFIGURE_ARGS+= --with-pam
.endif
+# for paranoia
+.if defined(WITHOUT_BANNER)
+CONFIGURE_ARGS+= --without-banner
+.endif
+
.if ${OSVERSION} > 500000
PAM_TEMPL?= ${FILESDIR}/pam.conf.5
.else