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>
This commit is contained in:
parent
373af94e47
commit
0545f06ee3
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=171153
5 changed files with 68 additions and 0 deletions
|
@ -559,6 +559,7 @@
|
|||
SUBDIR += p5-XML-Clean
|
||||
SUBDIR += p5-XML-DBMS
|
||||
SUBDIR += p5-XML-DOM
|
||||
SUBDIR += p5-XML-DOM-Lite
|
||||
SUBDIR += p5-XML-DOM-XPath
|
||||
SUBDIR += p5-XML-DOM2
|
||||
SUBDIR += p5-XML-DT
|
||||
|
|
30
textproc/p5-XML-DOM-Lite/Makefile
Normal file
30
textproc/p5-XML-DOM-Lite/Makefile
Normal file
|
@ -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>
|
3
textproc/p5-XML-DOM-Lite/distinfo
Normal file
3
textproc/p5-XML-DOM-Lite/distinfo
Normal file
|
@ -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
|
16
textproc/p5-XML-DOM-Lite/pkg-descr
Normal file
16
textproc/p5-XML-DOM-Lite/pkg-descr
Normal file
|
@ -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/
|
18
textproc/p5-XML-DOM-Lite/pkg-plist
Normal file
18
textproc/p5-XML-DOM-Lite/pkg-plist
Normal file
|
@ -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
|
Loading…
Reference in a new issue