aboutsummaryrefslogtreecommitdiffstats
path: root/databases
diff options
context:
space:
mode:
authorglarkin <glarkin@FreeBSD.org>2012-10-05 05:43:27 +0800
committerglarkin <glarkin@FreeBSD.org>2012-10-05 05:43:27 +0800
commit9bc939ebf2ab8401e99af4f1aeed9844855d9090 (patch)
tree12ea0e6c18498dbe797e3d4491398ab65bf2b57d /databases
parentace7d42599cb53c1ab85182b7945946f18bb34c6 (diff)
downloadfreebsd-ports-gnome-9bc939ebf2ab8401e99af4f1aeed9844855d9090.tar.gz
freebsd-ports-gnome-9bc939ebf2ab8401e99af4f1aeed9844855d9090.tar.zst
freebsd-ports-gnome-9bc939ebf2ab8401e99af4f1aeed9844855d9090.zip
- Corrected the LICENSE declaration
- Finished the OptionsNG conversion
Diffstat (limited to 'databases')
-rw-r--r--databases/pear-Doctrine12/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/databases/pear-Doctrine12/Makefile b/databases/pear-Doctrine12/Makefile
index 1a7b2fe1bf96..6f65ceb1a3cc 100644
--- a/databases/pear-Doctrine12/Makefile
+++ b/databases/pear-Doctrine12/Makefile
@@ -14,7 +14,7 @@ MASTER_SITES= http://www.doctrine-project.org/downloads/ \
MAINTAINER= glarkin@FreeBSD.org
COMMENT= Doctrine is a PHP object relational mapper
-LICENSE= GPLv2
+LICENSE= LGPL21
PORTSCOUT= limit:^1\.2\.
@@ -43,19 +43,19 @@ IGNORE_WITH_PHP=4
USE_PHP= pdo
WANT_PHP_CLI= yes
-.if defined(WITH_DBLIB)
+.if ${PORT_OPTIONS:MDBLIB}
RUN_DEPENDS+= ${PHPBASE}/lib/php/${PHP_EXT_DIR}/pdo_dblib.so:${PORTSDIR}/databases/php${PHP_VER}-pdo_dblib
.endif
-.if defined (WITH_MYSQL)
+.if ${PORT_OPTIONS:MMYSQL}
USE_PHP+= pdo_mysql
.endif
-.if defined(WITH_ODBC)
+.if ${PORT_OPTIONS:MODBC}
RUN_DEPENDS+= ${PHPBASE}/lib/php/${PHP_EXT_DIR}/pdo_odbc.so:${PORTSDIR}/databases/php${PHP_VER}-pdo_odbc
.endif
-.if defined(WITH_PGSQL)
+.if ${PORT_OPTIONS:MPGSQL}
USE_PHP+= pdo_pgsql
.endif
-.if defined(WITH_SQLITE)
+.if ${PORT_OPTIONS:MSQLITE}
USE_PHP+= pdo_sqlite
.endif