diff options
author | skv <skv@FreeBSD.org> | 2002-05-27 16:24:53 +0800 |
---|---|---|
committer | skv <skv@FreeBSD.org> | 2002-05-27 16:24:53 +0800 |
commit | 893cec3f8b68248f15d57529db8145b4daf3c355 (patch) | |
tree | 42ff422711fded6d13608b6abf3a4ca0af4125fe | |
parent | 1ba3ab24ec3ba9f80a8a941adf49f49d30e39417 (diff) | |
download | freebsd-ports-gnome-893cec3f8b68248f15d57529db8145b4daf3c355.tar.gz freebsd-ports-gnome-893cec3f8b68248f15d57529db8145b4daf3c355.tar.zst freebsd-ports-gnome-893cec3f8b68248f15d57529db8145b4daf3c355.zip |
Generate SAX events from SQL queries
Submitted by: Sergey Skvortsov <skv@FreeBSD.org>
AX events from SQL queries
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/p5-XML-Generator-DBI/Makefile | 26 | ||||
-rw-r--r-- | textproc/p5-XML-Generator-DBI/distinfo | 1 | ||||
-rw-r--r-- | textproc/p5-XML-Generator-DBI/pkg-comment | 1 | ||||
-rw-r--r-- | textproc/p5-XML-Generator-DBI/pkg-descr | 14 | ||||
-rw-r--r-- | textproc/p5-XML-Generator-DBI/pkg-plist | 7 |
6 files changed, 50 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index c29a5a87d17a..b6830acee9fe 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -186,6 +186,7 @@ SUBDIR += p5-XML-Dumper SUBDIR += p5-XML-Encoding SUBDIR += p5-XML-Filter-Base + SUBDIR += p5-XML-Generator-DBI SUBDIR += p5-XML-Handler-Trees SUBDIR += p5-XML-LibRSVG SUBDIR += p5-XML-LibXML diff --git a/textproc/p5-XML-Generator-DBI/Makefile b/textproc/p5-XML-Generator-DBI/Makefile new file mode 100644 index 000000000000..07ddbb3f22f9 --- /dev/null +++ b/textproc/p5-XML-Generator-DBI/Makefile @@ -0,0 +1,26 @@ +# New ports collection makefile for: XML::Generator::DBI +# Date created: 28 Jan 2002 +# Whom: Sergey Skvortsov <skv@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= XML-Generator-DBI +PORTVERSION= 0.03 +CATEGORIES= textproc databases perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN} +MASTER_SITE_SUBDIR= XML +PKGNAMEPREFIX= p5- + +MAINTAINER= skv@FreeBSD.org + +RUN_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/MIME/Base64.pm:${PORTSDIR}/converters/p5-MIME-Base64 +BUILD_DEPENDS= ${RUN_DEPENDS} + +PERL_CONFIGURE= yes + +MAN3= XML::Generator::DBI.3 + +MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} + +.include <bsd.port.mk> diff --git a/textproc/p5-XML-Generator-DBI/distinfo b/textproc/p5-XML-Generator-DBI/distinfo new file mode 100644 index 000000000000..39c6e33ba1a3 --- /dev/null +++ b/textproc/p5-XML-Generator-DBI/distinfo @@ -0,0 +1 @@ +MD5 (XML-Generator-DBI-0.03.tar.gz) = 273a28cd195f9e23c0d098f69ab72bd9 diff --git a/textproc/p5-XML-Generator-DBI/pkg-comment b/textproc/p5-XML-Generator-DBI/pkg-comment new file mode 100644 index 000000000000..d3ddfea459f0 --- /dev/null +++ b/textproc/p5-XML-Generator-DBI/pkg-comment @@ -0,0 +1 @@ +Generate SAX events from SQL queries diff --git a/textproc/p5-XML-Generator-DBI/pkg-descr b/textproc/p5-XML-Generator-DBI/pkg-descr new file mode 100644 index 000000000000..6e5c03acca8d --- /dev/null +++ b/textproc/p5-XML-Generator-DBI/pkg-descr @@ -0,0 +1,14 @@ +This module generates SAX events from SQL queries against a DBI +connection. + +It is a replacement for the outdated DBIx::XML_RDB module. Unlike +DBIx::XML_RDB, it does not create a string directly, instead you have to +use some sort of SAX handler module. If you wish to create a string or +write to a file, use YAWriter. Alternatively you might want to generate +a DOM tree or XML::XPath tree, which you can do with either of those +module's SAX handlers (known as Builders in those distributions). + +WWW: http://search.cpan.org/search?dist=XML-Generator-DBI + +-- Sergey Skvortsov +skv@FreeBSD.org diff --git a/textproc/p5-XML-Generator-DBI/pkg-plist b/textproc/p5-XML-Generator-DBI/pkg-plist new file mode 100644 index 000000000000..9baf020804c1 --- /dev/null +++ b/textproc/p5-XML-Generator-DBI/pkg-plist @@ -0,0 +1,7 @@ +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/XML/Generator/DBI/.packlist +lib/perl5/site_perl/%%PERL_VER%%/XML/Generator/DBI.pm +@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/XML/Generator 2>/dev/null || true +@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/XML 2>/dev/null || true +@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/XML/Generator/DBI +@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/XML/Generator 2>/dev/null || true +@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/XML 2>/dev/null || true |