diff options
author | Wen Heping <wen@FreeBSD.org> | 2013-03-16 15:24:39 +0000 |
---|---|---|
committer | Wen Heping <wen@FreeBSD.org> | 2013-03-16 15:24:39 +0000 |
commit | 400526fcaf0c732fdd2b6ce30bc87d443706ad6f (patch) | |
tree | dd283340cf4aea1c9c4b9e9b1b69ed2c4567fc6f /net/pear-Net_SMTP | |
parent | 37a90aa84861ee6bac5d52775181df386d0fa740 (diff) | |
download | ports-400526fcaf0c732fdd2b6ce30bc87d443706ad6f.tar.gz ports-400526fcaf0c732fdd2b6ce30bc87d443706ad6f.zip |
Notes
Diffstat (limited to 'net/pear-Net_SMTP')
-rw-r--r-- | net/pear-Net_SMTP/Makefile | 25 |
1 files changed, 9 insertions, 16 deletions
diff --git a/net/pear-Net_SMTP/Makefile b/net/pear-Net_SMTP/Makefile index 65c6d6606329..021fb08cf9ac 100644 --- a/net/pear-Net_SMTP/Makefile +++ b/net/pear-Net_SMTP/Makefile @@ -1,34 +1,27 @@ -# Ports collection makefile for: pear-Net_SMTP -# Date created: 26 November 2002 -# Whom: Thierry Thomas (<thierry@pompo.net>) -# +# Created by: Thierry Thomas (<thierry@pompo.net>) # $FreeBSD$ -# PORTNAME= Net_SMTP PORTVERSION= 1.6.1 CATEGORIES= net mail www pear -MAINTAINER= wen@FreeBSD.org +MAINTAINER= miwi@FreeBSD.org COMMENT= PEAR class that provides an implementation of the SMTP protocol BUILD_DEPENDS= ${PEARDIR}/Net/Socket.php:${PORTSDIR}/net/pear-Net_Socket RUN_DEPENDS:= ${BUILD_DEPENDS} -CATEGORY= Net -FILES= SMTP.php -DOCS= guide.txt -TESTS= auth.phpt basic.phpt config.php.dist quotedata.phpt -EXAMPLES= basic.php - LATEST_LINK= pear-Net_SMTP -OPTIONS= PEAR_AUTH_SASL "PEAR::Auth_SASL support" off +OPTIONS_DEiFINE= PEAR_AUTH_SASL +PEAR_AUTH_SASL_DESC= PEAR::Auth_SASL support + +PEAR_AUTOINSTALL= yes -.include <bsd.port.pre.mk> +.include <bsd.port.options.mk> -.if defined(WITH_PEAR_AUTH_SASL) +.if ${PORT_OPTIONS:MPEAR_AUTH_SASL} BUILD_DEPENDS+= ${PEARDIR}/Auth/SASL.php:${PORTSDIR}/security/pear-Auth_SASL .endif .include "${PORTSDIR}/devel/pear/bsd.pear.mk" -.include <bsd.port.post.mk> +.include <bsd.port.mk> |