37 lines
1.2 KiB
Makefile
37 lines
1.2 KiB
Makefile
# New ports collection makefile for: pear-DB_DataObject_FormBuilder
|
|
# Date created: 24 August 2004
|
|
# Whom: Antonio Carlos Venancio Junior (<antonio@php.net>)
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= DB_DataObject_FormBuilder
|
|
PORTVERSION= 1.0.2
|
|
CATEGORIES= databases www pear
|
|
|
|
MAINTAINER= miwi@FreeBSD.org
|
|
COMMENT= Automatically build HTML_QuickForm objects using DB_DataObject
|
|
|
|
BUILD_DEPENDS= ${PEARDIR}/HTML/QuickForm.php:${PORTSDIR}/devel/pear-HTML_QuickForm \
|
|
${PEARDIR}/DB/DataObject.php:${PORTSDIR}/databases/pear-DB_DataObject
|
|
RUN_DEPENDS:= ${PEARDIR}/HTML/QuickForm.php:${PORTSDIR}/devel/pear-HTML_QuickForm \
|
|
${PEARDIR}/DB/DataObject.php:${PORTSDIR}/databases/pear-DB_DataObject
|
|
|
|
LATEST_LINK= pear-DB_DataObject_FormBuilder
|
|
OPTIONS= PEAR_DATE "PEAR::Date support" off \
|
|
PEAR_HTML_TABLE "PEAR::HTML_Table support" off
|
|
|
|
PEAR_AUTOINSTALL=yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_PEAR_DATE)
|
|
RUN_DEPENDS+= ${PEARDIR}/Date.php:${PORTSDIR}/devel/pear-Date
|
|
.endif
|
|
|
|
.if defined(WITH_PEAR_HTML_TABLE)
|
|
RUN_DEPENDS+= ${PEARDIR}/HTML/Table.php:${PORTSDIR}/devel/pear-HTML_Table
|
|
.endif
|
|
|
|
.include "${PORTSDIR}/devel/pear/bsd.pear.mk"
|
|
.include <bsd.port.post.mk>
|