There is no way to redefine certicicate file location after updating ftp/pure-ftpd to new options framework. Fix: Patch attached Patch attached with submission follows:
Responsible Changed From-To: freebsd-ports-bugs->sunpoet Over to maintainer (via the GNATS Auto Assign Tool)
State Changed From-To: open->closed Problem solved in the ports tree.
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@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," _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"