diff options
author | will <will@FreeBSD.org> | 2000-12-31 05:22:15 +0000 |
---|---|---|
committer | will <will@FreeBSD.org> | 2000-12-31 05:22:15 +0000 |
commit | 98ccd184662da55558fd0040f3d06e1d36b054af (patch) | |
tree | b7bfdccb5eeca3ca687da3b128aa44472c79dd0f | |
parent | 5c232e576d828cc9c70191d1f5e88bad64b4e005 (diff) | |
download | FreeBSD-ports-98ccd184662da55558fd0040f3d06e1d36b054af.zip FreeBSD-ports-98ccd184662da55558fd0040f3d06e1d36b054af.tar.gz |
Add p5-Text-FillIn 0.05, a Perl module (class) implementing a fill-in
template.
PR: 23929
Submitted by: Anton Berezin <tobez@tobez.org>
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/p5-Text-FillIn/Makefile | 23 | ||||
-rw-r--r-- | textproc/p5-Text-FillIn/distinfo | 1 | ||||
-rw-r--r-- | textproc/p5-Text-FillIn/pkg-comment | 1 | ||||
-rw-r--r-- | textproc/p5-Text-FillIn/pkg-descr | 11 | ||||
-rw-r--r-- | textproc/p5-Text-FillIn/pkg-plist | 5 |
6 files changed, 42 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index fc12e45..4b0f403 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -76,6 +76,7 @@ SUBDIR += p5-Text-Bind SUBDIR += p5-Text-CSV_XS SUBDIR += p5-Text-DoubleMetaphone + SUBDIR += p5-Text-FillIn SUBDIR += p5-Text-Template SUBDIR += p5-XML-DOM SUBDIR += p5-XML-Parser diff --git a/textproc/p5-Text-FillIn/Makefile b/textproc/p5-Text-FillIn/Makefile new file mode 100644 index 0000000..f8b76f3 --- /dev/null +++ b/textproc/p5-Text-FillIn/Makefile @@ -0,0 +1,23 @@ +# New ports collection makefile for: textproc/p5-Text-FillIn +# Date created: 29 December 2000 +# Whom: Anton Berezin <tobez@tobez.org> +# +# $FreeBSD$ +# + +PORTNAME= Text-FillIn +PORTVERSION= 0.05 +CATEGORIES= textproc perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN} +MASTER_SITE_SUBDIR= Text +PKGNAMEPREFIX= p5- + +MAINTAINER= tobez@tobez.org + +USE_PERL5= yes +PERL_CONFIGURE= yes + +MAN3= Text::FillIn.3 +MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} + +.include <bsd.port.mk> diff --git a/textproc/p5-Text-FillIn/distinfo b/textproc/p5-Text-FillIn/distinfo new file mode 100644 index 0000000..4b47534 --- /dev/null +++ b/textproc/p5-Text-FillIn/distinfo @@ -0,0 +1 @@ +MD5 (Text-FillIn-0.05.tar.gz) = 23d1cfcc132ac15d19c560be53c4f831 diff --git a/textproc/p5-Text-FillIn/pkg-comment b/textproc/p5-Text-FillIn/pkg-comment new file mode 100644 index 0000000..9973142 --- /dev/null +++ b/textproc/p5-Text-FillIn/pkg-comment @@ -0,0 +1 @@ +A class implementing a fill-in template diff --git a/textproc/p5-Text-FillIn/pkg-descr b/textproc/p5-Text-FillIn/pkg-descr new file mode 100644 index 0000000..cd84991 --- /dev/null +++ b/textproc/p5-Text-FillIn/pkg-descr @@ -0,0 +1,11 @@ +This is the Text::FillIn.pm module. It is a class for implementing +fill-in text templates. It is designed to be flexible and +sub-classible. + +You can specify the delimiters that mark sections of text to be filled +in (for example [[ and ]], or <!-- and -->, or { and } ... you get the +picture), and you can specify the actions to take when filling in those +sections. + +-Anton +<tobez@tobez.org> diff --git a/textproc/p5-Text-FillIn/pkg-plist b/textproc/p5-Text-FillIn/pkg-plist new file mode 100644 index 0000000..c611f7d --- /dev/null +++ b/textproc/p5-Text-FillIn/pkg-plist @@ -0,0 +1,5 @@ +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Text/FillIn/.packlist +lib/perl5/site_perl/%%PERL_VER%%/Text/FillIn.pm +@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Text/FillIn +@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Text 2>/dev/null || true +@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Text 2>/dev/null || true |