diff options
author | kristerw <kristerw@pkgsrc.org> | 2004-08-14 00:25:13 +0000 |
---|---|---|
committer | kristerw <kristerw@pkgsrc.org> | 2004-08-14 00:25:13 +0000 |
commit | fff198427e7db6cfbf65a71609d03054cca95b3c (patch) | |
tree | cf74863f1e98f597197356c2ce275850c351be7b /emulators/xmame/Makefile | |
parent | 8d575590f57af2896115d52c7ed3cf1ab9473658 (diff) | |
download | pkgsrc-fff198427e7db6cfbf65a71609d03054cca95b3c.tar.gz |
Update xmame to 0.85.
Changes since 0.84.1nb1:
- Everything from MAME 0.85 (http://x.mame.net/changes-mame.html) and
MESS 0.85 (http://x.mame.net/changes-mess.html).
- Added a 2x sinc-based 6-tap filter effect with scanlines, enabled
via "-effect 8" or "-ef 8". (Richard Goedeken)
- Reworked the input code so that it more closely resembles its Windows
counterpart. This adds support for "-steadykey", "-a2d_deadzone" and
"-digital".
- Increased the maximum number of joysticks from 6 to 8 and the maximum
number of buttons per joystick from 16 to 32.
- Mouse buttons may not have been working in recent releases for games
such as Missile Command; they should work now.
- Network support is broken for the time being because of the core
input changes, so please disable XMAME_NET in your makefile. If
you're interested in fixing this, have a look at src/unix/network.c
and the XMAME_NET sections of an older src/inptport.c.
Diffstat (limited to 'emulators/xmame/Makefile')
-rw-r--r-- | emulators/xmame/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/emulators/xmame/Makefile b/emulators/xmame/Makefile index 882608647f0..6fc7e1736ce 100644 --- a/emulators/xmame/Makefile +++ b/emulators/xmame/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.115 2004/07/26 18:40:06 dillo Exp $ +# $NetBSD: Makefile,v 1.116 2004/08/14 00:25:13 kristerw Exp $ # -DISTNAME= xmame-0.84.1 -PKGREVISION= 1 +DISTNAME= xmame-0.85 CATEGORIES= emulators games x11 MASTER_SITES= http://x.mame.net/download/ EXTRACT_SUFX= .tar.bz2 @@ -34,7 +33,9 @@ MAKE_FLAGS+= TARGET="${TARGET:S/x//}" MAKE_FLAGS+= LIBS="${LDFLAGS} ${LIBS}" MAKE_FLAGS+= CFLAGS="${CFLAGS}" MAKE_FLAGS+= X11INC= X11LIB= -MAKE_FLAGS+= XMAME_NET=1 + +# Network support is broken in xmame-0.85 +#MAKE_FLAGS+= XMAME_NET=1 .if !empty(USE_ESOUND:M[Yy][Ee][Ss]) MAKE_FLAGS+= SOUND_ESOUND=1 @@ -120,4 +121,5 @@ do-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/xmame ${INSTALL_DATA} ${WRKSRC}/doc/xmame-doc.txt ${PREFIX}/share/doc/xmame +.include "../../textproc/expat/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |