aboutsummaryrefslogtreecommitdiffstats
path: root/print/p5-PDFLib
diff options
context:
space:
mode:
authormarino <marino@FreeBSD.org>2013-11-02 17:04:53 +0800
committermarino <marino@FreeBSD.org>2013-11-02 17:04:53 +0800
commit13de86f4f8dc0d6ebf0782548a9a79156c598158 (patch)
tree4a6df045b8c949b603a7f85d334b9e9fc00ba686 /print/p5-PDFLib
parenta4afd97f743a6b1198204b95d10d3fb103d5d226 (diff)
downloadfreebsd-ports-gnome-13de86f4f8dc0d6ebf0782548a9a79156c598158.tar.gz
freebsd-ports-gnome-13de86f4f8dc0d6ebf0782548a9a79156c598158.tar.zst
freebsd-ports-gnome-13de86f4f8dc0d6ebf0782548a9a79156c598158.zip
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)
Diffstat (limited to 'print/p5-PDFLib')
-rw-r--r--print/p5-PDFLib/files/patch-Makefile.PL17
1 files changed, 17 insertions, 0 deletions
diff --git a/print/p5-PDFLib/files/patch-Makefile.PL b/print/p5-PDFLib/files/patch-Makefile.PL
new file mode 100644
index 000000000000..4f0d1f1dca1f
--- /dev/null
+++ b/print/p5-PDFLib/files/patch-Makefile.PL
@@ -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 },
+ );