summaryrefslogtreecommitdiff
path: root/databases
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2008-03-31 10:13:19 +0000
committerMartin Wilke <miwi@FreeBSD.org>2008-03-31 10:13:19 +0000
commit13b22fcba9b99a93e20e35d9e347f396900e28a8 (patch)
treebce20a2784e1db1d7fc23e094b1808b310af6fdb /databases
parent- Update to 1.5.0 (diff)
XML_Query2XML allows you to transform the records retrieved with one or
more SQL SELECT queries into XML data. Very simple to highly complex transformations are supported. Is was written with performance in mind and can handel large amounts of data. WWW: http://pear.php.net/package/XML_Query2XML PR: ports/122157 Submitted by: wenheping<wenheping at gmail.com>
Notes
Notes: svn path=/head/; revision=210222
Diffstat (limited to 'databases')
-rw-r--r--databases/Makefile1
-rw-r--r--databases/pear-XML_Query2XML/Makefile54
-rw-r--r--databases/pear-XML_Query2XML/distinfo3
-rw-r--r--databases/pear-XML_Query2XML/pkg-descr6
4 files changed, 64 insertions, 0 deletions
diff --git a/databases/Makefile b/databases/Makefile
index 107ab2120c50..6d034e370c52 100644
--- a/databases/Makefile
+++ b/databases/Makefile
@@ -357,6 +357,7 @@
SUBDIR += pear-Structures_DataGrid_DataSource_DataObject
SUBDIR += pear-Structures_DataGrid_DataSource_MDB2
SUBDIR += pear-Structures_DataGrid_DataSource_PDO
+ SUBDIR += pear-XML_Query2XML
SUBDIR += pecl-mdbtools
SUBDIR += pecl-memcache
SUBDIR += pecl-sqlite
diff --git a/databases/pear-XML_Query2XML/Makefile b/databases/pear-XML_Query2XML/Makefile
new file mode 100644
index 000000000000..4b42adf5d097
--- /dev/null
+++ b/databases/pear-XML_Query2XML/Makefile
@@ -0,0 +1,54 @@
+# Ports collection makefile for: pear-XML_Query2xml
+# Date created: 23 March 2008
+# Whom: wenheping<wenheping@gmail.com>
+#
+# $FreeBSD$
+#
+
+PORTNAME= XML_Query2XML
+PORTVERSION= 1.6.0
+CATEGORIES= databases pear
+
+MAINTAINER= wenheping@gmail.com
+COMMENT= PEAR class transform SQL queries into XML data
+
+BUILD_DEPENDS= ${PEARDIR}/DB.php:${PORTSDIR}/databases/pear-DB \
+ ${PEARDIR}/MDB2.php:${PORTSDIR}/databases/pear-MDB2
+RUN_DEPENDS= ${BUILD_DEPENDS}
+
+CATEGORY= XML
+FILES= XML/Query2XML.php XML/Query2XML/ISO9075Mapper.php \
+ XML/Query2XML/Callback.php \
+ XML/Query2XML/Command/Base64.php \
+ XML/Query2XML/Command/CDATA.php \
+ XML/Query2XML/Command/Chain.php \
+ XML/Query2XML/Command/ColumnValue.php \
+ XML/Query2XML/Command/NonEmpty.php \
+ XML/Query2XML/Command/PHPCallback.php \
+ XML/Query2XML/Command/Static.php \
+ XML/Query2XML/Command/Unserialize.php \
+ XML/Query2XML/Driver/ADOdb.php \
+ XML/Query2XML/Driver/DB.php \
+ XML/Query2XML/Driver/LDAP.php \
+ XML/Query2XML/Driver/MDB2.php \
+ XML/Query2XML/Driver/PDO.php
+
+DOCS= case01/case01.php case01/case01.xml case02/case02.log \
+ case02/case02.php case02/case02.profile \
+ case02/case02.xml case02/case02_debug.php \
+ case03/case03.log case03/case03.php case03/case03.profile \
+ case03/case03.xml case03/case03_debug.php \
+ case04/case04.log case04/case04.php case04/case04.profile \
+ case04/case04.xml case04/case04_debug.php case05/case05.log \
+ case05/case05.php case05/case05.profile case05/case05.xml \
+ case05/case05_debug.php case06/case06.log case06/case06.php \
+ case06/case06.profile case06/case06.xml case06/case06_debug.php \
+ case07/case07.log case07/case07.php case07/case07.profile \
+ case07/case07.xml case07/case07_debug.php case08/case08.log \
+ case08/case08.php case08/case08.profile case08/case08.xml \
+ case08/case08_debug.php
+_DOCSDIR= cases
+
+.include <bsd.port.pre.mk>
+.include "${PORTSDIR}/devel/pear/bsd.pear.mk"
+.include <bsd.port.post.mk>
diff --git a/databases/pear-XML_Query2XML/distinfo b/databases/pear-XML_Query2XML/distinfo
new file mode 100644
index 000000000000..ab4e903918c9
--- /dev/null
+++ b/databases/pear-XML_Query2XML/distinfo
@@ -0,0 +1,3 @@
+MD5 (PEAR/XML_Query2XML-1.6.0.tgz) = 505c4868d7bbb3173c884a83f0dccc34
+SHA256 (PEAR/XML_Query2XML-1.6.0.tgz) = e37fc2761a824f60a4145ac5c39dc51c7e1100f858ed8444feee22eb545cebf7
+SIZE (PEAR/XML_Query2XML-1.6.0.tgz) = 338286
diff --git a/databases/pear-XML_Query2XML/pkg-descr b/databases/pear-XML_Query2XML/pkg-descr
new file mode 100644
index 000000000000..802ff3a33193
--- /dev/null
+++ b/databases/pear-XML_Query2XML/pkg-descr
@@ -0,0 +1,6 @@
+XML_Query2XML allows you to transform the records retrieved with one or
+more SQL SELECT queries into XML data. Very simple to highly complex
+transformations are supported. Is was written with performance in mind
+and can handel large amounts of data.
+
+WWW: http://pear.php.net/package/XML_Query2XML