diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2012-12-17 02:15:13 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2012-12-17 02:15:13 +0000 |
commit | 3bdf701a5c55426eb679205359bb384d7019a1a2 (patch) | |
tree | 2462f02d26b3d6c876b0b158f0a6aa557f06a219 /mail/pear-Mail_Queue | |
parent | 87b9f8cbd167accbbbbcf020b1dfed71e5f93278 (diff) | |
download | ports-3bdf701a5c55426eb679205359bb384d7019a1a2.tar.gz ports-3bdf701a5c55426eb679205359bb384d7019a1a2.zip |
Notes
Diffstat (limited to 'mail/pear-Mail_Queue')
-rw-r--r-- | mail/pear-Mail_Queue/Makefile | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/mail/pear-Mail_Queue/Makefile b/mail/pear-Mail_Queue/Makefile index a8c84ec3fb11..0d795959539f 100644 --- a/mail/pear-Mail_Queue/Makefile +++ b/mail/pear-Mail_Queue/Makefile @@ -1,9 +1,5 @@ -# Ports collection makefile for: pear-Mail_Queue -# Date created: 05 November 2004 -# Whom: Antonio Carlos Venancio Junior (<antonio@inf.ufsc.br>) -# +# Created by: Antonio Carlos Venancio Junior (<antonio@inf.ufsc.br>) # $FreeBSD$ -# PORTNAME= Mail_Queue PORTVERSION= 1.2.7 @@ -19,23 +15,24 @@ RUN_DEPENDS= ${PEARDIR}/Mail.php:${PORTSDIR}/mail/pear-Mail \ PEAR_AUTOINSTALL= yes -OPTIONS= PEAR_DB "PEAR::DB support" off \ - PEAR_MDB "PEAR::MDB support" off \ - PEAR_MDB2 "PEAR::MDB2 support" off +OPTIONS_DEFINE= PEAR_DB PEAR_MDB PEAR_MDB2 +PEAR_DB_DESC= PEAR::DB support +PEAR_MDB_DESC= PEAR::MDB support +PEAR_MDB2_DESC= PEAR::MDB2 support -.include <bsd.port.pre.mk> +.include <bsd.port.options.mk> -.if defined(WITH_PEAR_DB) +.if ${PORT_OPTIONS:MPEAR_DB} RUN_DEPENDS+= ${PEARDIR}/DB.php:${PORTSDIR}/databases/pear-DB .endif -.if defined(WITH_PEAR_MDB) +.if ${PORT_OPTIONS:MPEAR_MDB} RUN_DEPENDS+= ${PEARDIR}/MDB.php:${PORTSDIR}/databases/pear-MDB .endif -.if defined(WITH_PEAR_MDB2) +.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.post.mk> +.include <bsd.port.mk> |