Add php5-creole 1.0.2, database abstraction layer for PHP5.

This commit is contained in:
Jun Kuriyama 2006-03-22 09:16:14 +00:00
parent fad989fedf
commit 89bea34e89
5 changed files with 141 additions and 0 deletions

View file

@ -305,6 +305,7 @@
SUBDIR += php4-oracle
SUBDIR += php4-pgsql
SUBDIR += php4-sybase_ct
SUBDIR += php5-creole
SUBDIR += php5-dba
SUBDIR += php5-dbase
SUBDIR += php5-filepro

View file

@ -0,0 +1,31 @@
# New ports collection makefile for: php5-creole
# Date Created: 9 Nov, 2005
# Whom: Jun Kuriyama <kuriyama@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= creole
PORTVERSION= 1.0.2
CATEGORIES= databases pear
MASTER_SITES= http://creole.tigris.org/files/documents/996/22124/ \
http://dist.bsdlab.org/
PKGNAMEPREFIX= php5-
MAINTAINER= kuriyama@FreeBSD.org
COMMENT= Database abstraction layer for PHP5
USE_PHP= yes
DEFAULT_PHP_VER=5
NO_BUILD= yes
do-install:
cd ${WRKSRC}/classes; \
for d in `${FIND} creole jargon -type d`; do \
${INSTALL} -d ${PREFIX}/lib/php/$$d; \
done; \
for i in `${FIND} creole jargon -type f`; do \
${INSTALL_DATA} $$i ${PREFIX}/lib/php/$$i; \
done
.include <bsd.port.mk>

View file

@ -0,0 +1,3 @@
MD5 (creole-1.0.2.tar.gz) = f5985f02150334748ae442ba3b9638b5
SHA256 (creole-1.0.2.tar.gz) = 1992f44a1eb81dd24f12283c7e0974866631bd58f43e3e4854a65d5c15339db2
SIZE (creole-1.0.2.tar.gz) = 180122

View file

@ -0,0 +1,7 @@
Creole is a database abstraction layer for PHP5.
It abstracts PHP's native db-specific API to create more portable code
while also providing developers with a clean fully object-oriented
interface based loosely on the API for Java's JDBC.
WWW: http://creole.phpdb.org/

View file

@ -0,0 +1,99 @@
lib/php/creole/CallableStatement.php
lib/php/creole/Connection.php
lib/php/creole/Creole.php
lib/php/creole/CreoleTypes.php
lib/php/creole/IdGenerator.php
lib/php/creole/PreparedStatement.php
lib/php/creole/ResultSet.php
lib/php/creole/ResultSetIterator.php
lib/php/creole/SQLException.php
lib/php/creole/Statement.php
lib/php/creole/common/ConnectionCommon.php
lib/php/creole/common/PreparedStatementCommon.php
lib/php/creole/common/ResultSetCommon.php
lib/php/creole/common/StatementCommon.php
lib/php/creole/drivers/mssql/MSSQLCallableStatement.php
lib/php/creole/drivers/mssql/MSSQLConnection.php
lib/php/creole/drivers/mssql/MSSQLIdGenerator.php
lib/php/creole/drivers/mssql/MSSQLPreparedStatement.php
lib/php/creole/drivers/mssql/MSSQLResultSet.php
lib/php/creole/drivers/mssql/MSSQLStatement.php
lib/php/creole/drivers/mssql/MSSQLTypes.php
lib/php/creole/drivers/mssql/metadata/MSSQLDatabaseInfo.php
lib/php/creole/drivers/mssql/metadata/MSSQLTableInfo.php
lib/php/creole/drivers/mysql/MySQLConnection.php
lib/php/creole/drivers/mysql/MySQLIdGenerator.php
lib/php/creole/drivers/mysql/MySQLPreparedStatement.php
lib/php/creole/drivers/mysql/MySQLResultSet.php
lib/php/creole/drivers/mysql/MySQLStatement.php
lib/php/creole/drivers/mysql/MySQLTypes.php
lib/php/creole/drivers/mysql/metadata/MySQLDatabaseInfo.php
lib/php/creole/drivers/mysql/metadata/MySQLTableInfo.php
lib/php/creole/drivers/odbc/ODBCCachedResultSet.php
lib/php/creole/drivers/odbc/ODBCConnection.php
lib/php/creole/drivers/odbc/ODBCIdGenerator.php
lib/php/creole/drivers/odbc/ODBCPreparedStatement.php
lib/php/creole/drivers/odbc/ODBCResultSet.php
lib/php/creole/drivers/odbc/ODBCResultSetCommon.php
lib/php/creole/drivers/odbc/ODBCStatement.php
lib/php/creole/drivers/odbc/ODBCTypes.php
lib/php/creole/drivers/odbc/README
lib/php/creole/drivers/odbc/adapters/CodeBaseAdapter.php
lib/php/creole/drivers/odbc/adapters/MySQLAdapter.php
lib/php/creole/drivers/odbc/adapters/ODBCAdapter.php
lib/php/creole/drivers/odbc/metadata/ODBCDatabaseInfo.php
lib/php/creole/drivers/odbc/metadata/ODBCTableInfo.php
lib/php/creole/drivers/pgsql/PgSQLConnection.php
lib/php/creole/drivers/pgsql/PgSQLIdGenerator.php
lib/php/creole/drivers/pgsql/PgSQLPreparedStatement.php
lib/php/creole/drivers/pgsql/PgSQLResultSet.php
lib/php/creole/drivers/pgsql/PgSQLResultSetIterator.php
lib/php/creole/drivers/pgsql/PgSQLStatement.php
lib/php/creole/drivers/pgsql/PgSQLTypes.php
lib/php/creole/drivers/pgsql/metadata/PgSQLDatabaseInfo.php
lib/php/creole/drivers/pgsql/metadata/PgSQLTableInfo.php
lib/php/creole/drivers/sqlite/SQLiteConnection.php
lib/php/creole/drivers/sqlite/SQLiteIdGenerator.php
lib/php/creole/drivers/sqlite/SQLitePreparedStatement.php
lib/php/creole/drivers/sqlite/SQLiteResultSet.php
lib/php/creole/drivers/sqlite/SQLiteResultSetIterator.php
lib/php/creole/drivers/sqlite/SQLiteStatement.php
lib/php/creole/drivers/sqlite/SQLiteTypes.php
lib/php/creole/drivers/sqlite/metadata/SQLiteDatabaseInfo.php
lib/php/creole/drivers/sqlite/metadata/SQLiteTableInfo.php
lib/php/creole/metadata/ColumnInfo.php
lib/php/creole/metadata/DatabaseInfo.php
lib/php/creole/metadata/ForeignKeyInfo.php
lib/php/creole/metadata/IndexInfo.php
lib/php/creole/metadata/PrimaryKeyInfo.php
lib/php/creole/metadata/TableInfo.php
lib/php/creole/util/Blob.php
lib/php/creole/util/Clob.php
lib/php/creole/util/Lob.php
lib/php/creole/util/sql/SQLStatementExtractor.php
lib/php/jargon/DataSet.php
lib/php/jargon/DataSetException.php
lib/php/jargon/KeyDef.php
lib/php/jargon/PagedQuery.php
lib/php/jargon/Query.php
lib/php/jargon/QueryDataSet.php
lib/php/jargon/Record.php
lib/php/jargon/TableDataSet.php
@dirrm lib/php/creole/util/sql
@dirrm lib/php/creole/util
@dirrm lib/php/creole/metadata
@dirrm lib/php/creole/drivers/sqlite/metadata
@dirrm lib/php/creole/drivers/sqlite
@dirrm lib/php/creole/drivers/pgsql/metadata
@dirrm lib/php/creole/drivers/pgsql
@dirrm lib/php/creole/drivers/odbc/metadata
@dirrm lib/php/creole/drivers/odbc/adapters
@dirrm lib/php/creole/drivers/odbc
@dirrm lib/php/creole/drivers/mysql/metadata
@dirrm lib/php/creole/drivers/mysql
@dirrm lib/php/creole/drivers/mssql/metadata
@dirrm lib/php/creole/drivers/mssql
@dirrm lib/php/creole/drivers
@dirrm lib/php/creole/common
@dirrm lib/php/creole
@dirrm lib/php/jargon