diff options
author | bouyer <bouyer@pkgsrc.org> | 2011-03-30 18:38:07 +0000 |
---|---|---|
committer | bouyer <bouyer@pkgsrc.org> | 2011-03-30 18:38:07 +0000 |
commit | e2782e02c85fd42073d9d5c7168df8a4b586b9a9 (patch) | |
tree | 7e919981d222131e1671f008bbe48f0b1f596358 /www | |
parent | dc41d3ffd1411bdc05f7714ad68cef4f2b467fa8 (diff) | |
download | pkgsrc-e2782e02c85fd42073d9d5c7168df8a4b586b9a9.tar.gz |
perl_install cause the Makefile in perl/ to be rebuilt with /usr/pkg/lib
as library path instead of the source tree. install the tries to relink
the target with the new path, which fails because the just-installed
libraries are not in the buildlink directory.
Just don't rebuild makefiles, the run-time search path has been fixed
by buildlink already.
should fix PR 43385. OK wiz@
Diffstat (limited to 'www')
-rw-r--r-- | www/p5-libapreq2/distinfo | 4 | ||||
-rw-r--r-- | www/p5-libapreq2/patches/patch-aa | 19 | ||||
-rw-r--r-- | www/p5-libapreq2/patches/patch-ab | 19 |
3 files changed, 41 insertions, 1 deletions
diff --git a/www/p5-libapreq2/distinfo b/www/p5-libapreq2/distinfo index bfbcfa748c8..8f952c07e3e 100644 --- a/www/p5-libapreq2/distinfo +++ b/www/p5-libapreq2/distinfo @@ -1,5 +1,7 @@ -$NetBSD: distinfo,v 1.7 2010/02/23 20:00:54 sno Exp $ +$NetBSD: distinfo,v 1.8 2011/03/30 18:38:07 bouyer Exp $ SHA1 (libapreq2-2.12.tar.gz) = 0199b9d7a6d85b2df849f29e41a4a4d7a83a2a3f RMD160 (libapreq2-2.12.tar.gz) = 576b3a514e943ef3c28c45530d9e5a6d75132902 Size (libapreq2-2.12.tar.gz) = 859412 bytes +SHA1 (patch-aa) = 8fa12ccc0a959c0b2430f4a3165185d3a4f1bf03 +SHA1 (patch-ab) = 46d68205d1759a74ee630a2a33c6fcb29b56bbe9 diff --git a/www/p5-libapreq2/patches/patch-aa b/www/p5-libapreq2/patches/patch-aa new file mode 100644 index 00000000000..60e36e94d42 --- /dev/null +++ b/www/p5-libapreq2/patches/patch-aa @@ -0,0 +1,19 @@ +$NetBSD: patch-aa,v 1.1 2011/03/30 18:38:07 bouyer Exp $ + +perl_install cause the Makefile in perl/ to be rebuilt with /usr/pkg/lib +as library path instead of the source tree. install the tries to relink +the target with the new path, which fails because the just-installed +libraries are not in the buildlink directory. +Just don't rebuild makefiles, the run-time search path has been fixed +by buildlink already. + +--- glue/Makefile.am.orig 2011-03-29 21:44:52.000000000 +0200 ++++ glue/Makefile.am 2011-03-29 21:45:29.000000000 +0200 +@@ -15,7 +15,6 @@ + cd perl; $(MAKE) test + + perl_install: +- cd perl; INSTALL=1 @PERL@ @PERL_OPTS@ Makefile.PL -apxs @APACHE2_APXS@ @MM_OPTS@ + cd perl; $(MAKE) install + + perl_clean: diff --git a/www/p5-libapreq2/patches/patch-ab b/www/p5-libapreq2/patches/patch-ab new file mode 100644 index 00000000000..f49aaefa6ec --- /dev/null +++ b/www/p5-libapreq2/patches/patch-ab @@ -0,0 +1,19 @@ +$NetBSD: patch-ab,v 1.1 2011/03/30 18:38:07 bouyer Exp $ + +perl_install cause the Makefile in perl/ to be rebuilt with /usr/pkg/lib +as library path instead of the source tree. install the tries to relink +the target with the new path, which fails because the just-installed +libraries are not in the buildlink directory. +Just don't rebuild makefiles, the run-time search path has been fixed +by buildlink already. + +--- glue/Makefile.in.orig 2011-03-29 21:45:01.000000000 +0200 ++++ glue/Makefile.in 2011-03-29 21:45:35.000000000 +0200 +@@ -265,7 +265,6 @@ + cd perl; $(MAKE) test + + perl_install: +- cd perl; INSTALL=1 @PERL@ @PERL_OPTS@ Makefile.PL -apxs @APACHE2_APXS@ @MM_OPTS@ + cd perl; $(MAKE) install + + perl_clean: |