diff options
author | marino <marino@FreeBSD.org> | 2013-11-02 17:04:53 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2013-11-02 17:04:53 +0800 |
commit | 13de86f4f8dc0d6ebf0782548a9a79156c598158 (patch) | |
tree | 4a6df045b8c949b603a7f85d334b9e9fc00ba686 /print | |
parent | a4afd97f743a6b1198204b95d10d3fb103d5d226 (diff) | |
download | freebsd-ports-graphics-13de86f4f8dc0d6ebf0782548a9a79156c598158.tar.gz freebsd-ports-graphics-13de86f4f8dc0d6ebf0782548a9a79156c598158.tar.zst freebsd-ports-graphics-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')
-rw-r--r-- | print/p5-PDFLib/files/patch-Makefile.PL | 17 |
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 00000000000..4f0d1f1dca1 --- /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 }, + ); |