From 9f3612f288f61d4973be9bbb22934818a8d5f83f Mon Sep 17 00:00:00 2001 From: kristerw Date: Sun, 13 Apr 2003 17:37:48 +0000 Subject: Update xmess to 0.67.2. Changes since 0.66.2 include: - Almost everything from MESS CVS. - Added support for konamigx to info.c. (David Haywood) - Building the neomame target now works. (Steve Behling) - Using XFree86 3.3.6 fbdev in 32bpp now works. (Steve Behling) - USB patches to take recent FreeBSD changes into account. (Matthew N. Dodd) --- emulators/xmess/Makefile | 8 ++--- emulators/xmess/distinfo | 10 +++---- emulators/xmess/patches/patch-aa | 65 +++++++++++++++++++++++++++++++++++++--- emulators/xmess/patches/patch-ae | 20 ++++++++----- 4 files changed, 82 insertions(+), 21 deletions(-) (limited to 'emulators') diff --git a/emulators/xmess/Makefile b/emulators/xmess/Makefile index 3d2f757a727..30a08c3e3e0 100644 --- a/emulators/xmess/Makefile +++ b/emulators/xmess/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.33 2003/03/20 19:03:27 kristerw Exp $ +# $NetBSD: Makefile,v 1.34 2003/04/13 17:37:48 kristerw Exp $ # -DISTNAME= xmame-0.66.2 -PKGNAME= xmess-0.66.2 +DISTNAME= xmame-0.67.2 +PKGNAME= xmess-0.67.2 CATEGORIES= emulators games x11 MASTER_SITES= http://x.mame.net/download/ EXTRACT_SUFX= .tar.bz2 @@ -42,7 +42,7 @@ MAKE_FLAGS+= SOUND_ESOUND=1 MAME_DISP_METHOD?= x11 # Determine which CPU-specific code to use. -.for MARCH in i386 alpha m68k +.for MARCH in alpha m68k i386 ia64 MAME_CPU.${MARCH}?= ${MARCH} .endfor .if !defined(MAME_CPU.${MACHINE_ARCH}) diff --git a/emulators/xmess/distinfo b/emulators/xmess/distinfo index f551a70614c..163f6f5e39e 100644 --- a/emulators/xmess/distinfo +++ b/emulators/xmess/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.8 2003/03/20 19:03:28 kristerw Exp $ +$NetBSD: distinfo,v 1.9 2003/04/13 17:37:48 kristerw Exp $ -SHA1 (xmame-0.66.2.tar.bz2) = 7b8f77d5fa75c65e4b3129992c995d549e7dddae -Size (xmame-0.66.2.tar.bz2) = 8340466 bytes -SHA1 (patch-aa) = 8186324a2e4e6f7db3f1f9ba303dec40fc750460 +SHA1 (xmame-0.67.2.tar.bz2) = 81df459b8f5ad1f1b218124730c0ce9b795a0b7c +Size (xmame-0.67.2.tar.bz2) = 8453281 bytes +SHA1 (patch-aa) = f20dd759dc9350dc37e3be4a2b7e4aa0b1c85129 SHA1 (patch-ab) = af6d9ef293ed2c840eb6cfcada77b8556aeeddd3 SHA1 (patch-ad) = e389102fc29bd7c40711cfd493bad902ee102ae2 -SHA1 (patch-ae) = cb3ca8d0990f33064186ca7967d820824f924482 +SHA1 (patch-ae) = f30af6853b77307126ad4a230d4237bc570a0ca4 diff --git a/emulators/xmess/patches/patch-aa b/emulators/xmess/patches/patch-aa index 8ce5791cf5c..97e67079f7f 100644 --- a/emulators/xmess/patches/patch-aa +++ b/emulators/xmess/patches/patch-aa @@ -1,11 +1,68 @@ -$NetBSD: patch-aa,v 1.16 2003/02/14 21:58:36 kristerw Exp $ ---- makefile.unix.orig Fri Feb 14 22:29:58 2003 -+++ makefile.unix Fri Feb 14 22:30:10 2003 -@@ -33,7 +33,6 @@ +$NetBSD: patch-aa,v 1.17 2003/04/13 17:37:48 kristerw Exp $ +--- makefile.unix.orig Sun Apr 13 18:22:02 2003 ++++ makefile.unix Sun Apr 13 18:31:53 2003 +@@ -33,7 +33,7 @@ ########################################################################### # Uncomment one of these. -TARGET = mame ++# TARGET = mame # TARGET = mess # TARGET = neomame # TARGET = cpmame +@@ -85,7 +85,7 @@ + # just as well. However, stay away from the `cc' Ultrix compiler if + # possible. + +-CC = gcc ++# CC = gcc + # CC = cc + # CC = icc + # CC = c89 +@@ -97,7 +97,7 @@ + + # If you want to use whatever CFLAGS are currently set in your + # environment, then comment this out. +-CFLAGS = ++# CFLAGS = + + + ########################################################################### +@@ -397,7 +397,7 @@ + ########################################################################### + + # i386, GNU asm +-MY_CPU = i386 ++# MY_CPU = i386 + + # i386, no asm -- needed for the Intel C++ compiler, which does not fully + # understand gcc's inline assembly syntax, though you may still enable +@@ -429,7 +429,7 @@ + ########################################################################### + + # Linux +-ARCH = linux ++# ARCH = linux + + # FreeBSD + # ARCH = freebsd +@@ -555,7 +555,7 @@ + X11_MITSHM = 1 + + # Use Xv extension for hardware scaling. +-X11_XV = 1 ++# X11_XV = 1 + + # Enable XFree86 DGA. This also causes "make install" to set the suid bit + # on the executable. +@@ -575,8 +575,8 @@ + # X11LIB = -L/usr/lib/X11 + + # Standard location for XFree86 +-X11INC = -I/usr/X11R6/include +-X11LIB = -L/usr/X11R6/lib ++# X11INC = -I/usr/X11R6/include ++# X11LIB = -L/usr/X11R6/lib + + # Standard location for Sun systems + # X11INC = -I/usr/openwin/include diff --git a/emulators/xmess/patches/patch-ae b/emulators/xmess/patches/patch-ae index 466c6d5fd89..14bbcd51009 100644 --- a/emulators/xmess/patches/patch-ae +++ b/emulators/xmess/patches/patch-ae @@ -1,7 +1,7 @@ -$NetBSD: patch-ae,v 1.7 2003/02/14 21:58:36 kristerw Exp $ ---- doc/xmessrc.dist.orig Fri Feb 14 22:32:17 2003 -+++ doc/xmessrc.dist Fri Feb 14 22:34:15 2003 -@@ -69,15 +69,15 @@ +$NetBSD: patch-ae,v 1.8 2003/04/13 17:37:48 kristerw Exp $ +--- doc/xmessrc.dist.orig Sun Apr 6 23:41:26 2003 ++++ doc/xmessrc.dist Sun Apr 13 19:15:47 2003 +@@ -69,21 +69,17 @@ mouse 1 ### Fileio Related ### @@ -13,14 +13,18 @@ $NetBSD: patch-ae,v 1.7 2003/02/14 21:58:36 kristerw Exp $ +CRC_directory @ROMPATH@/crc snapshot_directory . -cheat_directory /usr/local/share/xmess/cheat -+cheat_directory @SPOOLDIR@/cheat - cheatfile cheat.cdb +-cheatfile cheat.cdb -hiscore_file /usr/local/share/xmess/hiscore.dat -history_file /usr/local/share/xmess/history.dat -mameinfo_file /usr/local/share/xmess/mameinfo.dat +hiscore_file @SPOOLDIR@/hiscore.dat -+history_file @SPOOLDIR@/history.dat -+mameinfo_file @SPOOLDIR@/mameinfo.dat ### Mess Related ### language english + fuzzycmp 1 + cheat 0 +-debug 0 ++# debug 0 + + ### Frontend Related ### + clones 1 -- cgit v1.2.3