diff options
author | kevlo <kevlo@FreeBSD.org> | 2002-02-15 15:19:26 +0800 |
---|---|---|
committer | kevlo <kevlo@FreeBSD.org> | 2002-02-15 15:19:26 +0800 |
commit | 3091bbfc7a30abfdb14b7ae9b1bc05a08893472d (patch) | |
tree | fecc88ded8c1970072519de2b56d4ed67f4c666f /textproc | |
parent | 4d3d2559f2aa6060d162e050b4dddf2bc00c8b45 (diff) | |
download | freebsd-ports-gnome-3091bbfc7a30abfdb14b7ae9b1bc05a08893472d.tar.gz freebsd-ports-gnome-3091bbfc7a30abfdb14b7ae9b1bc05a08893472d.tar.zst freebsd-ports-gnome-3091bbfc7a30abfdb14b7ae9b1bc05a08893472d.zip |
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')
-rw-r--r-- | textproc/Makefile | 1 | ||||
-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 |
6 files changed, 39 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index ad6ced85b85c..75c8f74b3f08 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -158,6 +158,7 @@ SUBDIR += p5-Text-FixedLength-Extra SUBDIR += p5-Text-Flowchart SUBDIR += p5-Text-Format + SUBDIR += p5-Text-FormatTable SUBDIR += p5-Text-Graphics SUBDIR += p5-Text-Metaphone SUBDIR += p5-Text-Query diff --git a/textproc/p5-Text-FormatTable/Makefile b/textproc/p5-Text-FormatTable/Makefile new file mode 100644 index 000000000000..b2649af5421a --- /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 000000000000..ddd248b2bdc8 --- /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 000000000000..d1512256062f --- /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 000000000000..1fd0ee670a15 --- /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 000000000000..a98e3a3805c8 --- /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 |