aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlth <lth@FreeBSD.org>2004-10-14 04:14:06 +0800
committerlth <lth@FreeBSD.org>2004-10-14 04:14:06 +0800
commitacb09abe6a317f90ee48e7ca21962180a049e18f (patch)
tree8fd8828cb7077c116065dc2ca56edbb1e4121dd2
parentb6bc1608c18fb7e008efb04c5377062fbe12649b (diff)
downloadfreebsd-ports-gnome-acb09abe6a317f90ee48e7ca21962180a049e18f.tar.gz
freebsd-ports-gnome-acb09abe6a317f90ee48e7ca21962180a049e18f.tar.zst
freebsd-ports-gnome-acb09abe6a317f90ee48e7ca21962180a049e18f.zip
- Update to 1.19
- Remove obsolete PREFIX hackery - Patch now included in source
-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;
- }