diff options
author | epg <epg@pkgsrc.org> | 2004-11-27 02:35:52 +0000 |
---|---|---|
committer | epg <epg@pkgsrc.org> | 2004-11-27 02:35:52 +0000 |
commit | 760b89670a7c7870cb86af2626e3844d7953e2fe (patch) | |
tree | 981a16e4ce58fce14d257893507f9d78654a1906 /devel/p5-subversion | |
parent | 8caf9360c6e67300c12e082a7a07c185158befaf (diff) | |
download | pkgsrc-760b89670a7c7870cb86af2626e3844d7953e2fe.tar.gz |
We used to avoid building all of Subversion again when building
sub-packages (p5-subversion, py-subversion, and ap2-subversion) by
hand-hacking build-outputs.mk, which was a big pain. Consequently,
since the 1.0.7 update, pkgsrc has re-built the whole thing for each
subpackage. This is annoying and makes p5-subversion not work with
pkgviews on Darwin.
Now, we'll fix the problem by patching gen-make.py, which generates
build-outputs.mk. I may even be able to commit this change upstream.
devel/subversion-base/Makefile:
Generate build-outputs.mk hack.
devel/p5-subversion/Makefile:
devel/py-subversion/Makefile:
www/ap2-subversion/Makefile:
Replace build-outputs.mk in post-patch.
Diffstat (limited to 'devel/p5-subversion')
-rw-r--r-- | devel/p5-subversion/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/devel/p5-subversion/Makefile b/devel/p5-subversion/Makefile index 38028130af7..5723d6a2fe7 100644 --- a/devel/p5-subversion/Makefile +++ b/devel/p5-subversion/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2004/11/10 18:09:07 epg Exp $ +# $NetBSD: Makefile,v 1.15 2004/11/27 02:35:52 epg Exp $ PKGNAME= p5-subversion-${SVNVER} COMMENT= Perl bindings for Subversion @@ -17,6 +17,10 @@ PERL5_CONFIGURE= NO #PERL5_CONFIGURE_DIRS= ${PERL_DIR} PERL5_PACKLIST= ${PERL5_SITEARCH}/auto/SVN/_Core/.packlist +post-patch: + ${RM} ${WRKSRC}/build-outputs.mk + ${CP} ${FILESDIR}/build-outputs.mk ${WRKSRC}/build-outputs.mk + .include "../../devel/subversion/buildlink3.mk" .include "../../devel/swig-build/buildlink3.mk" .include "../../devel/swig-perl/buildlink3.mk" |