diff options
author | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2013-05-06 17:57:36 +0000 |
---|---|---|
committer | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2013-05-06 17:57:36 +0000 |
commit | 1e036c569a998a795e9294b2902cf7ca537da2fc (patch) | |
tree | 5ad7acb668ca414c7e2011352b910aaffd54f878 /ftp/pure-ftpd | |
parent | c7d56d5a458fc32c53329629d4fd58c4ca34117a (diff) | |
download | ports-1e036c569a998a795e9294b2902cf7ca537da2fc.tar.gz ports-1e036c569a998a795e9294b2902cf7ca537da2fc.zip |
Notes
Diffstat (limited to 'ftp/pure-ftpd')
-rw-r--r-- | ftp/pure-ftpd/Makefile | 7 |
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," |