1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-26 05:02:18 +00:00
freebsd-ports/devel/pear-Config/Makefile
Antoine Brodin 2a7dd78bf9 Stage support for pear classes and channels in the devel category
Reviewed by:	bapt, ports@
Tested with:	poudriere + diff on the content of generated packages
2013-11-08 21:41:53 +00:00

33 lines
839 B
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= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear
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
PEAR_AUTOINSTALL= yes
.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>