Add pear-MDB2_Schema 0.7.0, PEAR XML based database schema manager.

This commit is contained in:
Rong-En Fan 2007-02-08 07:42:06 +00:00
parent 3550040743
commit c3422885aa
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=184557
4 changed files with 55 additions and 0 deletions

View file

@ -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

View file

@ -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>

View file

@ -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

View file

@ -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/