summaryrefslogtreecommitdiff
path: root/ftp/pure-ftpd
diff options
context:
space:
mode:
authorSunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>2013-05-06 17:57:36 +0000
committerSunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>2013-05-06 17:57:36 +0000
commit1e036c569a998a795e9294b2902cf7ca537da2fc (patch)
tree5ad7acb668ca414c7e2011352b910aaffd54f878 /ftp/pure-ftpd
parent- Fix shebang line for users without USE_PERL=yes (diff)
- Use CERTFILE for custom certificate location
PR: ports/176614 Requested by: Ilya Pizik <ilya.pizik@gmail.com>
Notes
Notes: svn path=/head/; revision=317534
Diffstat (limited to 'ftp/pure-ftpd')
-rw-r--r--ftp/pure-ftpd/Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/ftp/pure-ftpd/Makefile b/ftp/pure-ftpd/Makefile
index d8c0f96ec9c7..53c6910f84a4 100644
--- a/ftp/pure-ftpd/Makefile
+++ b/ftp/pure-ftpd/Makefile
@@ -93,9 +93,8 @@ CONFIGURE_ARGS+= --with-throttling
.if ${PORT_OPTIONS:MTLS}
CONFIGURE_ARGS+= --with-tls
# different certificate file location?
-. if ${PORT_OPTIONS:MCERTFILE}
-CONFIGURE_ARGS+= --with-certfile=${WITH_CERTFILE}
-. endif
+CERTFILE?= /etc/ssl/private/pure-ftpd.pem
+CONFIGURE_ARGS+= --with-certfile=${CERTFILE}
.endif
# if mysql or ldap are disabled, enable pam
@@ -158,7 +157,7 @@ CONTRIB= xml_python_processors.txt pure-stat.pl pure-vpopauth.pl
pre-fetch:
@${ECHO_MSG} "You can use the following additional options:"
- @${ECHO_MSG} "WITH_CERTFILE=/path - Set different location of certificate file for TLS"
+ @${ECHO_MSG} "CERTFILE=/path - Custom location of certificate file for TLS"
@${ECHO_MSG} "WITH_LANG=lang - Enable compilation of language support, lang is one of"
@${ECHO_MSG} " english, german, romanian, french, french-funny, polish, spanish,"
@${ECHO_MSG} " danish, dutch, italian, brazilian-portuguese, slovak, korean, swedish,"