1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-05 11:35:01 +00:00

- Removed php5-pcre dependency since it's part of the PHP base port now

- Added MySQLi dependency configuration option
- Bumped PORTREVISION

PR:		ports/129698
Submitted by:	Till Klampaeckel <till at php dot net>
This commit is contained in:
Greg Larkin 2008-12-19 15:30:18 +00:00
parent 8b9647249a
commit 507cecbea4
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=224425

View File

@ -7,6 +7,7 @@
PORTNAME= ZendFramework
PORTVERSION= 1.7.0
PORTREVISION= 1
CATEGORIES= www
MASTER_SITES= http://framework.zend.com/releases/${DISTNAME}/ GENTOO/distfiles
@ -14,7 +15,7 @@ MAINTAINER= glarkin@FreeBSD.org
COMMENT= A framework for developing PHP web applications
NO_BUILD= yes
USE_PHP= pcre spl
USE_PHP= spl
WANT_PHP_WEB= yes
USE_GETTEXT= yes
@ -24,6 +25,7 @@ OPTIONS= \
EDOJO "Install embedded Dojo" On \
PDOJO "Install Dojo from ports" Off \
MYSQL "Install MySQL PDO support" Off \
MYSQLI "Install MySQLi support" Off \
DBLIB "Install DBLIB PDO support" Off \
PGSQL "Install PostgreSQL PDO support" Off \
OCI "Install Oracle OCI 8 PDO support" Off \
@ -78,6 +80,10 @@ USE_PHP+= bcmath bitset json posix
USE_PHP+= pdo_mysql
.endif
.if defined(WITH_MYSQLI)
USE_PHP+= mysqli
.endif
.if defined(WITH_DBLIB)
RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/pdo_dblib.so:${PORTSDIR}/databases/php5-pdo_dblib
.endif