diff options
author | kevlo <kevlo@FreeBSD.org> | 2002-02-15 07:19:26 +0000 |
---|---|---|
committer | kevlo <kevlo@FreeBSD.org> | 2002-02-15 07:19:26 +0000 |
commit | 3091bbfc7a30abfdb14b7ae9b1bc05a08893472d (patch) | |
tree | fecc88ded8c1970072519de2b56d4ed67f4c666f /textproc/p5-Text-FormatTable | |
parent | 4d3d2559f2aa6060d162e050b4dddf2bc00c8b45 (diff) | |
download | FreeBSD-ports-3091bbfc7a30abfdb14b7ae9b1bc05a08893472d.zip FreeBSD-ports-3091bbfc7a30abfdb14b7ae9b1bc05a08893472d.tar.gz |
Initial import of p5-Text-FormatTable
Text::FormatTable renders simple tables as text. You pass to the constructor
a table format specification similar to LaTeX (e.g. "r|l|l") and you call
methods to fill the table data and insert rules. After the data is filled,
you render the table as text.
PR: 34257
Submitted by: Seamus Venasse <svenasse@polaris.ca>
Diffstat (limited to 'textproc/p5-Text-FormatTable')
-rw-r--r-- | textproc/p5-Text-FormatTable/Makefile | 22 | ||||
-rw-r--r-- | textproc/p5-Text-FormatTable/distinfo | 1 | ||||
-rw-r--r-- | textproc/p5-Text-FormatTable/pkg-comment | 1 | ||||
-rw-r--r-- | textproc/p5-Text-FormatTable/pkg-descr | 8 | ||||
-rw-r--r-- | textproc/p5-Text-FormatTable/pkg-plist | 6 |
5 files changed, 38 insertions, 0 deletions
diff --git a/textproc/p5-Text-FormatTable/Makefile b/textproc/p5-Text-FormatTable/Makefile new file mode 100644 index 0000000..b2649af --- /dev/null +++ b/textproc/p5-Text-FormatTable/Makefile @@ -0,0 +1,22 @@ +# New ports collection makefile for: Text::FormatTable +# Date created: 24 Jan 2002 +# Whom: Seamus Venasse <svenasse@polaris.ca> +# +# $FreeBSD$ +# + +PORTNAME= Text-FormatTable +PORTVERSION= 0.01 +CATEGORIES= textproc perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN} +MASTER_SITE_SUBDIR= Text +PKGNAMEPREFIX= p5- + +MAINTAINER= svenasse@polaris.ca + +PERL_CONFIGURE= yes + +MAN3= Text::FormatTable.3 +MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} + +.include <bsd.port.mk> diff --git a/textproc/p5-Text-FormatTable/distinfo b/textproc/p5-Text-FormatTable/distinfo new file mode 100644 index 0000000..ddd248b --- /dev/null +++ b/textproc/p5-Text-FormatTable/distinfo @@ -0,0 +1 @@ +MD5 (Text-FormatTable-0.01.tar.gz) = 84cbdd5b066afa22f2dd7a05e048789f diff --git a/textproc/p5-Text-FormatTable/pkg-comment b/textproc/p5-Text-FormatTable/pkg-comment new file mode 100644 index 0000000..d151225 --- /dev/null +++ b/textproc/p5-Text-FormatTable/pkg-comment @@ -0,0 +1 @@ +Renders simple tables as text diff --git a/textproc/p5-Text-FormatTable/pkg-descr b/textproc/p5-Text-FormatTable/pkg-descr new file mode 100644 index 0000000..1fd0ee6 --- /dev/null +++ b/textproc/p5-Text-FormatTable/pkg-descr @@ -0,0 +1,8 @@ +Text::FormatTable renders simple tables as text. You pass to the constructor +a table format specification similar to LaTeX (e.g. "r|l|l") and you call +methods to fill the table data and insert rules. After the data is filled, +you render the table as text. + +WWW: http://search.cpan.org/search?dist=Text-FormatTable + +Seamus Venasse <svenasse@polaris.ca> diff --git a/textproc/p5-Text-FormatTable/pkg-plist b/textproc/p5-Text-FormatTable/pkg-plist new file mode 100644 index 0000000..a98e3a3 --- /dev/null +++ b/textproc/p5-Text-FormatTable/pkg-plist @@ -0,0 +1,6 @@ +lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Text/FormatTable/.packlist +lib/perl5/site_perl/%%PERL_VER%%/Text/FormatTable.pm +lib/perl5/site_perl/%%PERL_VER%%/Text/example.pl +@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Text 2>/dev/null || true +@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Text/FormatTable 2>/dev/null || true +@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Text 2>/dev/null || true |