Date: Tue, 17 Feb 2015 16:05:03 +0000 (UTC) From: Mathieu Arnold <mat@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r379172 - in head/print/p5-PostScript: . files Message-ID: <201502171605.t1HG530H091534@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 {
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201502171605.t1HG530H091534>