diff options
author | rene <rene@FreeBSD.org> | 2013-06-04 05:21:57 +0800 |
---|---|---|
committer | rene <rene@FreeBSD.org> | 2013-06-04 05:21:57 +0800 |
commit | 85f0851616131a6f9d2e45f23ae15f5f2a61c451 (patch) | |
tree | 6eb6f250ba44efdfe7cd55fa4c698393c0b3d1af /databases | |
parent | 23619406db0320275b4c8643166432efaf66d7e4 (diff) | |
download | freebsd-ports-gnome-85f0851616131a6f9d2e45f23ae15f5f2a61c451.tar.gz freebsd-ports-gnome-85f0851616131a6f9d2e45f23ae15f5f2a61c451.tar.zst freebsd-ports-gnome-85f0851616131a6f9d2e45f23ae15f5f2a61c451.zip |
Remove expired port:
2012-06-21 databases/php-sqlite3: No upstream development and superseded by databases/php5-sqlite3 and databases/php53-sqlite3
Diffstat (limited to 'databases')
-rw-r--r-- | databases/Makefile | 1 | ||||
-rw-r--r-- | databases/php-sqlite3/Makefile | 31 | ||||
-rw-r--r-- | databases/php-sqlite3/distinfo | 2 | ||||
-rw-r--r-- | databases/php-sqlite3/files/patch-php_sqlite3.c | 20 | ||||
-rw-r--r-- | databases/php-sqlite3/pkg-descr | 16 |
5 files changed, 0 insertions, 70 deletions
diff --git a/databases/Makefile b/databases/Makefile index a44f427cee27..769f3abc1e85 100644 --- a/databases/Makefile +++ b/databases/Makefile @@ -574,7 +574,6 @@ SUBDIR += pgworksheet SUBDIR += php-adodb-ext SUBDIR += php-mdcached - SUBDIR += php-sqlite3 SUBDIR += php5-creole SUBDIR += php5-dba SUBDIR += php5-interbase diff --git a/databases/php-sqlite3/Makefile b/databases/php-sqlite3/Makefile deleted file mode 100644 index ed0f1784b838..000000000000 --- a/databases/php-sqlite3/Makefile +++ /dev/null @@ -1,31 +0,0 @@ -# New ports collection makefile for: php-sqlite3 -# Date created: 26 Sep 2006 -# Whom: Simon Cornelius P. Umacob <simoncpu@infoweapons.com> -# -# $FreeBSD$ -# - -PORTNAME= sqlite3 -PORTVERSION= 0.5 -CATEGORIES= databases -MASTER_SITES= SF/php-${PORTNAME}/source%20code/release%20${PORTVERSION} -PKGNAMEPREFIX= php- -EXTRACT_SUFX= .tgz - -MAINTAINER= glarkin@FreeBSD.org -COMMENT= A port for the PHP sqlite3 extension - -BUILD_DEPENDS= sqlite3>=3.0:${PORTSDIR}/databases/sqlite3 - -DEPRECATED= No upstream development and superseded by databases/php5-sqlite3 and databases/php53-sqlite3 -EXPIRATION_DATE= 2012-06-21 - -CONFIGURE_ARGS= --with-sqlite3=${LOCALBASE} -USE_PHP= yes -USE_PHPIZE= yes -USE_PHPEXT= yes -USE_PHP_BUILD= yes -DEFAULT_PHP_VER=53 -IGNORE_WITH_PHP=5 - -.include <bsd.port.mk> diff --git a/databases/php-sqlite3/distinfo b/databases/php-sqlite3/distinfo deleted file mode 100644 index d9a4916f09d4..000000000000 --- a/databases/php-sqlite3/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (sqlite3-0.5.tgz) = 3b733ac9212f0484777857df33a9a22d1fcd2dcbc447f5ac38b57f26ea065707 -SIZE (sqlite3-0.5.tgz) = 14106 diff --git a/databases/php-sqlite3/files/patch-php_sqlite3.c b/databases/php-sqlite3/files/patch-php_sqlite3.c deleted file mode 100644 index 27fe4376ca54..000000000000 --- a/databases/php-sqlite3/files/patch-php_sqlite3.c +++ /dev/null @@ -1,20 +0,0 @@ ---- ./php_sqlite3.c.orig 2010-04-12 14:26:36.000000000 -0400 -+++ ./php_sqlite3.c 2010-04-12 14:27:02.000000000 -0400 -@@ -471,7 +471,7 @@ - * duplicate it (SQLITE_STATIC flag). - */ - -- z_val->refcount++; -+ Z_ADDREF_P(z_val); - - if (sqlite3_bind_text(stmt->stmt, idx, Z_STRVAL_P(z_val), Z_STRLEN_P(z_val), SQLITE_STATIC) != SQLITE_OK) - RETURN_FALSE; -@@ -504,7 +504,7 @@ - * duplicate it (SQLITE_STATIC flag). - */ - -- z_val->refcount++; -+ Z_ADDREF_P(z_val); - - if (sqlite3_bind_blob(stmt->stmt, idx, Z_STRVAL_P(z_val), Z_STRLEN_P(z_val), SQLITE_STATIC) != SQLITE_OK) - RETURN_FALSE; diff --git a/databases/php-sqlite3/pkg-descr b/databases/php-sqlite3/pkg-descr deleted file mode 100644 index 3c70609d3967..000000000000 --- a/databases/php-sqlite3/pkg-descr +++ /dev/null @@ -1,16 +0,0 @@ -php-sqlite3 is a PHP extension that lets you access SQLite3 databases -within your scripts. PHP4 and PHP5 have already built-in support for this -RDBM, but this is limited to the 2.x releases. This extension adds support -for SQLite 3.x release. - -Please note that this project is still alpha-quality. Please test and report -if it works for you and if you have ideas on how it can be enhanced. - -Current (or planned) features include: - - * In-memory databases support - * UTF-16 encoding - * User-level SQL functions - * PEAR::DB driver class - -WWW: http://php-sqlite3.sourceforge.net/ |