Date: Mon, 20 Apr 2015 17:43:13 +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: r384376 - in head/x11-fonts/wqy: . files Message-ID: <201504201743.t3KHhDTb089567@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: mat Date: Mon Apr 20 17:43:12 2015 New Revision: 384376 URL: https://svnweb.freebsd.org/changeset/ports/384376 Log: Fix build with Perl 5.21.1+ Omitting % and @ on hash and array names is no longer permitted Really old Perl let you omit the @ on array names and the % on hash names in some spots. This has issued a deprecation warning since Perl 5.0, and is no longer permitted. With hat: perl@ Sponsored by: Absolight Added: head/x11-fonts/wqy/files/patch-wqy-unibit_bdfmerge.pl (contents, props changed) Modified: head/x11-fonts/wqy/Makefile Modified: head/x11-fonts/wqy/Makefile ============================================================================== --- head/x11-fonts/wqy/Makefile Mon Apr 20 17:37:20 2015 (r384375) +++ head/x11-fonts/wqy/Makefile Mon Apr 20 17:43:12 2015 (r384376) @@ -25,6 +25,7 @@ BUILD_DEPENDS= bdftopcf:${PORTSDIR}/x11- USE_XORG= x11 USES= fonts perl5 USE_PERL5= build +NO_WRKSUBDIR= yes FONTNAME= wqy CONFDDIR= etc/fonts/conf.d Added: head/x11-fonts/wqy/files/patch-wqy-unibit_bdfmerge.pl ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fonts/wqy/files/patch-wqy-unibit_bdfmerge.pl Mon Apr 20 17:43:12 2015 (r384376) @@ -0,0 +1,11 @@ +--- wqy-unibit/bdfmerge.pl.orig 2007-09-09 22:39:32 UTC ++++ wqy-unibit/bdfmerge.pl +@@ -32,7 +32,7 @@ while(@ARGV>=1&& $ARGV[0]=~/^-{0,1}0[xX] + { + $startpos = hex($1); + $endpos=0; +- $range=shift(ARGV); ++ $range=shift(@ARGV); + if($range=~/--0[xX]([0-9A-Fa-f]{0,6})/) + { + $endpos=hex($1);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201504201743.t3KHhDTb089567>