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/gdb6/Makefile | |
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/gdb6/Makefile')
-rw-r--r-- | devel/gdb6/Makefile | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/devel/gdb6/Makefile b/devel/gdb6/Makefile index cd27fc00e91..bca6d7731aa 100644 --- a/devel/gdb6/Makefile +++ b/devel/gdb6/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2005/05/22 20:07:51 jlam Exp $ +# $NetBSD: Makefile,v 1.11 2005/06/01 20:08:00 jlam Exp $ # DISTNAME= gdb-6.2.1 @@ -13,12 +13,11 @@ COMMENT= The GNU Project Debugger BUILD_USES_MSGFMT= yes -USE_TOOLS= gmake +USE_TOOLS= autoconf213 gmake USE_LIBTOOL= yes LIBTOOL_OVERRIDE= ${WRKSRC}/libtool USE_PKGLOCALEDIR= yes GNU_CONFIGURE= yes -AUTOCONF_REQD= 2.13 CONFIGURE_ARGS+= --libdir=${PREFIX}/lib/gdb6 CONFIGURE_ARGS+= --includedir=${PREFIX}/include/gdb6 CONFIGURE_ARGS+= --enable-libada @@ -34,9 +33,7 @@ pre-patch: ${CP} ${FILESDIR}/nbsd-nat.c ${WRKSRC}/gdb pre-configure: - cd ${WRKSRC}/gdb; \ - ${AUTOHEADER}; \ - ${AUTOCONF} + cd ${WRKSRC}/gdb; autoheader; autoconf do-test: if `${PKG_INFO} -qe dejagnu` ;then \ @@ -46,5 +43,4 @@ do-test: fi .include "../../devel/gettext-lib/buildlink3.mk" -.include "../../mk/autoconf.mk" .include "../../mk/bsd.pkg.mk" |