summaryrefslogtreecommitdiff
path: root/graphics/IPA/files
diff options
context:
space:
mode:
authorJason E. Hale <jhale@FreeBSD.org>2018-08-06 02:49:34 +0000
committerJason E. Hale <jhale@FreeBSD.org>2018-08-06 02:49:34 +0000
commita6342f310d6c454920a1d9160b1ed88181e3c0ec (patch)
tree8b069ef3388e24e8bd35e91263aa499574ef2050 /graphics/IPA/files
parentUpdate for py-xattr to the 0.9.6 version (diff)
Fix build with Perl >= 5.26 - regular expression match was failing with
newer MakeMaker which caused the objects to be written to the wrong location Add LICENSE - the README says it is licensed the same as Perl MFH: 2018Q3 (blanket - build fix)
Diffstat (limited to 'graphics/IPA/files')
-rw-r--r--graphics/IPA/files/patch-Makefile.PL16
1 files changed, 16 insertions, 0 deletions
diff --git a/graphics/IPA/files/patch-Makefile.PL b/graphics/IPA/files/patch-Makefile.PL
new file mode 100644
index 000000000000..47cdce9ce2fc
--- /dev/null
+++ b/graphics/IPA/files/patch-Makefile.PL
@@ -0,0 +1,16 @@
+Fix regular expression match and build with MakeMaker >= 7.05_05 which adds a
+space between the target name and the operator.
+
+--- Makefile.PL.orig 2011-05-14 06:27:26 UTC
++++ Makefile.PL
+@@ -79,8 +79,8 @@ H
+ sub c_o
+ {
+ my $t = shift-> SUPER::c_o(@_);
+- unless ( $t =~ /.c\$\(OBJ_EXT\):\n\t.*\$\*\$\(OBJ_EXT\)/ ) {
+- $t =~ s/(\.c\$\(OBJ_EXT\):\n\t.*)/$1 $co\$*\$(OBJ_EXT)/;
++ unless ( $t =~ /\.c\$\(OBJ_EXT\)\s*:\n\t.*\Q\$\*\$\(OBJ_EXT\)\E/ ) {
++ $t =~ s/(\.c\$\(OBJ_EXT\)\s*:\n\t.*)/$1 $co\$*\$(OBJ_EXT)/;
+ }
+ return $t;
+ }