summaryrefslogtreecommitdiff
path: root/emulators/twin/Makefile
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2005-06-01 20:07:59 +0000
committerjlam <jlam@pkgsrc.org>2005-06-01 20:07:59 +0000
commitfcb7da800bdfcf21720b30da13c68603c1f09525 (patch)
tree77aa2e325b82a73660278dbb13238e6aac0adca7 /emulators/twin/Makefile
parentf252a9837d224356df2bfc3c73223d7e84e939c5 (diff)
downloadpkgsrc-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 'emulators/twin/Makefile')
-rw-r--r--emulators/twin/Makefile8
1 files changed, 3 insertions, 5 deletions
diff --git a/emulators/twin/Makefile b/emulators/twin/Makefile
index 9435be743db..1cda943fd28 100644
--- a/emulators/twin/Makefile
+++ b/emulators/twin/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.17 2005/06/01 18:02:48 jlam Exp $
+# $NetBSD: Makefile,v 1.18 2005/06/01 20:08:00 jlam Exp $
#
DISTNAME= twin-src-3.1.14
@@ -13,15 +13,14 @@ COMMENT= Cross-platform implementation of the win32 api
WRKSRC= ${WRKDIR}/twin
GNU_CONFIGURE= yes
-USE_TOOLS+= gmake
+USE_TOOLS+= autoconf213 gmake
BUILD_TARGET= depend world
-AUTOCONF_REQD= 2.13
CONFIGURE_ARGS= --enable-debugger
.include "../../mk/x11.buildlink3.mk"
pre-configure:
- cd ${WRKSRC} && ${AUTORECONF} --force
+ cd ${WRKSRC} && autoreconf --force
pre-build:
${CP} ${WRKSRC}/windows/Execfreebsd.c ${WRKSRC}/windows/Execnetbsd.c
@@ -34,5 +33,4 @@ post-install:
${INSTALL_DATA} ${WRKSRC}/documentation/debugger.1 ${PREFIX}/man/man1
${INSTALL_PROGRAM} ${WRKSRC}/tools/rc/rc ${PREFIX}/bin
-.include "../../mk/autoconf.mk"
.include "../../mk/bsd.pkg.mk"