svn commit: r317534 - head/ftp/pure-ftpd

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Mon May 6 17:57:36 UTC 2013


Author: sunpoet
Date: Mon May  6 17:57:36 2013
New Revision: 317534
URL: http://svnweb.freebsd.org/changeset/ports/317534

Log:
  - Use CERTFILE for custom certificate location
  
  PR:		ports/176614
  Requested by:	Ilya Pizik <ilya.pizik at gmail.com>

Modified:
  head/ftp/pure-ftpd/Makefile

Modified: head/ftp/pure-ftpd/Makefile
==============================================================================
--- head/ftp/pure-ftpd/Makefile	Mon May  6 17:16:05 2013	(r317533)
+++ head/ftp/pure-ftpd/Makefile	Mon May  6 17:57:36 2013	(r317534)
@@ -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-
 
 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,"


More information about the svn-ports-all mailing list