diff options
author | bapt <bapt@FreeBSD.org> | 2012-12-17 10:15:13 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2012-12-17 10:15:13 +0800 |
commit | 421fdbd458a94c9af983273f7ee42d99120d59d9 (patch) | |
tree | 2462f02d26b3d6c876b0b158f0a6aa557f06a219 /mail/pear-Mail | |
parent | b254d40ce314ab3439c8eab6f789fb254328f461 (diff) | |
download | freebsd-ports-gnome-421fdbd458a94c9af983273f7ee42d99120d59d9.tar.gz freebsd-ports-gnome-421fdbd458a94c9af983273f7ee42d99120d59d9.tar.zst freebsd-ports-gnome-421fdbd458a94c9af983273f7ee42d99120d59d9.zip |
Convert miwi's ports to new Options framework
While here fix some consistency in PEAR options name
bumped revision of net/icpld and net/ipsumdump because IPV6 is now on
Approved by: miwi (maintainer)
Diffstat (limited to 'mail/pear-Mail')
-rw-r--r-- | mail/pear-Mail/Makefile | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/mail/pear-Mail/Makefile b/mail/pear-Mail/Makefile index 65a09b9c23c7..88962b817ffb 100644 --- a/mail/pear-Mail/Makefile +++ b/mail/pear-Mail/Makefile @@ -1,9 +1,5 @@ -# Ports collection makefile for: pear-Mail -# Date created: 26 November 2002 -# Whom: Thierry Thomas (<thierry@pompo.net>) -# +# Created by: Thierry Thomas (<thierry@pompo.net>) # $FreeBSD$ -# PORTNAME= Mail DISTVERSION= 1.2.0 @@ -21,13 +17,14 @@ FILES= Mail.php Mail/mail.php Mail/null.php Mail/sendmail.php \ TESTS= rfc822.phpt smtp_error.phpt LATEST_LINK= pear-${PORTNAME} -OPTIONS= PEAR_NET_SMTP "PEAR::Net_SMTP support" off +OPTIONS_DEFINE= PEAR_NET_SMTP +PEAR_NET_SMTP_DESC= PEAR::Net_SMTP support -.include <bsd.port.pre.mk> +.include <bsd.port.options.mk> -.if defined(WITH_PEAR_NET_SMTP) +.if ${PORT_OPTIONS:MPEAR_NET_SMTP} RUN_DEPENDS+= ${PEARDIR}/Net/SMTP.php:${PORTSDIR}/net/pear-Net_SMTP .endif .include "${PORTSDIR}/devel/pear/bsd.pear.mk" -.include <bsd.port.post.mk> +.include <bsd.port.mk> |