Date: Sat, 2 Nov 2013 09:04:53 +0000 (UTC) From: John Marino <marino@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r332459 - head/print/p5-PDFLib/files Message-ID: <201311020904.rA294r0k098305@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: marino Date: Sat Nov 2 09:04:53 2013 New Revision: 332459 URL: http://svnweb.freebsd.org/changeset/ports/332459 Log: print/p5-PDFLIB: Unbreak by disabling version test. The p5-PDFLib port can no longer determine the version of pdflib accurately, so it's failing at the configure stage. By disabling the test, the port builds again. Approved by: perl@ (AZ) Added: head/print/p5-PDFLib/files/ head/print/p5-PDFLib/files/patch-Makefile.PL (contents, props changed) Added: head/print/p5-PDFLib/files/patch-Makefile.PL ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/p5-PDFLib/files/patch-Makefile.PL Sat Nov 2 09:04:53 2013 (r332459) @@ -0,0 +1,17 @@ +--- Makefile.PL.orig 2001-06-04 13:38:11.000000000 +0000 ++++ Makefile.PL +@@ -6,7 +6,7 @@ eval { + require pdflib_pl; + die unless $pdflib_pl::VERSION >= 4.0; + }; +-if ($@) { ++if (0) { + die <<DEATH; + + PDFLib requires the pdflib package from http://www.pdflib.com/ version +@@ -20,5 +20,4 @@ DEATH + WriteMakefile( + 'NAME' => 'PDFLib', + 'VERSION_FROM' => 'PDFLib.pm', # finds $VERSION +- 'PREREQ_PM' => { pdflib_pl => 4.0 }, + );
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201311020904.rA294r0k098305>