Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 4 Oct 2012 21:43:28 +0000 (UTC)
From:      Greg Larkin <glarkin@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r305283 - head/databases/pear-Doctrine12
Message-ID:  <201210042143.q94LhSM2029067@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: glarkin
Date: Thu Oct  4 21:43:27 2012
New Revision: 305283
URL: http://svn.freebsd.org/changeset/ports/305283

Log:
  - Corrected the LICENSE declaration
  - Finished the OptionsNG conversion

Modified:
  head/databases/pear-Doctrine12/Makefile

Modified: head/databases/pear-Doctrine12/Makefile
==============================================================================
--- head/databases/pear-Doctrine12/Makefile	Thu Oct  4 21:29:54 2012	(r305282)
+++ head/databases/pear-Doctrine12/Makefile	Thu Oct  4 21:43:27 2012	(r305283)
@@ -14,7 +14,7 @@ MASTER_SITES=	http://www.doctrine-projec
 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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201210042143.q94LhSM2029067>