From owner-svn-ports-head@FreeBSD.ORG Thu Jun 20 14:42:32 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id E75945E9; Thu, 20 Jun 2013 14:42:31 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id D823B1DAE; Thu, 20 Jun 2013 14:42:31 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r5KEgVDY054183; Thu, 20 Jun 2013 14:42:31 GMT (envelope-from wg@svn.freebsd.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r5KEgVDr054179; Thu, 20 Jun 2013 14:42:31 GMT (envelope-from wg@svn.freebsd.org) Message-Id: <201306201442.r5KEgVDr054179@svn.freebsd.org> From: William Grzybowski Date: Thu, 20 Jun 2013 14:42:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r321389 - in head/databases: . pear-DoctrineDBAL X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2013 14:42:32 -0000 Author: wg Date: Thu Jun 20 14:42:30 2013 New Revision: 321389 URL: http://svnweb.freebsd.org/changeset/ports/321389 Log: The Doctrine DBAL package is the database abstraction layer used to power the ORM package. WWW: http://www.doctrine-project.org/ Added: head/databases/pear-DoctrineDBAL/ head/databases/pear-DoctrineDBAL/Makefile (contents, props changed) head/databases/pear-DoctrineDBAL/distinfo (contents, props changed) head/databases/pear-DoctrineDBAL/pkg-descr (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Thu Jun 20 14:24:06 2013 (r321388) +++ head/databases/Makefile Thu Jun 20 14:42:30 2013 (r321389) @@ -508,6 +508,7 @@ SUBDIR += pear-DB_ldap2 SUBDIR += pear-Doctrine12 SUBDIR += pear-DoctrineCommon + SUBDIR += pear-DoctrineDBAL SUBDIR += pear-Horde_Db SUBDIR += pear-Horde_HashTable SUBDIR += pear-Horde_Imsp Added: head/databases/pear-DoctrineDBAL/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/pear-DoctrineDBAL/Makefile Thu Jun 20 14:42:30 2013 (r321389) @@ -0,0 +1,54 @@ +# Created by: William Grzybowski +# $FreeBSD$ + +PORTNAME= DoctrineDBAL +PORTVERSION= 2.3.0 +CATEGORIES= databases pear +MASTER_SITES= http://pear.doctrine-project.org/get/ + +MAINTAINER= wg@FreeBSD.org +COMMENT= Database abstraction layer used to power the ORM package + +LICENSE= LGPL21 + +BUILD_DEPENDS= ${PEARDIR}/.channels/pear.doctrine-project.org.reg:${PORTSDIR}/devel/pear-channel-doctrine +RUN_DEPENDS= ${PEARDIR}/.channels/pear.doctrine-project.org.reg:${PORTSDIR}/devel/pear-channel-doctrine \ + ${PEARDIR}/Doctrine/Common/Version.php:${PORTSDIR}/databases/pear-DoctrineCommon \ + ${PEARDIR}/Symfony/Component/Console/Application.php:${PORTSDIR}/devel/pear-Symfony_Component_Console + +OPTIONSFILE?= ${PORT_DBDIR}/pear-${PORTNAME}/options +OPTIONS_DEFINE= DBLIB MYSQL ODBC PGSQL SQLITE +OPTIONS_DEFAULT=MYSQL + +DBLIB_DESC= Install PHP DBO driver for DBLIB +MYSQL_DESC= Install PHP DBO driver for MySQL +ODBC_DESC= Install PHP DBO driver for ODBC +PGSQL_DESC= Install PHP DBO driver for PostgreSQL +SQLITE_DESC= Install PHP DBO driver for SQLite + +PEAR_CHANNEL= doctrine +PEAR_AUTOINSTALL= yes + +USE_PHP= pdo +WANT_PHP_CLI= yes + +.include + +.if ${PORT_OPTIONS:MDBLIB} +RUN_DEPENDS+= ${PHPBASE}/lib/php/${PHP_EXT_DIR}/pdo_dblib.so:${PORTSDIR}/databases/php${PHP_VER}-pdo_dblib +.endif +.if ${PORT_OPTIONS:MMYSQL} +USE_PHP+= pdo_mysql +.endif +.if ${PORT_OPTIONS:MODBC} +RUN_DEPENDS+= ${PHPBASE}/lib/php/${PHP_EXT_DIR}/pdo_odbc.so:${PORTSDIR}/databases/php${PHP_VER}-pdo_odbc +.endif +.if ${PORT_OPTIONS:MPGSQL} +USE_PHP+= pdo_pgsql +.endif +.if ${PORT_OPTIONS:MSQLITE} +USE_PHP+= pdo_sqlite +.endif + +.include "${PORTSDIR}/devel/pear/bsd.pear.mk" +.include Added: head/databases/pear-DoctrineDBAL/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/pear-DoctrineDBAL/distinfo Thu Jun 20 14:42:30 2013 (r321389) @@ -0,0 +1,2 @@ +SHA256 (PEAR/DoctrineDBAL-2.3.0.tgz) = 417ea5a3d646ea5400ff29a47a2f38afcf0dcafe149767f85b7fdc61240c419a +SIZE (PEAR/DoctrineDBAL-2.3.0.tgz) = 143996 Added: head/databases/pear-DoctrineDBAL/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/pear-DoctrineDBAL/pkg-descr Thu Jun 20 14:42:30 2013 (r321389) @@ -0,0 +1,4 @@ +The Doctrine DBAL package is the database abstraction layer used to +power the ORM package. + +WWW: http://www.doctrine-project.org/