aboutsummaryrefslogtreecommitdiff
path: root/textproc/p5-Text-TabularDisplay
diff options
context:
space:
mode:
authorLars Thegler <lth@FreeBSD.org>2004-10-13 20:14:06 +0000
committerLars Thegler <lth@FreeBSD.org>2004-10-13 20:14:06 +0000
commit634c8392013a2cac7acfef03c96f0291bb8316c4 (patch)
treef762c255793e60df242ad3dc2ff8e75d12d02dfb /textproc/p5-Text-TabularDisplay
parent2be8bdde702f6e2fba2720971b0b2b134466b771 (diff)
Notes
Diffstat (limited to 'textproc/p5-Text-TabularDisplay')
-rw-r--r--textproc/p5-Text-TabularDisplay/Makefile10
-rw-r--r--textproc/p5-Text-TabularDisplay/distinfo4
-rw-r--r--textproc/p5-Text-TabularDisplay/files/patch-TabularDisplay.pm11
3 files changed, 4 insertions, 21 deletions
diff --git a/textproc/p5-Text-TabularDisplay/Makefile b/textproc/p5-Text-TabularDisplay/Makefile
index 18fc530635fd..b198b22de355 100644
--- a/textproc/p5-Text-TabularDisplay/Makefile
+++ b/textproc/p5-Text-TabularDisplay/Makefile
@@ -5,7 +5,7 @@
# $FreeBSD$
PORTNAME= Text-TabularDisplay
-PORTVERSION= 1.18
+PORTVERSION= 1.19
CATEGORIES= textproc perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
MASTER_SITE_SUBDIR= Text
@@ -18,10 +18,4 @@ PERL_CONFIGURE= yes
MAN3= Text::TabularDisplay.3
-.include <bsd.port.pre.mk>
-.if ${PERL_LEVEL} <= 500503
-# make PREFIX-clean under perl 5.005_03
-post-configure:
- ${PERL} -pi -e 's,/usr/local/,\$$(PREFIX)/,g' ${WRKSRC}/Makefile
-.endif
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>
diff --git a/textproc/p5-Text-TabularDisplay/distinfo b/textproc/p5-Text-TabularDisplay/distinfo
index 4b7adf602744..f0060ab38d3a 100644
--- a/textproc/p5-Text-TabularDisplay/distinfo
+++ b/textproc/p5-Text-TabularDisplay/distinfo
@@ -1,2 +1,2 @@
-MD5 (Text-TabularDisplay-1.18.tar.gz) = 06b48726ca3281b2b3ab41eec9c06460
-SIZE (Text-TabularDisplay-1.18.tar.gz) = 13557
+MD5 (Text-TabularDisplay-1.19.tar.gz) = 907694c0b714abe3cfcc329d94c85c1d
+SIZE (Text-TabularDisplay-1.19.tar.gz) = 13824
diff --git a/textproc/p5-Text-TabularDisplay/files/patch-TabularDisplay.pm b/textproc/p5-Text-TabularDisplay/files/patch-TabularDisplay.pm
deleted file mode 100644
index 67e5f12703db..000000000000
--- a/textproc/p5-Text-TabularDisplay/files/patch-TabularDisplay.pm
+++ /dev/null
@@ -1,11 +0,0 @@
---- TabularDisplay.pm.orig Sun May 16 23:07:02 2004
-+++ TabularDisplay.pm Mon May 17 23:56:08 2004
-@@ -240,7 +240,7 @@
-
- push @data, $add->[$i];
- $length->[$i] = $l
-- unless $length->[$i] > $l;
-+ unless defined $length->[$i] and $length->[$i] > $l;
- }
- push @$where, \@data;
- }