summaryrefslogtreecommitdiff
path: root/lang/dylan-interpreter
diff options
context:
space:
mode:
authorjlam <jlam>2005-06-01 20:07:59 +0000
committerjlam <jlam>2005-06-01 20:07:59 +0000
commit6492b8f1ec8698b04f9127eecc0ef008460a9830 (patch)
tree77aa2e325b82a73660278dbb13238e6aac0adca7 /lang/dylan-interpreter
parent9c65cd2dcc49b8566966aad971d48eabca98f809 (diff)
downloadpkgsrc-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 'lang/dylan-interpreter')
-rw-r--r--lang/dylan-interpreter/Makefile.common12
1 files changed, 5 insertions, 7 deletions
diff --git a/lang/dylan-interpreter/Makefile.common b/lang/dylan-interpreter/Makefile.common
index 5f97f2cbce4..5b66bd3f661 100644
--- a/lang/dylan-interpreter/Makefile.common
+++ b/lang/dylan-interpreter/Makefile.common
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.19 2005/05/22 20:08:09 jlam Exp $
+# $NetBSD: Makefile.common,v 1.20 2005/06/01 20:08:00 jlam Exp $
#
DISTNAME= gwydion-dylan-${DYLAN_VERSION}
@@ -16,13 +16,12 @@ MAINTAINER= tech-pkg@NetBSD.org
HOMEPAGE= http://www.gwydiondylan.org/
COMMENT= Functional language
-USE_TOOLS+= gmake
+USE_TOOLS+= automake14 gmake
USE_LIBTOOL= yes
MAKEFILE= GNUmakefile
BUILD_TARGET= default
GNU_CONFIGURE= yes
-AUTOMAKE_REQD= 1.4
AUTOCONF_REQD= 2.50
DYLAN_VERSION= 2.3.11
@@ -51,14 +50,13 @@ post-patch:
done
pre-configure:
- cd ${WRKSRC} && ${ACLOCAL}
+ cd ${WRKSRC} && aclocal
cd ${WRKSRC} && ${PREFIX}/bin/libtoolize --force --copy
- cd ${WRKSRC} && ${AUTOHEADER}
- cd ${WRKSRC} && ${AUTOCONF}
+ cd ${WRKSRC} && autoheader
+ cd ${WRKSRC} && autoconf
.include "../../devel/boehm-gc/buildlink3.mk"
.include "../../lang/perl5/buildlink3.mk"
.include "../../x11/gtk/buildlink3.mk"
-.include "../../mk/automake.mk"
.include "../../mk/bsd.pkg.mk"