4f5544a38b
Tested by: poudriere Approved by: portmgr (bapt)
38 lines
1 KiB
Makefile
38 lines
1 KiB
Makefile
# Created by: Antonio Carlos Venancio Junior (<antonio@inf.ufsc.br>)
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= DB_Table
|
|
PORTVERSION= 1.5.6
|
|
PORTREVISION= 1
|
|
PORTEPOCH= 1
|
|
CATEGORIES= databases www pear
|
|
|
|
MAINTAINER= miwi@FreeBSD.org
|
|
COMMENT= PEAR object-oriented interface to a database table
|
|
|
|
BUILD_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear
|
|
RUN_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear
|
|
|
|
LATEST_LINK= pear-DB_Table
|
|
OPTIONS_DEFINE= PEAR_HTML_QUICKFORM PEAR_DB PEAR_MDB2
|
|
PEAR_HTML_QUICKFORM_DESC= PEAR::HTML_QuickForm support
|
|
PEAR_DB_DESC= PEAR::DB support
|
|
PEAR_MDB2_DESC= PEAR::MDB2 support
|
|
PEAR_AUTOINSTALL= yes
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MPEAR_HTML_QUICKFORM}
|
|
RUN_DEPENDS+= ${PEARDIR}/HTML/QuickForm.php:${PORTSDIR}/devel/pear-HTML_QuickForm
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MPEAR_DB}
|
|
RUN_DEPENDS+= ${PEARDIR}/DB.php:${PORTSDIR}/databases/pear-DB
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MPEAR_MDB2}
|
|
RUN_DEPENDS+= ${PEARDIR}/MDB2.php:${PORTSDIR}/databases/pear-MDB2
|
|
.endif
|
|
|
|
.include "${PORTSDIR}/devel/pear/bsd.pear.mk"
|
|
.include <bsd.port.mk>
|