aboutsummaryrefslogtreecommitdiff
path: root/lang/perl5.22
diff options
context:
space:
mode:
authorMathieu Arnold <mat@FreeBSD.org>2015-06-29 12:32:41 +0000
committerMathieu Arnold <mat@FreeBSD.org>2015-06-29 12:32:41 +0000
commit7397efc8f9de4ff8216261fed16ae8131aa56ba2 (patch)
tree5478437b587c349cb249d39ff5c9d4649429dc41 /lang/perl5.22
parentb174df8758367f6c2e8c9dcd3946d2ead12dc89c (diff)
downloadports-7397efc8f9de4ff8216261fed16ae8131aa56ba2.tar.gz
ports-7397efc8f9de4ff8216261fed16ae8131aa56ba2.zip
Notes
Diffstat (limited to 'lang/perl5.22')
-rw-r--r--lang/perl5.22/Makefile1
-rw-r--r--lang/perl5.22/files/patch-cpan_ExtUtils-Install_lib_ExtUtils_Install.pm11
2 files changed, 12 insertions, 0 deletions
diff --git a/lang/perl5.22/Makefile b/lang/perl5.22/Makefile
index 3bd0b60c03cd..8803efedc82c 100644
--- a/lang/perl5.22/Makefile
+++ b/lang/perl5.22/Makefile
@@ -3,6 +3,7 @@
PORTNAME= perl
DISTVERSION= ${PERL_VERSION}
+PORTREVISION= 1
CATEGORIES= lang devel perl5
MASTER_SITES= CPAN/../../src/5.0 CPAN/../by-authors/id/R/RJ/RJBS
DIST_SUBDIR= perl
diff --git a/lang/perl5.22/files/patch-cpan_ExtUtils-Install_lib_ExtUtils_Install.pm b/lang/perl5.22/files/patch-cpan_ExtUtils-Install_lib_ExtUtils_Install.pm
new file mode 100644
index 000000000000..1f2e3e4847c3
--- /dev/null
+++ b/lang/perl5.22/files/patch-cpan_ExtUtils-Install_lib_ExtUtils_Install.pm
@@ -0,0 +1,11 @@
+--- cpan/ExtUtils-Install/lib/ExtUtils/Install.pm.orig 2015-06-19 11:34:20 UTC
++++ cpan/ExtUtils-Install/lib/ExtUtils/Install.pm
+@@ -809,7 +809,7 @@ sub install { #XXX OS-SPECIFIC
+ utime($atime,$mtime + $Is_VMS,$targetfile) unless $dry_run>1;
+
+
+- $mode = 0444 | ( $mode & 0111 ? 0111 : 0 );
++ $mode = 0644 | ( $mode & 0111 ? 0111 : 0 );
+ $mode = $mode | 0222
+ if $realtarget ne $targetfile;
+ _chmod( $mode, $targetfile, $verbose );