summaryrefslogtreecommitdiff
path: root/net/zebra/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 /net/zebra/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 'net/zebra/Makefile')
-rw-r--r--net/zebra/Makefile9
1 files changed, 4 insertions, 5 deletions
diff --git a/net/zebra/Makefile b/net/zebra/Makefile
index 2cf6431b842..3a1cedbbe00 100644
--- a/net/zebra/Makefile
+++ b/net/zebra/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.66 2005/05/22 20:08:26 jlam Exp $
+# $NetBSD: Makefile,v 1.67 2005/06/01 20:08:01 jlam Exp $
# Based on KAME Id: Makefile,v 1.1.2.1.2.1.10.2 1999/01/05 11:03:50 itojun Exp
#
@@ -48,7 +48,7 @@ CONF_FILES+= ${EGDIR}/vtysh.conf.sample ${PKG_SYSCONFDIR}/vtysh.conf
CONFIGURE_ARGS+= --disable-vtysh
.endif
-USE_TOOLS+= gmake
+USE_TOOLS+= automake gmake
USE_MAKEINFO= # defined
.include "../../devel/readline/buildlink3.mk"
@@ -70,8 +70,8 @@ PLIST_SRC+= ${PKGDIR}/PLIST
LIBS+= ${LDFLAGS}
pre-configure:
- cd ${WRKSRC} && ${AUTORECONF} --force
-# cd ${WRKSRC} && ${AUTOMAKE}
+ cd ${WRKSRC} && autoreconf --force
+# cd ${WRKSRC} && automake
#post-build:
# cd ${WRKSRC}/doc ; \
@@ -81,5 +81,4 @@ pre-configure:
post-install:
@${CHMOD} a+r ${PREFIX}/share/examples/zebra/*
-.include "../../mk/automake.mk"
.include "../../mk/bsd.pkg.mk"