pkgsrc/www/ap2-subversion/Makefile
epg 760b89670a 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.
2004-11-27 02:35:52 +00:00

24 lines
636 B
Makefile

# $NetBSD: Makefile,v 1.17 2004/11/27 02:35:53 epg Exp $
PKGNAME= ap2-subversion-${SVNVER}
COMMENT= WebDAV server (Apache module) for Subversion
.include "../../devel/subversion/Makefile.common"
CONFIGURE_ARGS+= --with-apxs=${APXS}
CONFIGURE_ARGS+= --disable-mod-activation
APACHE_MODULE= YES
ALL_TARGET= apache-mod
INSTALL_TARGET= install-mods-shared
BUILDLINK_DEPENDS.apache?= apache>=2.0.48
post-patch:
${RM} ${WRKSRC}/build-outputs.mk
${CP} ${FILESDIR}/build-outputs.mk ${WRKSRC}/build-outputs.mk
.include "../../devel/subversion/buildlink3.mk"
.include "../../www/apache2/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"