From 7cf7d9be7babd18ef17834cb8f635d5281625f8e Mon Sep 17 00:00:00 2001 From: amdmi3 Date: Wed, 5 Aug 2009 00:39:35 +0000 Subject: This module creates a layer on top of DOM that allows you to program in a "push" style rather than "pull". Once the document has been parsed and you have a DOM object, you can call on the DOMHandler's traverse() method to apply a set of call-back routines to all the nodes in a tree. WWW: http://search.cpan.org/dist/XML-DOMHandler-1.0/ PR: 137424 Submitted by: Stefan Pauly --- textproc/Makefile | 1 + textproc/p5-XML-DOMHandler/Makefile | 21 +++++++++++++++++++++ textproc/p5-XML-DOMHandler/distinfo | 3 +++ textproc/p5-XML-DOMHandler/pkg-descr | 6 ++++++ textproc/p5-XML-DOMHandler/pkg-plist | 5 +++++ 5 files changed, 36 insertions(+) create mode 100644 textproc/p5-XML-DOMHandler/Makefile create mode 100644 textproc/p5-XML-DOMHandler/distinfo create mode 100644 textproc/p5-XML-DOMHandler/pkg-descr create mode 100644 textproc/p5-XML-DOMHandler/pkg-plist (limited to 'textproc') diff --git a/textproc/Makefile b/textproc/Makefile index 3f5f4761c282..2378e97b9ebf 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -731,6 +731,7 @@ SUBDIR += p5-XML-DOM-Lite SUBDIR += p5-XML-DOM-XPath SUBDIR += p5-XML-DOM2 + SUBDIR += p5-XML-DOMHandler SUBDIR += p5-XML-DT SUBDIR += p5-XML-DTDParser SUBDIR += p5-XML-DifferenceMarkup diff --git a/textproc/p5-XML-DOMHandler/Makefile b/textproc/p5-XML-DOMHandler/Makefile new file mode 100644 index 000000000000..8b6951111aa5 --- /dev/null +++ b/textproc/p5-XML-DOMHandler/Makefile @@ -0,0 +1,21 @@ +# New ports collection makefile for: XML-DOMHandler +# Date created: 4 August 2009 +# Whom: Stefan Pauly +# +# $FreeBSD$ +# + +PORTNAME= XML-DOMHandler +PORTVERSION= 1.0 +CATEGORIES= textproc perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= stefan@fh-mainz.de +COMMENT= A call-back interface to DOM + +PERL_CONFIGURE= yes + +MAN3= XML::DOMHandler.3 + +.include diff --git a/textproc/p5-XML-DOMHandler/distinfo b/textproc/p5-XML-DOMHandler/distinfo new file mode 100644 index 000000000000..529934935cb6 --- /dev/null +++ b/textproc/p5-XML-DOMHandler/distinfo @@ -0,0 +1,3 @@ +MD5 (XML-DOMHandler-1.0.tar.gz) = 6dd4dcfed53eb23976c82d097225b430 +SHA256 (XML-DOMHandler-1.0.tar.gz) = 7c7041533ec8a401dcc55b52dc7b28c56d971d941ee3698127c67f2f0242812a +SIZE (XML-DOMHandler-1.0.tar.gz) = 3708 diff --git a/textproc/p5-XML-DOMHandler/pkg-descr b/textproc/p5-XML-DOMHandler/pkg-descr new file mode 100644 index 000000000000..0bb0b9071c8d --- /dev/null +++ b/textproc/p5-XML-DOMHandler/pkg-descr @@ -0,0 +1,6 @@ +This module creates a layer on top of DOM that allows you to program +in a "push" style rather than "pull". Once the document has been parsed +and you have a DOM object, you can call on the DOMHandler's traverse() +method to apply a set of call-back routines to all the nodes in a tree. + +WWW: http://search.cpan.org/dist/XML-DOMHandler-1.0/ diff --git a/textproc/p5-XML-DOMHandler/pkg-plist b/textproc/p5-XML-DOMHandler/pkg-plist new file mode 100644 index 000000000000..eb86ed6b28c8 --- /dev/null +++ b/textproc/p5-XML-DOMHandler/pkg-plist @@ -0,0 +1,5 @@ +%%SITE_PERL%%/%%PERL_ARCH%%/auto/XML/DOMHandler/.packlist +%%SITE_PERL%%/XML/DOMHandler.pm +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/XML/DOMHandler +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/XML +@dirrmtry %%SITE_PERL%%/XML -- cgit