From a813072cd32c6e3b932ee8c31ebca8b65f127c5a Mon Sep 17 00:00:00 2001 From: Will Andrews Date: Tue, 26 Dec 2000 04:16:04 +0000 Subject: Add p5-XML-Writer 0.4, a simple perl module for writing XML documents; it takes care of constructing markup and escaping data correctly, among other useful features. PR: 23819 Submitted by: Adam Herzog --- textproc/Makefile | 1 + textproc/p5-XML-Writer/Makefile | 23 +++++++++++++++++++++++ textproc/p5-XML-Writer/distinfo | 1 + textproc/p5-XML-Writer/pkg-comment | 1 + textproc/p5-XML-Writer/pkg-descr | 9 +++++++++ textproc/p5-XML-Writer/pkg-plist | 4 ++++ 6 files changed, 39 insertions(+) create mode 100644 textproc/p5-XML-Writer/Makefile create mode 100644 textproc/p5-XML-Writer/distinfo create mode 100644 textproc/p5-XML-Writer/pkg-comment create mode 100644 textproc/p5-XML-Writer/pkg-descr create mode 100644 textproc/p5-XML-Writer/pkg-plist (limited to 'textproc') diff --git a/textproc/Makefile b/textproc/Makefile index 7084a255afd4..b808550d6d39 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -76,6 +76,7 @@ SUBDIR += p5-XML-Sablotron SUBDIR += p5-XML-Simple SUBDIR += p5-XML-Stream + SUBDIR += p5-XML-Writer SUBDIR += p5-XML-XPath SUBDIR += p5-dTemplate SUBDIR += par diff --git a/textproc/p5-XML-Writer/Makefile b/textproc/p5-XML-Writer/Makefile new file mode 100644 index 000000000000..44b637db6220 --- /dev/null +++ b/textproc/p5-XML-Writer/Makefile @@ -0,0 +1,23 @@ +# New ports collection makefile for: XML::Writer +# Date created: 24 December 2000 +# Whom: Adam Herzog +# +# $FreeBSD$ +# + +PORTNAME= XML-Writer +PORTVERSION= 0.4 +CATEGORIES= textproc perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN} +MASTER_SITE_SUBDIR= XML +PKGNAMEPREFIX= p5- + +MAINTAINER= ports@FreeBSD.org + +MAN3= XML::Writer.3 +MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} + +do-configure: + @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL + +.include diff --git a/textproc/p5-XML-Writer/distinfo b/textproc/p5-XML-Writer/distinfo new file mode 100644 index 000000000000..c39caf7b6c7f --- /dev/null +++ b/textproc/p5-XML-Writer/distinfo @@ -0,0 +1 @@ +MD5 (XML-Writer-0.4.tar.gz) = d07811beb3329ef6bbe7f50b52d242dd diff --git a/textproc/p5-XML-Writer/pkg-comment b/textproc/p5-XML-Writer/pkg-comment new file mode 100644 index 000000000000..19f04e81052a --- /dev/null +++ b/textproc/p5-XML-Writer/pkg-comment @@ -0,0 +1 @@ +A simple Perl module for writing XML documents diff --git a/textproc/p5-XML-Writer/pkg-descr b/textproc/p5-XML-Writer/pkg-descr new file mode 100644 index 000000000000..1253ee64efa3 --- /dev/null +++ b/textproc/p5-XML-Writer/pkg-descr @@ -0,0 +1,9 @@ +XML::Writer is a simple Perl module for writing XML documents: it +takes care of constructing markup and escaping data correctly, and by +default, it also performs a significant amount of well-formedness +checking on the output, to make certain (for example) that start and +end tags match, that there is exactly one document element, and that +there are not duplicate attribute names. + +-Adam + diff --git a/textproc/p5-XML-Writer/pkg-plist b/textproc/p5-XML-Writer/pkg-plist new file mode 100644 index 000000000000..1c1bc26aac2b --- /dev/null +++ b/textproc/p5-XML-Writer/pkg-plist @@ -0,0 +1,4 @@ +lib/perl5/site_perl/%%PERL_VER%%/XML/Writer.pm +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/XML/Writer/.packlist +@dirrm lib/perl5/site_perl/%%PERL_VER%%/XML +@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/XML/Writer -- cgit