diff options
author | rafan <rafan@FreeBSD.org> | 2007-02-08 15:42:06 +0800 |
---|---|---|
committer | rafan <rafan@FreeBSD.org> | 2007-02-08 15:42:06 +0800 |
commit | d29302b1a3d1d4c34b489cad5b9829cf8762fed2 (patch) | |
tree | b9e03fc8ebfc5ec149f903c2d548ddec1c241d4b | |
parent | 8be553fbfab6690678af5e7166812855e7a8a3ae (diff) | |
download | freebsd-ports-gnome-d29302b1a3d1d4c34b489cad5b9829cf8762fed2.tar.gz freebsd-ports-gnome-d29302b1a3d1d4c34b489cad5b9829cf8762fed2.tar.zst freebsd-ports-gnome-d29302b1a3d1d4c34b489cad5b9829cf8762fed2.zip |
Add pear-MDB2_Schema 0.7.0, PEAR XML based database schema manager.
-rw-r--r-- | databases/Makefile | 1 | ||||
-rw-r--r-- | databases/pear-MDB2_Schema/Makefile | 44 | ||||
-rw-r--r-- | databases/pear-MDB2_Schema/distinfo | 3 | ||||
-rw-r--r-- | databases/pear-MDB2_Schema/pkg-descr | 7 |
4 files changed, 55 insertions, 0 deletions
diff --git a/databases/Makefile b/databases/Makefile index e956552684c1..3ef495999506 100644 --- a/databases/Makefile +++ b/databases/Makefile @@ -325,6 +325,7 @@ SUBDIR += pear-MDB2_Driver_mysqli SUBDIR += pear-MDB2_Driver_pgsql SUBDIR += pear-MDB2_Driver_sqlite + SUBDIR += pear-MDB2_Schema SUBDIR += pear-MDB_QueryTool SUBDIR += pecl-PDO SUBDIR += pecl-PDO_DBLIB diff --git a/databases/pear-MDB2_Schema/Makefile b/databases/pear-MDB2_Schema/Makefile new file mode 100644 index 000000000000..8d2e4b02d092 --- /dev/null +++ b/databases/pear-MDB2_Schema/Makefile @@ -0,0 +1,44 @@ +# New ports collection makefile for: pear-MDB2_Schema +# Date created: 08 Feb 2007 +# Whom: Rong-En Fan <rafan@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= MDB2_Schema +PORTVERSION= 0.7.0 +CATEGORIES= databases www pear + +MAINTAINER= rafan@FreeBSD.org +COMMENT= PEAR XML based database schema manager + +BUILD_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear \ + ${PEARDIR}/MDB2.php:${PORTSDIR}/databases/pear-MDB2 \ + ${PEARDIR}/XML/Parser.php:${PORTSDIR}/devel/pear-XML_Parser \ + ${PEARDIR}/XML/DTD.php:${PORTSDIR}/textproc/pear-XML_DTD +RUN_DEPENDS= ${BUILD_DEPENDS} + +FILES= MDB2/Schema/Reserved/ibase.php \ + MDB2/Schema/Reserved/mssql.php \ + MDB2/Schema/Reserved/mysql.php \ + MDB2/Schema/Reserved/oci8.php \ + MDB2/Schema/Reserved/pgsql.php \ + MDB2/Schema/Parser.php \ + MDB2/Schema/Validate.php \ + MDB2/Schema/Writer.php \ + MDB2/Schema.php + +TESTS= Console_TestListener.php HTML_TestListener.php \ + MDB2_Schema_testcase.php README clitest.php driver_test.schema \ + lob_test.schema test.php testUtils.php test_setup.php.dist \ + testchoose.php tests.css + +DOCS= description.schema.xml MDB.dtd MDB.xsd MDB.xsl schema2html.css \ + schema2html.xsl xml_schema_documentation.html + +EXAMPLES= example.php parse.php schema.xml +_EXAMPLESDIR= docs/examples + +.include <bsd.port.pre.mk> +.include "${PORTSDIR}/devel/pear/bsd.pear.mk" +.include <bsd.port.post.mk> diff --git a/databases/pear-MDB2_Schema/distinfo b/databases/pear-MDB2_Schema/distinfo new file mode 100644 index 000000000000..7404307318dc --- /dev/null +++ b/databases/pear-MDB2_Schema/distinfo @@ -0,0 +1,3 @@ +MD5 (PEAR/MDB2_Schema-0.7.0.tgz) = ba4755d17d2d696de60ff4f218a9b107 +SHA256 (PEAR/MDB2_Schema-0.7.0.tgz) = bc2b234bef80f0875e4dcebf1d2ce27444642c7f3e28a7483e97b0361a46eb33 +SIZE (PEAR/MDB2_Schema-0.7.0.tgz) = 59701 diff --git a/databases/pear-MDB2_Schema/pkg-descr b/databases/pear-MDB2_Schema/pkg-descr new file mode 100644 index 000000000000..5d52cb338009 --- /dev/null +++ b/databases/pear-MDB2_Schema/pkg-descr @@ -0,0 +1,7 @@ +PEAR::MDB2_Schema enables users to maintain RDBMS independant schema +files in XML that can be used to create, alter and drop database entities +and insert data into a database. Reverse engineering database schemas from +existing databases is also supported. The format is compatible with both +PEAR::MDB and Metabase. + +WWW: http://pear.php.net/package/MDB2_Schema/ |