diff options
author | Matthew Seaman <matthew@FreeBSD.org> | 2012-06-04 19:25:56 +0000 |
---|---|---|
committer | Matthew Seaman <matthew@FreeBSD.org> | 2012-06-04 19:25:56 +0000 |
commit | ce2305af6799357159c317fc826d37d8137bfef3 (patch) | |
tree | 13d6e5539796d50a49425c14bd27da9e21368025 /net | |
parent | d9ad877b7e7d15d03ebcf6713e90e9b6559e34f0 (diff) |
Notes
Diffstat (limited to 'net')
-rw-r--r-- | net/phpldapadmin/Makefile | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/net/phpldapadmin/Makefile b/net/phpldapadmin/Makefile index 4e06a72ccda8..30b08acec145 100644 --- a/net/phpldapadmin/Makefile +++ b/net/phpldapadmin/Makefile @@ -22,11 +22,12 @@ USE_PHP= gettext ldap openssl pcre session xml iconv hash DEFAULT_PHP_VER= 5 IGNORE_WITH_PHP= 4 -OPTIONS= SUPHP "suPHP support" off +OPTIONS_DEFINE= SUPHP +SUPHP_DESCR= suPHP support .include <bsd.port.options.mk> -.if defined(WITH_SUPHP) && !defined(WITHOUT_SUPHP) +.if ${PORT_OPTIONS:MSUPHP} PKGNAMESUFFIX+= -suphp RUN_DEPENDS+= ${LOCALBASE}/sbin/suphp:${PORTSDIR}/www/suphp @@ -38,7 +39,7 @@ WANT_PHP_WEB= yes .endif -# USERS is only used WITH_SUPHP +# USERS is only used when SUPHP option selected GROUPS?= ${WWWGRP} CFGDIR= config CFGFILE= config.php @@ -46,7 +47,7 @@ CFGFILE= config.php PLIST= ${WRKDIR}/plist PLIST_SUB+= PLA_GRP=${GROUPS} -.if defined(WITH_SUPHP) && !defined(WITHOUT_SUPHP) +.if ${PORT_OPTIONS:MSUPHP} USERS?= _pla @@ -61,12 +62,6 @@ SUB_FILES+= pkg-message .SILENT: -pre-everything:: - ${ECHO_MSG} "" - ${ECHO_MSG} "This port is PHP5 specific. If you need PHP4 support," - ${ECHO_MSG} "please use the net/phpldapadmin098 port instead." - ${ECHO_MSG} "" - post-patch: cd ${WRKSRC} ; \ ${FIND} . ! -type d ! -name ${CFGFILE}.example ! -name .cvsignore \ @@ -101,7 +96,7 @@ install-conf: fi post-install: -.if defined(WITH_SUPHP) +.if ${PORT_OPTIONS:MSUPHP} ${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL .endif ${CAT} ${PKGMESSAGE} |