diff options
author | Cheng-Lung Sung <clsung@FreeBSD.org> | 2006-08-22 07:08:15 +0000 |
---|---|---|
committer | Cheng-Lung Sung <clsung@FreeBSD.org> | 2006-08-22 07:08:15 +0000 |
commit | 0545f06ee3026af363d1194322fb4ef57fa9b1e6 (patch) | |
tree | a411f7bf1f8a9dbf37cbbcf3094db8d697bc61bd /textproc/p5-XML-DOM-Lite | |
parent | 373af94e47f1a137dcc0c60ce700d60579e6bb5f (diff) | |
download | ports-0545f06ee3026af363d1194322fb4ef57fa9b1e6.tar.gz ports-0545f06ee3026af363d1194322fb4ef57fa9b1e6.zip |
Add p5-XML-DOM-Lite 0.11, lite Pure Perl XML DOM Parser Kit.
PR: ports/102326
Submitted by: Gea-Suan Lin <gslin at gslin.org>
Notes
Notes:
svn path=/head/; revision=171153
Diffstat (limited to 'textproc/p5-XML-DOM-Lite')
-rw-r--r-- | textproc/p5-XML-DOM-Lite/Makefile | 30 | ||||
-rw-r--r-- | textproc/p5-XML-DOM-Lite/distinfo | 3 | ||||
-rw-r--r-- | textproc/p5-XML-DOM-Lite/pkg-descr | 16 | ||||
-rw-r--r-- | textproc/p5-XML-DOM-Lite/pkg-plist | 18 |
4 files changed, 67 insertions, 0 deletions
diff --git a/textproc/p5-XML-DOM-Lite/Makefile b/textproc/p5-XML-DOM-Lite/Makefile new file mode 100644 index 000000000000..a9be6c8a4d5c --- /dev/null +++ b/textproc/p5-XML-DOM-Lite/Makefile @@ -0,0 +1,30 @@ +# New ports collection makefile for: p5-XML-DOM-Lite +# Date created: 2006-08-20 +# Whom: Gea-Suan Lin <gslin@gslin.org> +# +# $FreeBSD$ +# + +PORTNAME= XML-DOM-Lite +PORTVERSION= 0.11 +CATEGORIES= textproc perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN} +MASTER_SITE_SUBDIR= XML +PKGNAMEPREFIX= p5- + +MAINTAINER= gslin@gslin.org +COMMENT= Lite Pure Perl XML DOM Parser Kit + +PERL_CONFIGURE= yes + +MAN3= XML::DOM::Lite.3 XML::DOM::Lite::Document.3 \ + XML::DOM::Lite::NodeList.3 XML::DOM::Lite::Parser.3 \ + XML::DOM::Lite::XPath.3 XML::DOM::Lite::XSLT.3 + +.include <bsd.port.pre.mk> + +.if ${PERL_LEVEL} < 500803 +IGNORE= requires Perl 5.8.3 or newer. Install lang/perl5.8 and try again +.endif + +.include <bsd.port.post.mk> diff --git a/textproc/p5-XML-DOM-Lite/distinfo b/textproc/p5-XML-DOM-Lite/distinfo new file mode 100644 index 000000000000..e60a810266e9 --- /dev/null +++ b/textproc/p5-XML-DOM-Lite/distinfo @@ -0,0 +1,3 @@ +MD5 (XML-DOM-Lite-0.11.tar.gz) = 87ee8f6aea8c821536ad23792e730cc1 +SHA256 (XML-DOM-Lite-0.11.tar.gz) = 11ea5a62e560e4640f6024404e2e1a6c9bb912e5c76b3051a556736837cb8259 +SIZE (XML-DOM-Lite-0.11.tar.gz) = 31550 diff --git a/textproc/p5-XML-DOM-Lite/pkg-descr b/textproc/p5-XML-DOM-Lite/pkg-descr new file mode 100644 index 000000000000..c331553be6c7 --- /dev/null +++ b/textproc/p5-XML-DOM-Lite/pkg-descr @@ -0,0 +1,16 @@ +XML::DOM::Lite is designed to be a reasonably fast, highly portable, +XML parser kit written in pure perl, implementing the DOM standard +quite closely. To keep performance up and footprint down. + +The standard pattern for using the XML::DOM::Lite parser kit is to use +XML::DOM::Lite qw(Parser :constants); + +Available exports are : Parser, Node, NodeList, NodeIterator, +NodeFilter, XPath, Document, XSLT and the constants. + +This is mostly for convenience, so that you can save your key-strokes +for the fun stuff. Alternatively, to avoid polluting your namespace, +you can simply : use XML::DOM::Lite::Parser; use +XML::DOM::Lite::Constants qw(:all); # ... etc + +WWW: http://search.cpan.org/dist/XML-DOM-Lite/ diff --git a/textproc/p5-XML-DOM-Lite/pkg-plist b/textproc/p5-XML-DOM-Lite/pkg-plist new file mode 100644 index 000000000000..75cc40248681 --- /dev/null +++ b/textproc/p5-XML-DOM-Lite/pkg-plist @@ -0,0 +1,18 @@ +@comment $FreeBSD$ +%%SITE_PERL%%/%%PERL_ARCH%%/auto/XML/DOM/Lite/.packlist +%%SITE_PERL%%/XML/DOM/Lite.pm +%%SITE_PERL%%/XML/DOM/Lite/Parser.pm +%%SITE_PERL%%/XML/DOM/Lite/XSLT.pm +%%SITE_PERL%%/XML/DOM/Lite/NodeList.pm +%%SITE_PERL%%/XML/DOM/Lite/NodeIterator.pm +%%SITE_PERL%%/XML/DOM/Lite/XPath.pm +%%SITE_PERL%%/XML/DOM/Lite/Serializer.pm +%%SITE_PERL%%/XML/DOM/Lite/Node.pm +%%SITE_PERL%%/XML/DOM/Lite/Constants.pm +%%SITE_PERL%%/XML/DOM/Lite/Document.pm +@dirrmtry %%SITE_PERL%%/XML/DOM/Lite +@dirrmtry %%SITE_PERL%%/XML/DOM +@dirrmtry %%SITE_PERL%%/XML +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/XML/DOM/Lite +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/XML/DOM +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/XML |