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 /devel/pear-PEAR_Info | |
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 'devel/pear-PEAR_Info')
-rw-r--r-- | devel/pear-PEAR_Info/Makefile | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/devel/pear-PEAR_Info/Makefile b/devel/pear-PEAR_Info/Makefile index cb7b90a37728..b9434516c721 100644 --- a/devel/pear-PEAR_Info/Makefile +++ b/devel/pear-PEAR_Info/Makefile @@ -1,9 +1,5 @@ -# Ports collection makefile for: pear-PEAR_Info -# Date created: 2006/07/31 -# Whom: chinsan <chinsan.tw@gmail.com> -# +# Created by: chinsan <chinsan.tw@gmail.com> # $FreeBSD$ -# PORTNAME= PEAR_Info PORTVERSION= 1.9.2 @@ -17,7 +13,9 @@ BUILD_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear \ RUN_DEPENDS:= ${BUILD_DEPENDS} LATEST_LINK= pear-PEAR_Info -OPTIONS= PEAR_PHPUnit3 "PEAR::PHPUnit3 support" on +OPTIONS_DEFINE= PEAR_PHPUNIT3 +OPTIONS_DEFAULT= PEAR_PHPUNIT3 +PEAR_PHPUNIT3_DESC= PEAR::PHPUnit3 support CATEGORY= PEAR FILES= Info.php pearinfo.css Info/Cli.php scripts/pearinfo @@ -30,11 +28,11 @@ EXAMPLES= blueskin.css pearinfo3.css pear_info.php pear_info2.php \ pear_info3.php pear_info4.php pear_info5.php pear_info6.php \ pear_info7.php -.include <bsd.port.pre.mk> +.include <bsd.port.options.mk> -.if defined(WITH_PEAR_PHPUnit3) +.if ${PORT_OPTIONS:MPEAR_PHPUNIT3} RUN_DEPENDS+= ${PEARDIR}/PHPUnit/Framework.php:${PORTSDIR}/devel/pear-PHPUnit3 .endif .include "${PORTSDIR}/devel/pear/bsd.pear.mk" -.include <bsd.port.post.mk> +.include <bsd.port.mk> |