diff options
author | jlam <jlam> | 2005-06-01 20:07:59 +0000 |
---|---|---|
committer | jlam <jlam> | 2005-06-01 20:07:59 +0000 |
commit | 6492b8f1ec8698b04f9127eecc0ef008460a9830 (patch) | |
tree | 77aa2e325b82a73660278dbb13238e6aac0adca7 /www/mozilla/Makefile.common | |
parent | 9c65cd2dcc49b8566966aad971d48eabca98f809 (diff) | |
download | pkgsrc-6492b8f1ec8698b04f9127eecc0ef008460a9830.tar.gz |
Remove mk/autoconf.mk and mk/automake.mk and replace their usage with
USE_TOOLS and any of "autoconf", "autoconf213", "automake" or
"automake14". Also, we don't need to call the auto* tools via
${ACLOCAL}, ${AUTOCONF}, etc., since the tools framework takes care
to symlink the correct tool to the correct name, so we can just use
aclocal, autoconf, etc.
Diffstat (limited to 'www/mozilla/Makefile.common')
-rw-r--r-- | www/mozilla/Makefile.common | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/www/mozilla/Makefile.common b/www/mozilla/Makefile.common index ba511646634..803497293ca 100644 --- a/www/mozilla/Makefile.common +++ b/www/mozilla/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.56 2005/06/01 18:03:26 jlam Exp $ +# $NetBSD: Makefile.common,v 1.57 2005/06/01 20:08:01 jlam Exp $ MOZ_DIST_VER?= ${MOZ_VER} DISTNAME?= mozilla-${MOZ_DIST_VER}-source @@ -16,7 +16,7 @@ BUILD_DEPENDS+= zip>=2.3:../../archivers/zip WRKSRC= ${WRKDIR}/mozilla USE_LANGUAGES= c c++ USE_PERL5= build -USE_TOOLS+= gmake +USE_TOOLS+= autoconf213 gmake GNU_CONFIGURE= yes CONFIG_GUESS_OVERRIDE= build/autoconf/config.guess @@ -49,8 +49,6 @@ CONFIGURE_ARGS+= --disable-tests \ SHAREMODE?= 644 BUILD_TARGET= # empty -AUTOCONF_REQD= 2.13 - UNLIMIT_RESOURCES= datasize memorysize stacksize .include "../../graphics/freetype2/buildlink3.mk" @@ -165,8 +163,8 @@ post-extract: .endfor pre-configure: - cd ${WRKSRC} && ${AUTOCONF} - cd ${WRKSRC}/nsprpub && ${AUTOCONF} + cd ${WRKSRC} && autoconf + cd ${WRKSRC}/nsprpub && autoconf post-build: ${ECHO} skin,install,select,classic/1.0 >> \ @@ -200,5 +198,4 @@ SUBST_SED.pc= -e "s|%includedir%|${PREFIX}/include/${MOZILLA}|g" \ -e "s|%libdir%|${PREFIX}/lib/${MOZILLA}|g" SUBST_MESSAGE.pc= "Fixing pkgconfig files." -.include "../../mk/autoconf.mk" .include "../../mk/bsd.pkg.mk" |