summaryrefslogtreecommitdiff
path: root/games/xpuyopuyo/Makefile
diff options
context:
space:
mode:
authorjlam <jlam>2000-08-11 20:01:19 +0000
committerjlam <jlam>2000-08-11 20:01:19 +0000
commit22a24f19cfbc45a54ef2e91f71673b929134f337 (patch)
tree93bf802af96e9e92f5b7d3be13e99b5385b7b43d /games/xpuyopuyo/Makefile
parentcbaac3f67de272f9ff5cfa0c4290c1ccf75ad48d (diff)
downloadpkgsrc-22a24f19cfbc45a54ef2e91f71673b929134f337.tar.gz
Update xpuyopuyo to 0.9.1. Changes from version 0.3.8:
* AI code reverted to the 0.2 codebase. * Fixed bug in tournament mode regarding AI selection. * Added --insanity command-line option. * Updated theme 3dRokz. * Made configure more friendly to stow and related programs. * Uses join face when puyo is joined. * New theme: smileys (Brett Smith) * Sound support added * Music added -- still waiting on sound effects * Updates to how hostname is obtained * Fixed compilation error when --disable-network specified. * Counting error on closed shapes fixed: This bug manifested itself when mintomatch == 5 and a square cluster was formed -- the square cluster was counted as 7 connected puyos, hence a match. Oops. (thanks to Nick Cabatoff for spotting)
Diffstat (limited to 'games/xpuyopuyo/Makefile')
-rw-r--r--games/xpuyopuyo/Makefile24
1 files changed, 19 insertions, 5 deletions
diff --git a/games/xpuyopuyo/Makefile b/games/xpuyopuyo/Makefile
index c73a537dc9d..7b3ceba4b02 100644
--- a/games/xpuyopuyo/Makefile
+++ b/games/xpuyopuyo/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.3 2000/05/29 16:40:55 jlam Exp $
+# $NetBSD: Makefile,v 1.4 2000/08/11 20:01:19 jlam Exp $
-DISTNAME= xpuyopuyo-0.3.8
+DISTNAME= xpuyopuyo-0.9.1
CATEGORIES= games x11
MASTER_SITES= http://chaos2.org/xpuyopuyo/ \
http://lenin.dabney.caltech.edu./~justins/xpuyopuyo/
@@ -8,11 +8,25 @@ MASTER_SITES= http://chaos2.org/xpuyopuyo/ \
MAINTAINER= jlam@netbsd.org
HOMEPAGE= http://chaos2.org/xpuyopuyo/
+BUILD_DEPENDS+= autoreconf:../../devel/autoconf
DEPENDS+= gtk+-1.2.*:../../x11/gtk
+DEPENDS+= libmikmod>=3.1.9:../../audio/libmikmod
DEPENDS+= xpm-*:../../graphics/xpm
-USE_X11BASE= yes
-GNU_CONFIGURE= yes
-CONFIGURE_ARGS+= --without-gnome
+USE_X11BASE= # defined
+USE_LIBTOOL= # defined
+LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig
+
+GNU_CONFIGURE= # defined
+CONFIGURE_ARGS+= --with-gnome # install desktop and pixmap files
+CONFIGURE_ENV+= ac_cv_path_GNOME_CONFIG="${GNOME_CONFIG}"
+
+GNOME_CONFIG= ${WRKDIR}/gnome-config
+
+pre-configure:
+ cd ${WRKSRC} && autoreconf
+ ${SED} -e "s,@PREFIX@,${PREFIX},g" ${FILESDIR}/gnome-config \
+ > ${GNOME_CONFIG}
+ ${CHMOD} +x ${GNOME_CONFIG}
.include "../../mk/bsd.pkg.mk"