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 /wm/afterstep1 | |
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 'wm/afterstep1')
-rw-r--r-- | wm/afterstep1/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/wm/afterstep1/Makefile b/wm/afterstep1/Makefile index 6bbaf401b53..8a30c0cf2cf 100644 --- a/wm/afterstep1/Makefile +++ b/wm/afterstep1/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2005/06/01 18:03:24 jlam Exp $ +# $NetBSD: Makefile,v 1.6 2005/06/01 20:08:01 jlam Exp $ DISTNAME= AfterStep-1.8.11 PKGNAME= ${DISTNAME:S/AfterStep/afterstep/} @@ -15,8 +15,8 @@ COMMENT= NeXT-like window manager for X11 DEPENDS+= asclock-[0-9]*:../../time/asclock DEPENDS+= xp-[0-9]*:../../x11/xp -AUTOCONF_REQD= 2.13 GNU_CONFIGURE= YES +USE_TOOLS+= autoconf213 USE_LIBTOOL= YES CONFIGURE_ARGS+= --disable-staticlibs @@ -34,13 +34,12 @@ post-patch: pre-configure: cd ${WRKSRC} && \ - ${AUTOCONF} --localdir=autoconf autoconf/configure.in > configure; \ + autoconf --localdir=autoconf autoconf/configure.in > configure; \ ${CHMOD} 755 configure; \ - ${AUTOHEADER} --localdir=autoconf autoconf/configure.in > autoconf/config.h.in; + autoheader --localdir=autoconf autoconf/configure.in > autoconf/config.h.in; .include "../../audio/rplay/buildlink3.mk" .include "../../graphics/jpeg/buildlink3.mk" .include "../../graphics/png/buildlink3.mk" .include "../../graphics/xpm/buildlink3.mk" -.include "../../mk/autoconf.mk" .include "../../mk/bsd.pkg.mk" |