diff options
author | jlam <jlam@pkgsrc.org> | 2005-06-01 20:07:59 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-06-01 20:07:59 +0000 |
commit | fcb7da800bdfcf21720b30da13c68603c1f09525 (patch) | |
tree | 77aa2e325b82a73660278dbb13238e6aac0adca7 /devel/nspr | |
parent | f252a9837d224356df2bfc3c73223d7e84e939c5 (diff) | |
download | pkgsrc-fcb7da800bdfcf21720b30da13c68603c1f09525.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 'devel/nspr')
-rw-r--r-- | devel/nspr/Makefile | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/devel/nspr/Makefile b/devel/nspr/Makefile index 2e7217e06a8..2f91f4ad541 100644 --- a/devel/nspr/Makefile +++ b/devel/nspr/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2005/05/22 20:07:54 jlam Exp $ +# $NetBSD: Makefile,v 1.7 2005/06/01 20:08:00 jlam Exp $ DISTNAME= nspr-4.4.1 PKGREVISION= 1 @@ -11,13 +11,11 @@ COMMENT= Platform-neutral API for system level and libc like functions WRKSRC= ${WRKDIR}/${DISTNAME}/mozilla/nsprpub/build -USE_TOOLS+= gmake +USE_TOOLS+= autoconf213 gmake GNU_CONFIGURE= YES CONFIGURE_ARGS+= --disable-debug -AUTOCONF_REQD= 2.13 - MAKE_ENV= DIST=${WRKSRC}/dist CONFIGURE_SCRIPT= ../configure CONFIGURE_ENV= LIBRUNPATH=${PREFIX}/lib/nspr @@ -34,7 +32,7 @@ SO_SUFFIX= so.1.0 PLIST_SUBST+= SO_SUFFIX=${SO_SUFFIX} pre-configure: - cd ${WRKSRC}/.. && ${AUTOCONF} + cd ${WRKSRC}/.. && autoconf do-install: ${INSTALL_DATA_DIR} ${PREFIX}/include/nspr @@ -52,6 +50,4 @@ CONFIGURE_ARGS+= --without-pthreads CONFIGURE_ARGS+= --with-pthreads .endif -.include "../../mk/autoconf.mk" .include "../../mk/bsd.pkg.mk" - |