diff options
| author | Martin Wilke <miwi@FreeBSD.org> | 2009-09-09 09:29:18 +0000 |
|---|---|---|
| committer | Martin Wilke <miwi@FreeBSD.org> | 2009-09-09 09:29:18 +0000 |
| commit | 3757ec72deabe255200a712227307bbc2543fd94 (patch) | |
| tree | 5d84fe0cc8b575119dfa62c13d1c5b82c4c8d214 /mail/pear-Mail_Queue/Makefile | |
| parent | 1800d08aead6bc7f846f3ef143a8c0a25b46e788 (diff) | |
Notes
Diffstat (limited to 'mail/pear-Mail_Queue/Makefile')
| -rw-r--r-- | mail/pear-Mail_Queue/Makefile | 28 |
1 files changed, 23 insertions, 5 deletions
diff --git a/mail/pear-Mail_Queue/Makefile b/mail/pear-Mail_Queue/Makefile index ad35fc137977..1dd4e2744815 100644 --- a/mail/pear-Mail_Queue/Makefile +++ b/mail/pear-Mail_Queue/Makefile @@ -6,7 +6,7 @@ # PORTNAME= Mail_Queue -PORTVERSION= 1.2.2 +PORTVERSION= 1.2.3 CATEGORIES= mail www pear MAINTAINER= miwi@FreeBSD.org @@ -16,13 +16,31 @@ BUILD_DEPENDS= ${PEARDIR}/Mail.php:${PORTSDIR}/mail/pear-Mail \ ${PEARDIR}/Mail/mime.php:${PORTSDIR}/mail/pear-Mail_Mime RUN_DEPENDS= ${BUILD_DEPENDS} -CATEGORY= Mail -FILES= Queue.php Queue/Body.php Queue/Container.php \ - Queue/Container/creole.php Queue/Container/db.php \ - Queue/Container/mdb.php Queue/Container/mdb2.php +#CATEGORY= Mail +FILES= Mail/Queue.php Mail/Queue/Body.php \ + Mail/Queue/Container.php Mail/Queue/Error.php \ + Mail/Queue/Container/creole.php Mail/Queue/Container/db.php \ + Mail/Queue/Container/mdb.php Mail/Queue/Container/mdb2.php DOCS= README TODO add_example.php base.php \ mdb_mail_queue_schema.xml mysql.sql pgsql.sql send_example.php +OPTIONS= PEAR_DB "PEAR::DB support" off \ + PEAR_MDB "PEAR::MDB support" off \ + PEAR_MDB2 "PEAR::MDB2 support" off + .include <bsd.port.pre.mk> + +.if defined(WITH_PEAR_DB) +RUN_DEPENDS+= ${PEARDIR}/DB.php:${PORTSDIR}/databases/pear-DB +.endif + +.if defined(WITH_PEAR_MDB) +RUN_DEPENDS+= ${PEARDIR}/MDB.php:${PORTSDIR}/databases/pear-MDB +.endif + +.if defined(WITH_PEAR_MDB2) +RUN_DEPENDS+= ${PEARDIR}/MDB2.php:${PORTSDIR}/databases/pear-MDB2 +.endif + .include "${PORTSDIR}/devel/pear/bsd.pear.mk" .include <bsd.port.post.mk> |
