diff options
author | hiramatsu <hiramatsu@pkgsrc.org> | 2011-12-08 22:43:49 +0000 |
---|---|---|
committer | hiramatsu <hiramatsu@pkgsrc.org> | 2011-12-08 22:43:49 +0000 |
commit | 5c08767ad4267c16fdf05bd25c4541038de4c415 (patch) | |
tree | f5224a2f740c67c4c86c8362dc7a8e6ef6af2a09 /lang/perl5 | |
parent | 10078d9ab0505b36c7fdbb48c3e8296ed665af4f (diff) | |
download | pkgsrc-5c08767ad4267c16fdf05bd25c4541038de4c415.tar.gz |
Force ExtUtils::MakeMaker to ignore installed packlist when creating new
packlist. It prevents generating wrong PLIST during make replace.
Bump PKGREVISION.
Diffstat (limited to 'lang/perl5')
-rw-r--r-- | lang/perl5/Makefile | 4 | ||||
-rw-r--r-- | lang/perl5/distinfo | 4 | ||||
-rw-r--r-- | lang/perl5/patches/patch-aa | 18 |
3 files changed, 19 insertions, 7 deletions
diff --git a/lang/perl5/Makefile b/lang/perl5/Makefile index 364acf79a73..ae9ea8c1ca2 100644 --- a/lang/perl5/Makefile +++ b/lang/perl5/Makefile @@ -1,10 +1,10 @@ -# $NetBSD: Makefile,v 1.177 2011/11/27 19:47:50 joerg Exp $ +# $NetBSD: Makefile,v 1.178 2011/12/08 22:43:49 hiramatsu Exp $ .include "license.mk" .include "Makefile.common" COMMENT= Practical Extraction and Report Language -PKGREVISION= 2 +PKGREVISION= 3 PKG_DESTDIR_SUPPORT= user-destdir diff --git a/lang/perl5/distinfo b/lang/perl5/distinfo index d6d74539bb0..42b02b24b08 100644 --- a/lang/perl5/distinfo +++ b/lang/perl5/distinfo @@ -1,10 +1,10 @@ -$NetBSD: distinfo,v 1.80 2011/11/27 19:47:50 joerg Exp $ +$NetBSD: distinfo,v 1.81 2011/12/08 22:43:49 hiramatsu Exp $ SHA1 (perl-5.14.2.tar.gz) = df1549d65cdef2b20023af83ecaa2a024109a5ad RMD160 (perl-5.14.2.tar.gz) = bed043edbebd69e1279e9a70424e2552389bea79 Size (perl-5.14.2.tar.gz) = 15223598 bytes SHA1 (patch-Configure) = cc3a55187827ebb16326198fd9b262dfae931653 -SHA1 (patch-aa) = 4c8197cdc0595a17ba377a28c7457f923c2d9bf9 +SHA1 (patch-aa) = 7578d0ee8fa20e055c50b8c617680b0d90cc5efa SHA1 (patch-ab) = b6104a02aa6fbeda2340042a93c2382d1a1965bb SHA1 (patch-ac) = c1893ea4cf4b89b03b3acc5dec9b5828d50c5dad SHA1 (patch-ah) = 6fe177646f0fc40f11f4b2b4f504ca45ddff1941 diff --git a/lang/perl5/patches/patch-aa b/lang/perl5/patches/patch-aa index 86d67d995ce..bb8a8679ef5 100644 --- a/lang/perl5/patches/patch-aa +++ b/lang/perl5/patches/patch-aa @@ -1,7 +1,10 @@ -$NetBSD: patch-aa,v 1.33 2010/08/19 20:47:10 seb Exp $ +$NetBSD: patch-aa,v 1.34 2011/12/08 22:43:49 hiramatsu Exp $ ---- cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm.orig 2010-05-21 03:45:50.000000000 +0000 -+++ cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm 2010-05-21 03:46:44.000000000 +0000 +- $Is{NetBSD} and $Is{Interix} are unified into $Is{BSD}. +- Ignore installed packlist when creating new packlist. + +--- cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm.orig 2011-09-26 18:44:34.000000000 +0900 ++++ cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm 2011-12-08 10:18:48.000000000 +0900 @@ -28,8 +28,6 @@ $Is{VMS} = $^O eq 'VMS'; $Is{OSF} = $^O eq 'dec_osf'; @@ -20,3 +23,12 @@ $NetBSD: patch-aa,v 1.33 2010/08/19 20:47:10 seb Exp $ # Use nothing on static perl platforms, and to the flags needed # to link against the shared libperl library on shared perl # platforms. We peek at lddlflags to see if we need -Wl,-R +@@ -2081,7 +2079,7 @@ + + pure_vendor_install :: all + $(NOECHO) $(MOD_INSTALL) \ +- read }.$self->catfile('$(VENDORARCHEXP)','auto','$(FULLEXT)','.packlist').q{ \ ++ read "" \ + write }.$self->catfile('$(DESTINSTALLVENDORARCH)','auto','$(FULLEXT)','.packlist').q{ \ + $(INST_LIB) $(DESTINSTALLVENDORLIB) \ + $(INST_ARCHLIB) $(DESTINSTALLVENDORARCH) \ |