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 | 2bb24f15f17cde7494cc69e5dac941f474ec8605 (patch) | |
tree | 77aa2e325b82a73660278dbb13238e6aac0adca7 /games/xpuyopuyo | |
parent | a78a94a4f6f91c29d1969aa948a3f809f479fc73 (diff) | |
download | pkgsrc-2bb24f15f17cde7494cc69e5dac941f474ec8605.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/xpuyopuyo')
-rw-r--r-- | games/xpuyopuyo/Makefile | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/games/xpuyopuyo/Makefile b/games/xpuyopuyo/Makefile index cc9f8f497fb..b4098af4546 100644 --- a/games/xpuyopuyo/Makefile +++ b/games/xpuyopuyo/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.31 2005/05/22 20:08:04 jlam Exp $ +# $NetBSD: Makefile,v 1.32 2005/06/01 20:08:00 jlam Exp $ DISTNAME= xpuyopuyo-0.9.1 PKGREVISION= 5 @@ -10,9 +10,8 @@ MAINTAINER= tech-pkg@NetBSD.org HOMEPAGE= http://chaos2.org/xpuyopuyo/ COMMENT= Tetris-like puzzle game -AUTOMAKE_REQD= 1.4 USE_DIRS+= gnome1-1.5 -USE_TOOLS+= gmake +USE_TOOLS+= automake14 gmake USE_X11BASE= YES USE_LIBTOOL= YES LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig @@ -24,8 +23,7 @@ CONFIGURE_ENV+= ac_cv_path_GNOME_CONFIG="${GNOME_CONFIG}" GNOME_CONFIG= ${WRKDIR}/gnome-config pre-configure: - cd ${WRKSRC} && ${AUTOHEADER} && ${AUTOMAKE} --gnu && \ - ${AUTORECONF} --force + cd ${WRKSRC} && autoheader && automake --gnu && autoreconf --force ${SED} -e "s,@PREFIX@,${PREFIX},g" ${FILESDIR}/gnome-config \ > ${GNOME_CONFIG} ${CHMOD} +x ${GNOME_CONFIG} @@ -33,5 +31,4 @@ pre-configure: .include "../../audio/libmikmod/buildlink3.mk" .include "../../graphics/xpm/buildlink3.mk" .include "../../x11/gtk/buildlink3.mk" -.include "../../mk/automake.mk" .include "../../mk/bsd.pkg.mk" |