svn commit: r379172 - in head/print/p5-PostScript: . files
Mathieu Arnold
mat at FreeBSD.org
Tue Feb 17 16:05:03 UTC 2015
Author: mat
Date: Tue Feb 17 16:05:02 2015
New Revision: 379172
URL: https://svnweb.freebsd.org/changeset/ports/379172
QAT: https://qat.redports.org/buildarchive/r379172/
Log:
Fix with perl 5.20+.
Sponsored by: Absolight
Added:
head/print/p5-PostScript/files/
head/print/p5-PostScript/files/patch-TextBlock.pm (contents, props changed)
Modified:
head/print/p5-PostScript/Makefile
Modified: head/print/p5-PostScript/Makefile
==============================================================================
--- head/print/p5-PostScript/Makefile Tue Feb 17 16:02:50 2015 (r379171)
+++ head/print/p5-PostScript/Makefile Tue Feb 17 16:05:02 2015 (r379172)
@@ -3,7 +3,7 @@
PORTNAME= PostScript
PORTVERSION= 0.06
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= print perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
Added: head/print/p5-PostScript/files/patch-TextBlock.pm
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/print/p5-PostScript/files/patch-TextBlock.pm Tue Feb 17 16:05:02 2015 (r379172)
@@ -0,0 +1,11 @@
+--- TextBlock.pm.orig 1999-08-11 14:04:36 UTC
++++ TextBlock.pm
+@@ -54,7 +54,7 @@ sub numElements {
+ # Returns the number of elements in the TextBlock
+ #
+ my $self = shift;
+- return $#{@$self}+1;
++ return scalar(@$self);
+ }
+
+ sub Write {
More information about the svn-ports-all
mailing list