freebsd-ports/devel/pear-Config/Makefile
Baptiste Daroussin 3bdf701a5c 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)
2012-12-17 02:15:13 +00:00

44 lines
1.5 KiB
Makefile

# Created by: Alex Miller (<asm@asm.kiev.ua>)
# $FreeBSD$
PORTNAME= Config
PORTVERSION= 1.10.12
CATEGORIES= devel www pear
MAINTAINER= miwi@FreeBSD.org
COMMENT= Your configurations swiss-army knife
BUILD_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear
RUN_DEPENDS:= ${BUILD_DEPENDS}
LATEST_LINK= pear-${PORTNAME}
OPTIONS_DEFINE= PEAR_XML_PARSER PEAR_XML_UTIL
PEAR_XML_PARSER_DESC= PEAR::XML_Parser support
PEAR_XML_UTIL_DESC= PEAR::XML_Util support
FILES= Config/Container/Apache.php Config/Container/GenericConf.php \
Config/Container/IniCommented.php Config/Container/IniFile.php \
Config/Container/PHPArray.php Config/Container/PHPConstants.php \
Config/Container/XML.php Config/Container.php Config.php
DOCS= Apache.php IniCommented.php IniFromScratch.php
TESTS= bug2742.ini bug2742.phpt bug2780.phpt bug3051.phpt bug3051.xml \
bug3137.phpt bug3298.phpt bug3298.xml bug3398.ini bug3398.phpt \
bug3590-input.php bug3590.phpt bug4623.conf bug4623.phpt \
bug6441.ini bug6441.phpt bug7544-inicommented.phpt \
bug7544-inifile.phpt bug7544.ini bug7652.phpt bug7652.xml \
bug8357-inicommented.phpt bug8357-inifile.phpt bug8357.ini \
bug10010.phpt bug10185.phpt phpt_test.php.inc setup.php.inc
_TESTSDIR= test
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MPEAR_XML_PARSER}
RUN_DEPENDS+= ${PEARDIR}/XML/Parser.php:${PORTSDIR}/devel/pear-XML_Parser
.endif
.if ${PORT_OPTIONS:MPEAR_XML_UTIL}
RUN_DEPENDS+= ${PEARDIR}/XML/Util.php:${PORTSDIR}/devel/pear-XML_Util
.endif
.include "${PORTSDIR}/devel/pear/bsd.pear.mk"
.include <bsd.port.mk>