diff options
author | jdolecek <jdolecek> | 2004-11-05 21:01:46 +0000 |
---|---|---|
committer | jdolecek <jdolecek> | 2004-11-05 21:01:46 +0000 |
commit | 21eaf731418f121aeeeaecde33e7ae31a12223e9 (patch) | |
tree | ec3b99add4d88c3d29e09515c3c2bf3d84c96c10 /databases/php-dbx | |
parent | b7d00e9eb6ab341aa57c257453af382ef64b551c (diff) | |
download | pkgsrc-21eaf731418f121aeeeaecde33e7ae31a12223e9.tar.gz |
Add php-dbx package - PHP database abstraction layer extension. This is
for both PHP 4.x and 5.x.
Diffstat (limited to 'databases/php-dbx')
-rw-r--r-- | databases/php-dbx/DESCR | 9 | ||||
-rw-r--r-- | databases/php-dbx/Makefile | 13 |
2 files changed, 22 insertions, 0 deletions
diff --git a/databases/php-dbx/DESCR b/databases/php-dbx/DESCR new file mode 100644 index 00000000000..7060e66e7df --- /dev/null +++ b/databases/php-dbx/DESCR @@ -0,0 +1,9 @@ +PHP is a programming language designed to be embedded into web pages. + +The dbx module is a database abstraction layer (db 'X', where 'X' +is a supported database). The dbx functions allow you to access +all supported databases using a single calling convention. The +dbx-functions themselves do not interface directly to the databases, +but interface to the modules that are used to support these databases. + +Supported databases include MSSQL, MySQL, ODBC, PostgreSQL, and SQLite. diff --git a/databases/php-dbx/Makefile b/databases/php-dbx/Makefile new file mode 100644 index 00000000000..59af49eb1c6 --- /dev/null +++ b/databases/php-dbx/Makefile @@ -0,0 +1,13 @@ +# $NetBSD: Makefile,v 1.1.1.1 2004/11/05 21:01:46 jdolecek Exp $ + +MODNAME= dbx +CATEGORIES+= databases +PKGREVISION= # empty +COMMENT= PHP database abstraction layer extension + +MAINTAINER= jdolecek@NetBSD.org + +USE_BUILDLINK3= yes + +.include "../../lang/php/ext.mk" +.include "../../mk/bsd.pkg.mk" |