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 /games/xracer | |
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 'games/xracer')
-rw-r--r-- | games/xracer/Makefile | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/games/xracer/Makefile b/games/xracer/Makefile index 0e8d04a3d10..95b1ce95aef 100644 --- a/games/xracer/Makefile +++ b/games/xracer/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.33 2005/06/01 18:02:53 jlam Exp $ +# $NetBSD: Makefile,v 1.34 2005/06/01 20:08:00 jlam Exp $ # DISTNAME= xracer-0.96.9 @@ -12,17 +12,15 @@ COMMENT= XRacer is a clone of the popular Psygnosis game Wipeout BUILD_USES_MSGFMT= # defined -USE_TOOLS+= gmake +USE_TOOLS+= automake14 gmake USE_PERL5= # defined PERL5_PACKLIST= ${PERL5_SITEARCH}/auto/XRacer/.packlist USE_LIBTOOL= # defined - GNU_CONFIGURE= # defined -AUTOMAKE_REQD= 1.4 pre-configure: - cd ${WRKSRC} && ${AUTOMAKE} --gnu && ${AUTOCONF} + cd ${WRKSRC} && automake --gnu && autoconf pre-patch: .for perlfile in blender2track/xracer-blender2track.pl \ @@ -41,5 +39,4 @@ pre-patch: .include "../../graphics/Mesa/buildlink3.mk" .include "../../graphics/jpeg/buildlink3.mk" .include "../../mk/x11.buildlink3.mk" -.include "../../mk/automake.mk" .include "../../mk/bsd.pkg.mk" |