mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
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>
This commit is contained in:
parent
f9d8200c73
commit
13b22fcba9
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=210222
4 changed files with 64 additions and 0 deletions
|
@ -357,6 +357,7 @@
|
||||||
SUBDIR += pear-Structures_DataGrid_DataSource_DataObject
|
SUBDIR += pear-Structures_DataGrid_DataSource_DataObject
|
||||||
SUBDIR += pear-Structures_DataGrid_DataSource_MDB2
|
SUBDIR += pear-Structures_DataGrid_DataSource_MDB2
|
||||||
SUBDIR += pear-Structures_DataGrid_DataSource_PDO
|
SUBDIR += pear-Structures_DataGrid_DataSource_PDO
|
||||||
|
SUBDIR += pear-XML_Query2XML
|
||||||
SUBDIR += pecl-mdbtools
|
SUBDIR += pecl-mdbtools
|
||||||
SUBDIR += pecl-memcache
|
SUBDIR += pecl-memcache
|
||||||
SUBDIR += pecl-sqlite
|
SUBDIR += pecl-sqlite
|
||||||
|
|
54
databases/pear-XML_Query2XML/Makefile
Normal file
54
databases/pear-XML_Query2XML/Makefile
Normal file
|
@ -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>
|
3
databases/pear-XML_Query2XML/distinfo
Normal file
3
databases/pear-XML_Query2XML/distinfo
Normal file
|
@ -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
|
6
databases/pear-XML_Query2XML/pkg-descr
Normal file
6
databases/pear-XML_Query2XML/pkg-descr
Normal file
|
@ -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
|
Loading…
Add table
Reference in a new issue