diff options
author | wen <wen@FreeBSD.org> | 2009-10-21 07:51:38 +0800 |
---|---|---|
committer | wen <wen@FreeBSD.org> | 2009-10-21 07:51:38 +0800 |
commit | f7cf0260e9ea2cb804bbff87dc057d97e2905f65 (patch) | |
tree | ed5839bd658f1f3fec6447dd6bca3a887ac61dad /textproc | |
parent | af1611fd268cb728a8453c57eebbe750f592bdac (diff) | |
download | freebsd-ports-gnome-f7cf0260e9ea2cb804bbff87dc057d97e2905f65.tar.gz freebsd-ports-gnome-f7cf0260e9ea2cb804bbff87dc057d97e2905f65.tar.zst freebsd-ports-gnome-f7cf0260e9ea2cb804bbff87dc057d97e2905f65.zip |
XML::Reader provides a simple and easy to use interface for
sequentially parsing XML files (so called "pull-mode" parsing)
and at the same time keeps track of the complete XML-path.
It was developped as a wrapper on top of XML::Parser.
WWW: http://search.cpan.org/dist/XML-Reader/
Approved by: mentors(implicit)
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/p5-XML-Reader/Makefile | 24 | ||||
-rw-r--r-- | textproc/p5-XML-Reader/distinfo | 3 | ||||
-rw-r--r-- | textproc/p5-XML-Reader/pkg-descr | 7 | ||||
-rw-r--r-- | textproc/p5-XML-Reader/pkg-plist | 5 |
5 files changed, 40 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index b7f993dc3ef0..7661a8208c88 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -795,6 +795,7 @@ SUBDIR += p5-XML-Parser-Style-Elemental SUBDIR += p5-XML-Quote SUBDIR += p5-XML-RAI + SUBDIR += p5-XML-Reader SUBDIR += p5-XML-RSS SUBDIR += p5-XML-RSS-Feed SUBDIR += p5-XML-RSS-JavaScript diff --git a/textproc/p5-XML-Reader/Makefile b/textproc/p5-XML-Reader/Makefile new file mode 100644 index 000000000000..af4cac4a3d7c --- /dev/null +++ b/textproc/p5-XML-Reader/Makefile @@ -0,0 +1,24 @@ +# New ports collection makefile for: p5-XML-Reader +# Date created: 20 Oct, 2009 +# Whom: Wen Heping <wen@FreeBSD.org> +# +# $FreeBSD$ + +PORTNAME= XML-Reader +PORTVERSION= 0.28 +CATEGORIES= textproc perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR= ../../authors/id/K/KE/KEICHNER/ +PKGNAMEPREFIX= p5- + +MAINTAINER= wen@FreeBSD.org +COMMENT= Reading XML and providing path information based on a pull-parser + +RUN_DEPENDS= p5-XML-Parser>=0:${PORTSDIR}/textproc/p5-XML-Parser +BUILD_DEPENDS= ${RUN_DEPENDS} + +PERL_CONFIGURE= yes + +MAN3= XML::Reader.3 + +.include <bsd.port.mk> diff --git a/textproc/p5-XML-Reader/distinfo b/textproc/p5-XML-Reader/distinfo new file mode 100644 index 000000000000..ca5aca0c3575 --- /dev/null +++ b/textproc/p5-XML-Reader/distinfo @@ -0,0 +1,3 @@ +MD5 (XML-Reader-0.28.tar.gz) = a7764d1d683a6fe55309d55a65b02916 +SHA256 (XML-Reader-0.28.tar.gz) = d248cb7288cec94b0fc83907ef719459e23c6177894e9637ce80457001e8c216 +SIZE (XML-Reader-0.28.tar.gz) = 26442 diff --git a/textproc/p5-XML-Reader/pkg-descr b/textproc/p5-XML-Reader/pkg-descr new file mode 100644 index 000000000000..047af726298a --- /dev/null +++ b/textproc/p5-XML-Reader/pkg-descr @@ -0,0 +1,7 @@ +XML::Reader provides a simple and easy to use interface for +sequentially parsing XML files (so called "pull-mode" parsing) +and at the same time keeps track of the complete XML-path. + +It was developped as a wrapper on top of XML::Parser. + +WWW: http://search.cpan.org/dist/XML-Reader/ diff --git a/textproc/p5-XML-Reader/pkg-plist b/textproc/p5-XML-Reader/pkg-plist new file mode 100644 index 000000000000..c8e7b765e72b --- /dev/null +++ b/textproc/p5-XML-Reader/pkg-plist @@ -0,0 +1,5 @@ +%%SITE_PERL%%/XML/Reader.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/XML/Reader/.packlist +@dirrmtry %%SITE_PERL%%/XML +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/XML/Reader +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/XML |