aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJun Kuriyama <kuriyama@FreeBSD.org>2009-06-06 22:23:01 +0000
committerJun Kuriyama <kuriyama@FreeBSD.org>2009-06-06 22:23:01 +0000
commit5ced7b7b4365d6c59b313f5b20c46a9330bc5118 (patch)
tree087e622a14b0c8749f6db988705f04b10f4e7ff5
parent474370663eb0e42beb22d379c7239c8832ab7845 (diff)
downloadports-5ced7b7b4365d6c59b313f5b20c46a9330bc5118.tar.gz
ports-5ced7b7b4365d6c59b313f5b20c46a9330bc5118.zip
Notes
-rw-r--r--devel/p5-local-lib/Makefile2
-rw-r--r--devel/p5-local-lib/distinfo6
-rw-r--r--devel/p5-local-lib/files/patch-Makefile.PL27
3 files changed, 31 insertions, 4 deletions
diff --git a/devel/p5-local-lib/Makefile b/devel/p5-local-lib/Makefile
index 9b95c5532746..da5323399601 100644
--- a/devel/p5-local-lib/Makefile
+++ b/devel/p5-local-lib/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= local-lib
-PORTVERSION= 1.003003
+PORTVERSION= 1.004001
CATEGORIES= devel perl5
MASTER_SITES= CPAN
MASTER_SITE_SUBDIR= ../../authors/id/A/AP/APEIRON
diff --git a/devel/p5-local-lib/distinfo b/devel/p5-local-lib/distinfo
index 4d8bfa5518b9..187902cb887c 100644
--- a/devel/p5-local-lib/distinfo
+++ b/devel/p5-local-lib/distinfo
@@ -1,3 +1,3 @@
-MD5 (local-lib-1.003003.tar.gz) = 3754e58cafc3f2f3096d5ad1f086f65e
-SHA256 (local-lib-1.003003.tar.gz) = e67bc1b5abd59cc840e24bb4139bb66ade3dbdd7ace1eeed2265898af70cb36a
-SIZE (local-lib-1.003003.tar.gz) = 26019
+MD5 (local-lib-1.004001.tar.gz) = 9b579a39e5e88ef5723c395f83f7c8e4
+SHA256 (local-lib-1.004001.tar.gz) = b1f1f99024f92b7e49ffbc9e3c02a1cd4dc921ed216f21e242d1cfb7213004be
+SIZE (local-lib-1.004001.tar.gz) = 30162
diff --git a/devel/p5-local-lib/files/patch-Makefile.PL b/devel/p5-local-lib/files/patch-Makefile.PL
new file mode 100644
index 000000000000..f3ef39a62fff
--- /dev/null
+++ b/devel/p5-local-lib/files/patch-Makefile.PL
@@ -0,0 +1,27 @@
+--- Makefile.PL.orig 2009-05-22 09:50:05.000000000 +0900
++++ Makefile.PL 2009-06-07 07:15:49.000000000 +0900
+@@ -115,17 +115,17 @@
+ # and make sure that the user doesn't have any existing CPAN config that'll
+ # cause us problems for the next few steps.
+ require CPAN::HandleConfig;
+-CPAN::HandleConfig->load;
++#CPAN::HandleConfig->load;
+ for my $eumm_setting ( qw/makepl_arg make_install_arg/ ) {
+- if ($CPAN::Config->{$eumm_setting} =~ /(?:PREFIX|INSTALL_BASE)/) {
+- die "Possibly invalid config detected in $eumm_setting: " . $CPAN::Config->{$eumm_setting};
+- }
++# if ($CPAN::Config->{$eumm_setting} =~ /(?:PREFIX|INSTALL_BASE)/) {
++# die "Possibly invalid config detected in $eumm_setting: " . $CPAN::Config->{$eumm_setting};
++# }
+ }
+
+ for my $mb_setting (qw/mbuild_arg mbuild_install_arg mbuildpl_arg/) {
+- if ($CPAN::Config->{$mb_setting} =~ /(?:--prefix|--install_base)/) {
+- die "Possibly invalid config detected in $mb_setting: " . $CPAN::Config->{$mb_setting};
+- }
++# if ($CPAN::Config->{$mb_setting} =~ /(?:--prefix|--install_base)/) {
++# die "Possibly invalid config detected in $mb_setting: " . $CPAN::Config->{$mb_setting};
++# }
+ }
+
+ if ($bootstrapping) {