diff options
author | skv <skv@FreeBSD.org> | 2002-05-27 16:50:16 +0800 |
---|---|---|
committer | skv <skv@FreeBSD.org> | 2002-05-27 16:50:16 +0800 |
commit | 94c55a2c92b657bbf1a85b5831c9d7891d39f8be (patch) | |
tree | 84eb3b19f7db0cfd19ce66aecefd173cbc64b57c | |
parent | b36f8b0afd8a456d7db6670ef322be646b396d11 (diff) | |
download | freebsd-ports-gnome-94c55a2c92b657bbf1a85b5831c9d7891d39f8be.tar.gz freebsd-ports-gnome-94c55a2c92b657bbf1a85b5831c9d7891d39f8be.tar.zst freebsd-ports-gnome-94c55a2c92b657bbf1a85b5831c9d7891d39f8be.zip |
Add p5-XML-Filter-BufferText 0.01,
filter to put all characters()
in one event.
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/p5-XML-Filter-BufferText/Makefile | 25 | ||||
-rw-r--r-- | textproc/p5-XML-Filter-BufferText/distinfo | 1 | ||||
-rw-r--r-- | textproc/p5-XML-Filter-BufferText/pkg-comment | 1 | ||||
-rw-r--r-- | textproc/p5-XML-Filter-BufferText/pkg-descr | 10 | ||||
-rw-r--r-- | textproc/p5-XML-Filter-BufferText/pkg-plist | 7 |
6 files changed, 45 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index 174bd0ffa26e..dda402dba602 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -186,6 +186,7 @@ SUBDIR += p5-XML-Dumper SUBDIR += p5-XML-Encoding SUBDIR += p5-XML-Filter-Base + SUBDIR += p5-XML-Filter-BufferText SUBDIR += p5-XML-Filter-XSLT SUBDIR += p5-XML-Generator-DBI SUBDIR += p5-XML-Handler-Trees diff --git a/textproc/p5-XML-Filter-BufferText/Makefile b/textproc/p5-XML-Filter-BufferText/Makefile new file mode 100644 index 000000000000..8a15384eda86 --- /dev/null +++ b/textproc/p5-XML-Filter-BufferText/Makefile @@ -0,0 +1,25 @@ +# New ports collection makefile for: XML-Filter-BufferText +# Date created: 17 March 2002 +# Whom: Sergey Skvortsov <skv@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= XML-Filter-BufferText +PORTVERSION= 0.01 +CATEGORIES= textproc perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN} +MASTER_SITE_SUBDIR= XML +PKGNAMEPREFIX= p5- + +MAINTAINER= skv@FreeBSD.org + +RUN_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/XML/SAX.pm:${PORTSDIR}/textproc/p5-XML-SAX +BUILD_DEPENDS= ${RUN_DEPENDS} + +PERL_CONFIGURE= yes + +MAN3= XML::Filter::BufferText.3 +MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} + +.include <bsd.port.mk> diff --git a/textproc/p5-XML-Filter-BufferText/distinfo b/textproc/p5-XML-Filter-BufferText/distinfo new file mode 100644 index 000000000000..cbae4bf62764 --- /dev/null +++ b/textproc/p5-XML-Filter-BufferText/distinfo @@ -0,0 +1 @@ +MD5 (XML-Filter-BufferText-0.01.tar.gz) = b0ff14df8d235fc67c60c01d8ebd448a diff --git a/textproc/p5-XML-Filter-BufferText/pkg-comment b/textproc/p5-XML-Filter-BufferText/pkg-comment new file mode 100644 index 000000000000..7bbc50a524e5 --- /dev/null +++ b/textproc/p5-XML-Filter-BufferText/pkg-comment @@ -0,0 +1 @@ +Filter to put all characters() in one event diff --git a/textproc/p5-XML-Filter-BufferText/pkg-descr b/textproc/p5-XML-Filter-BufferText/pkg-descr new file mode 100644 index 000000000000..cd70d633ffe8 --- /dev/null +++ b/textproc/p5-XML-Filter-BufferText/pkg-descr @@ -0,0 +1,10 @@ +This is a very simple filter. One common cause of grief (and programmer +error) is that XML parsers aren't required to provide character events +in one chunk. They can, but are not forced to, and most don't. This +filter does the trivial but oft-repeated task of putting all characters +into a single event. + +WWW: http://search.cpan.org/search?dist=XML-Filter-BufferText + +-- Sergey Skvortsov +skv@FreeBSD.org diff --git a/textproc/p5-XML-Filter-BufferText/pkg-plist b/textproc/p5-XML-Filter-BufferText/pkg-plist new file mode 100644 index 000000000000..2949a5506b10 --- /dev/null +++ b/textproc/p5-XML-Filter-BufferText/pkg-plist @@ -0,0 +1,7 @@ +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/XML/Filter/BufferText/.packlist +lib/perl5/site_perl/%%PERL_VER%%/XML/Filter/BufferText.pm +@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/XML/Filter/BufferText +@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/XML/Filter 2>/dev/null || true +@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/XML 2>/dev/null || true +@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/XML/Filter 2>/dev/null || true +@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/XML 2>/dev/null || true |