diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2012-12-17 02:15:13 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2012-12-17 02:15:13 +0000 |
commit | 3bdf701a5c55426eb679205359bb384d7019a1a2 (patch) | |
tree | 2462f02d26b3d6c876b0b158f0a6aa557f06a219 /security/pear-Auth | |
parent | 87b9f8cbd167accbbbbcf020b1dfed71e5f93278 (diff) | |
download | ports-3bdf701a5c55426eb679205359bb384d7019a1a2.tar.gz ports-3bdf701a5c55426eb679205359bb384d7019a1a2.zip |
Notes
Diffstat (limited to 'security/pear-Auth')
-rw-r--r-- | security/pear-Auth/Makefile | 57 |
1 files changed, 28 insertions, 29 deletions
diff --git a/security/pear-Auth/Makefile b/security/pear-Auth/Makefile index 0b02ea8d0999..6fa1fffc560b 100644 --- a/security/pear-Auth/Makefile +++ b/security/pear-Auth/Makefile @@ -1,9 +1,5 @@ -# Ports collection makefile for: pear-Auth -# Date created: 2 February 2003 -# Whom: Thierry Thomas (<thierry@pompo.net>) -# +# Created by: Thierry Thomas (<thierry@pompo.net>) # $FreeBSD$ -# PORTNAME= Auth PORTVERSION= 1.6.4 @@ -17,66 +13,69 @@ RUN_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear PEAR_AUTOINSTALL= yes LATEST_LINK= pear-Auth -OPTIONS= PEAR_LOG "PEAR::Log support" off \ - PEAR_FILE_PASSWD "PEAR::File_Passwd support" off \ - PEAR_NET_POP3 "PEAR::Net_POP3 support" off \ - PEAR_DB "PEAR::DB support" off \ - PEAR_MDB "PEAR::MDB support" off \ - PEAR_MDB2 "PEAR::MDB2 support" off \ - PEAR_AUTH_RADIUS "PEAR::AUTH_RADIUS support" off \ - PEAR_CRYPT_CHAP "PEAR::CRYPT_CHAP support" off \ - PEAR_FILE_SMBPASSWD "PEAR::File_SMBPasswd support" off \ - PEAR_SOAP "PEAR::SOAP support" off \ - PEAR_NET_VPOPMAILD "PEAR::Net_Vpopmaild support" off +OPTIONS_DEFINE= PEAR_LOG PEAR_FILE_PASSWD PEAR_NET_POP3 PEAR_DB PEAR_MDB \ + PEAR_MDB2 PEAR_AUTH_RADIUS PEAR_CRYPT_CHAP PEAR_FILE_SMBPASSWD \ + PEAR_SOAP PEAR_NET_VPOPMAILD +PEAR_LOG_DESC= PEAR::Log support +PEAR_FILE_PASSWD_DESC= PEAR::File_Passwd support +PEAR_NET_POP3_DESC= PEAR::Net_POP3 support +PEAR_DB_DESC= PEAR::DB support +PEAR_MDB_DESC= PEAR::MDB support +PEAR_MDB2_DESC= PEAR::MDB2 support +PEAR_AUTH_RADIUS_DESC= PEAR::AUTH_RADIUS support +PEAR_CRYPT_CHAP_DESC= PEAR::CRYPT_CHAP support +PEAR_FILE_SMBPASSWD_DESC= PEAR::File_SMBPasswd support +PEAR_SOAP_DESC= PEAR::SOAP support +PEAR_NET_VPOPMAILD_DESC= PEAR::Net_Vpopmaild support post-extract: @${REINPLACE_CMD} -e "s|@version@|${PORTVERSION}|" ${WRKSRC}/Auth.php -.include <bsd.port.pre.mk> +.include <bsd.port.options.mk> -.if defined(WITH_PEAR_LOG) +.if ${PORT_OPTIONS:MPEAR_LOG} RUN_DEPENDS+= ${PEARDIR}/Log/syslog.php:${PORTSDIR}/sysutils/pear-Log .endif -.if defined(WITH_PEAR_FILE_PASSWD) +.if ${PORT_OPTIONS:MPEAR_FILE_PASSWD} RUN_DEPENDS+= ${PEARDIR}/File/Passwd.php:${PORTSDIR}/security/pear-File_Passwd .endif -.if defined(WITH_PEAR_CRYPT_CHAP) +.if ${PORT_OPTIONS:MPEAR_CRYPT_CHAP} RUN_DEPENDS+= ${PEARDIR}/Crypt/CHAP.php:${PORTSDIR}/security/pear-Crypt_CHAP .endif -.if defined(WITH_PEAR_NET_POP3) +.if ${PORT_OPTIONS:MPEAR_NET_POP3} RUN_DEPENDS+= ${PEARDIR}/Net/POP3.php:${PORTSDIR}/net/pear-Net_POP3 .endif -.if defined(WITH_PEAR_DB) +.if ${PORT_OPTIONS:MPEAR_DB} RUN_DEPENDS+= ${PEARDIR}/DB.php:${PORTSDIR}/databases/pear-DB .endif -.if defined(WITH_PEAR_MDB) +.if ${PORT_OPTIONS:MPEAR_MDB} RUN_DEPENDS+= ${PEARDIR}/MDB.php:${PORTSDIR}/databases/pear-MDB .endif -.if defined(WITH_PEAR_MDB2) +.if ${PORT_OPTIONS:MPEAR_MDB2} RUN_DEPENDS+= ${PEARDIR}/MDB2.php:${PORTSDIR}/databases/pear-MDB2 .endif -.if defined(WITH_PEAR_AUTH_RADIUS) +.if ${PORT_OPTIONS:MPEAR_AUTH_RADIUS} RUN_DEPENDS+= ${PEARDIR}/Auth/RADIUS.php:${PORTSDIR}/net/pear-Auth_RADIUS .endif -.if defined(WITH_PEAR_FILE_SMBPASSWD) +.if ${PORT_OPTIONS:MPEAR_FILE_SMBPASSWD} RUN_DEPENDS+= ${PEARDIR}/File/SMBPasswd.php:${PORTSDIR}/security/pear-File_SMBPasswd .endif -.if defined(WITH_PEAR_SOAP) +.if ${PORT_OPTIONS:MPEAR_SOAP} RUN_DEPENDS+= ${PEARDIR}/SOAP/Base.php:${PORTSDIR}/net/pear-SOAP .endif -.if defined(WITH_PEAR_NET_VPOPMAILD) +.if ${PORT_OPTIONS:MPEAR_NET_VPOPMAILD} RUN_DEPENDS+= ${PEARDIR}/Net/Vpopmaild.php:${PORTSDIR}/net/pear-Net_Vpopmaild .endif .include "${PORTSDIR}/devel/pear/bsd.pear.mk" -.include <bsd.port.post.mk> +.include <bsd.port.mk> |