Update to xmame/mess 0.100; from maintainer.

add amd64 support.  aanrio@ ok.
This commit is contained in:
fgsch 2005-10-02 01:39:37 +00:00
parent aa281dc192
commit 82b2205b2f
60 changed files with 1721 additions and 962 deletions

View File

@ -1,37 +1,38 @@
# $OpenBSD: Makefile,v 1.12 2004/11/27 10:39:14 espie Exp $
# $OpenBSD: Makefile,v 1.13 2005/10/02 01:39:37 fgsch Exp $
COMMENT= "emulates arcade machines and old home computers"
COMMENT-mame= "emulates a massive variety of arcade machines"
COMMENT-mess= "emulates game consoles and old home computers"
VERSION= 0.56.2
VERSION= 0.100
DISTNAME= xmame-${VERSION}
CATEGORIES= emulators games
MASTER_SITES= ${HOMEPAGE}/download/ \
ftp://ftp.kaupp.cx/pub/xmame/
MASTER_SITES0= http://www.mame.net/zips/
MASTER_SITES1= http://www.sys2064.com/files/mame/
MASTER_SITES2= ${MASTER_SITE_BACKUP}
MASTER_SITES= ${HOMEPAGE}/download/ \
ftp://ftp.kaupp.cx/pub/xmame/
MASTER_SITES0= http://www.mameworld.net/highscore/
MASTER_SITES1= http://www.arcade-history.com/download/
MASTER_SITES2= http://cheat.retrogames.com/ \
${MASTER_SITE_BACKUP}
HOMEPAGE= http://x.mame.net
MAINTAINER= Claudio Castiglia <ccastig@softhome.net>
MAINTAINER= Claudio Castiglia <ccastig@mail.ru>
HISCORE_FILE= hsdat7.zip
HISTORY_FILE= history.zip
HISCORE_FILE= uhsdat${VERSION:S/.//}.zip
HISTORY_FILE= history1_02.zip
CHEAT_FILE= cheat.zip
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${HISCORE_FILE}:0 ${HISTORY_FILE}:1 \
${CHEAT_FILE}:2
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${HISCORE_FILE}:0 \
${HISTORY_FILE}:1 ${CHEAT_FILE}:2
# Need to know endianness
ONLY_FOR_ARCHS= alpha hppa i386 m68k powerpc sparc
ONLY_FOR_ARCHS= amd64 alpha hppa i386 m68k powerpc sparc
PERMIT_PACKAGE_CDROM= "may not sell"
PERMIT_PACKAGE_FTP= "may not sell"
PERMIT_DISTFILES_CDROM= "may not sell"
PERMIT_DISTFILES_FTP= "may not sell"
WANTLIB= X11 Xext Xxf86dga Xxf86vm c m usbhid z
WANTLIB= X11 Xext Xv Xxf86dga Xxf86vm c m usbhid z
EXTRACT_SUFX= .tar.bz2
@ -42,69 +43,74 @@ USE_X11= Yes
MULTI_PACKAGES= -mame -mess
PKGNAME= xmame+xmess-${VERSION}p0
PKGNAME-mame= xmame-${VERSION}p0
PKGNAME-mess= xmess-${VERSION}p0
PKGNAME= xmame+xmess-${VERSION}
PKGNAME-mame= xmame-${VERSION}
PKGNAME-mess= xmess-${VERSION}
VIDEOF= x11 gl sdl
FLAVORS= x11 sdl
FLAVORS+= esd
FLAVORS= ${VIDEOF}
# FLAVORS+= arts esd
#XXX arts coredumps, net broken
#FLAVORS+= arts net
FLAVOR?= x11
EXFL?=
EXFI?=
# Video flavors are mutually exclusive
.for i in ${FLAVOR:L}
. if ${VIDEOF:L:M${i}}
EXFL+= ${i}
. if empty (EXFI)
EXFI+= ${i}
. endif
. endif
.endfor
.if ${EXFL} != ${EXFI}
ERRORS+= "Fatal: Mutually exclusive flavors: ${EXFL}."
.if ${FLAVOR:L:Msdl} && ${FLAVOR:L:Mx11}
ERRORS+= "Fatal: Please select only one video flavor."
DISPLAY_METHOD=
.endif
# Default video flavor is X11
.if empty (EXFI)
FLAVOR+= x11
.endif
.if ${FLAVOR:L:Msdl}
.if ${FLAVOR:L:Msdl}
DISPLAY_METHOD= SDL
LIB_DEPENDS+= SDL.:sdl-*-!no_x11:devel/sdl
.elif ${FLAVOR:L:Mgl}
DISPLAY_METHOD= xgl
LIB_DEPENDS+= jpeg.::graphics/jpeg
.else
DISPLAY_METHOD= x11
LIB_DEPENDS+= jpeg.::graphics/jpeg
MAKE_FLAGS+= X11_OPENGL=1
.endif
# XXX coredump
#.if ${FLAVOR:L:Marts}
#MAKE_FLAGS+= SOUND_ARTS_SMOTEK=1
#LIB_DEPENDS+= artsc::x11/kde/libs2
#.if ${FLAVOR:L:Marts}
#LIB_DEPENDS+= artsc::x11/kde/arts3
#MAKE_FLAGS+= SOUND_ARTS_SMOTEK=1 SOUND_ARTS_TEIRA=1
#.endif
#
#.if ${FLAVOR:L:Mesd}
#MAKE_FLAGS+= SOUND_ESOUND=1
#LIB_DEPENDS+= esd::audio/esound
# XXX broken
#.if ${FLAVOR:L:Mnet}
#MAKE_FLAGS+= XMAME_NET=1
#.endif
.if ${FLAVOR:L:Mesd}
LIB_DEPENDS+= esd::audio/esound
MAKE_FLAGS+= SOUND_ESOUND=1
.endif
.if ${MACHINE_ARCH} == "i386"
BUILD_DEPENDS+= nasm::devel/nasm
MAKE_FLAGS+= MY_CPU=i386 \
X86_ASM_68000=1 \
EFFECT_MMX_ASM=1
. if ${DISPLAY_METHOD} == "x11"
MAKE_FLAGS+= X11_DGA=1
. endif
.elif ${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "m68k" || \
${MACHINE_ARCH} == "amd64"
MAKE_FLAGS+= MY_CPU=${MACHINE_ARCH}
.elif ${MACHINE_ARCH} == "hppa" || ${MACHINE_ARCH} == "powerpc" || \
${MACHINE_ARCH} == "sparc"
MAKE_FLAGS+= MY_CPU=risc
.endif
LIB_DEPENDS+= expat::textproc/expat
MAKE_ENV= PREFIX="${PREFIX}"
MAKE_FILE= Makefile.OpenBSD
FAKE_FLAGS= ${MAKE_FLAGS}
MAKE_FLAGS+= ARCH=openbsd \
CC="${CC}" CFLAGS="${CFLAGS} -DRTLD_GLOBAL=0" \
DISPLAY_METHOD="${DISPLAY_METHOD}" \
INCLUDES="-I${LOCALBASE}/include" LIBS="-L${LOCALBASE}/lib" \
X11INC="-I${X11BASE}/include" X11LIB="-L${X11BASE}/lib" \
GLLIBS="-pthread" \
INCLUDES="-I${LOCALBASE}/include" \
LIBS="-L${LOCALBASE}/lib -lexpat -lz" GLLIBS="" \
INSTALL_PROGRAM_DIR="${INSTALL_PROGRAM_DIR}" \
INSTALL_MAN_DIR="${INSTALL_MAN_DIR}" \
INSTALL_DATA_DIR="${INSTALL_DATA_DIR}" \
@ -115,46 +121,52 @@ MAKE_FLAGS+= ARCH=openbsd \
SYSCONFDIR="${SYSCONFDIR}" \
JOY_USB=1
DOCS= changes.mame changes.mess changes.opengl changes.unix credits.mess \
dga2.txt gamelist.mame gamelist.mess imgtool.txt liesmich.unix \
messroms.txt multiplayer-readme.txt old-changes.mess readme.mame \
readme.mess xmame-doc-1.html xmame-doc-2.html xmame-doc-3.html \
xmame-doc-4.html xmame-doc-5.html xmame-doc-6.html xmame-doc-7.html \
xmame-doc-8.html xmame-doc.html xmame-doc.lyx xmame-doc.man.skel \
xmame-doc.txt xmame-gdoc-1.html xmame-gdoc-2.html xmame-gdoc-3.html \
xmame-gdoc-4.html xmame-gdoc-5.html xmame-gdoc-6.html \
xmame-gdoc-7.html xmame-gdoc-8.html xmame-gdoc.html xmame.css
.if ${MACHINE_ARCH} == "i386"
BUILD_DEPENDS+= nasm::devel/nasm
MAKE_FLAGS+= MY_CPU=i386 \
X86_ASM_68000=1 \
NASM_FMT="-f elf" \
ASM_STRIP="src/unix/contrib/porting/strip_"
. if ${DISPLAY_METHOD} == "x11"
MAKE_FLAGS+= X11_DGA=1
. elif ${DISPLAY_METHOD} != "SDL"
MAKE_FLAGS+= JOY_I386=1
. endif
.elif ${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "m68k"
MAKE_FLAGS+= MY_CPU=${MACHINE_ARCH}
.elif ${MACHINE_ARCH} == "hppa" || ${MACHINE_ARCH} == "powerpc" || \
${MACHINE_ARCH} == "sparc"
MAKE_FLAGS+= MY_CPU=risc
.endif
NO_REGRESS= Yes
MAME_EXTBIN= romcmp xml2info
MESS_EXTBIN= chdman dat2html imgtool
DOCS= changes.opengl changes.unix dga2.txt liesmich.unix \
multiplayer-readme.txt xmame-doc-2.html xmame-doc-3.html \
xmame-doc-4.html xmame-doc-5.html xmame-doc-6.html \
xmame-doc-7.html xmame-doc.html xmame-doc.lyx \
xmame-doc.man.skel xmame-doc.txt xmame-gdoc-1.html \
xmame-gdoc-2.html xmame-gdoc-3.html xmame-gdoc-4.html \
xmame-gdoc-5.html xmame-gdoc-6.html xmame-gdoc-7.html \
xmame-gdoc-8.html xmame-gdoc.html xmame.css xmamerc.dist \
xmessrc.dist
MESS_DOCS= imgtool.txt messnew.txt style.css wintoc.xml faq.htm \
credits.htm messroms.txt images/logo.gif windows/update.htm \
windows/osmenu.htm windows/install.htm windows/compile.htm \
windows/guiuse.htm windows/main.htm windows/choice.htm \
windows/config.htm windows/win32cmd.htm windows/guiconf.htm \
windows/control.htm windows/images/iniicon.gif \
windows/images/tree.gif windows/images/wzip.gif \
windows/images/propsnd.gif windows/images/propd3d.gif \
windows/images/command.gif windows/images/newmenu.gif \
windows/images/keybcnt.gif windows/images/propmsc.gif \
windows/images/startup.gif windows/images/propadv.gif \
windows/images/gui.gif windows/images/frog.gif \
windows/images/oldmenu.gif windows/images/propcnt.gif \
windows/images/prop.gif windows/images/props.gif \
windows/mgebios.htm windows/instbios.htm windows/runsw.htm \
windows/suppsys.htm
post-extract:
${UNZIP} -u ${FULLDISTDIR}/${HISCORE_FILE} -d ${WRKDIR}
${UNZIP} -u ${FULLDISTDIR}/${HISTORY_FILE} -d ${WRKDIR}
${UNZIP} -u ${FULLDISTDIR}/${CHEAT_FILE} -d ${WRKDIR}
cp ${WRKSRC}/doc/xmame.6 ${WRKSRC}/doc/xmess.6
post-patch:
@cp ${FILESDIR}/${MAKE_FILE} ${WRKSRC}
post-install:
mv ${PREFIX}/bin/xmame.${DISPLAY_METHOD} ${PREFIX}/bin/xmame
mv ${PREFIX}/bin/xmess.${DISPLAY_METHOD} ${PREFIX}/bin/xmess
.for i in ${MAME_EXTBIN} ${MESS_EXTBIN}
${INSTALL_PROGRAM} ${WRKSRC}/${i} ${PREFIX}/bin
.endfor
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/xmame/img
${INSTALL_DATA} ${WRKSRC}/doc/img/xmame.jpg \
${PREFIX}/share/doc/xmame/img
@ -162,16 +174,23 @@ post-install:
.for i in ${DOCS}
${INSTALL_DATA} ${WRKSRC}/doc/${i} ${PREFIX}/share/doc/xmame
.endfor
${INSTALL_DATA_DIR} ${PREFIX}/share/xmame
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/xmame/mame
${INSTALL_DATA} ${WRKSRC}/doc/mame/* ${PREFIX}/share/doc/xmame/mame
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/xmame/mess/images
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/xmame/mess/windows/images
.for i in ${MESS_DOCS}
${INSTALL_DATA} ${WRKSRC}/doc/mess/${i} \
${PREFIX}/share/doc/xmame/mess/${i}
.endfor
${INSTALL_DATA_DIR} ${PREFIX}/share/xmame/ctrlr
${INSTALL_DATA} ${FILESDIR}/xmame-${DISPLAY_METHOD}rc \
${PREFIX}/share/xmame/xmamerc
perl -i -pe 's:%%PREFIX%%:${TRUEPREFIX}:' ${PREFIX}/share/xmame/xmamerc
${INSTALL_DATA} ${WRKDIR}/*.dat ${PREFIX}/share/xmame
${INSTALL_DATA} ${WRKDIR}/*.txt ${PREFIX}/share/doc/xmame
${INSTALL_DATA_DIR} ${PREFIX}/share/xmess
${INSTALL_DATA} ${WRKSRC}/ctrlr/* ${PREFIX}/share/xmame/ctrlr
${INSTALL_DATA} ${WRKDIR}/*.{dat,txt} ${PREFIX}/share/xmame
${INSTALL_DATA_DIR} ${PREFIX}/share/xmess/hash
${INSTALL_DATA} ${WRKSRC}/hash/* ${PREFIX}/share/xmess/hash
${INSTALL_DATA} ${FILESDIR}/xmess-${DISPLAY_METHOD}rc \
${PREFIX}/share/xmess/xmessrc
perl -i -pe 's:%%PREFIX%%:${TRUEPREFIX}:' ${PREFIX}/share/xmess/xmessrc
${INSTALL_DATA} ${WRKSRC}/doc/sysinfo.dat ${PREFIX}/share/xmess
${INSTALL_DATA} ${WRKSRC}/doc/mess/sysinfo.dat ${PREFIX}/share/xmess
.include <bsd.port.mk>

View File

@ -1,16 +1,16 @@
MD5 (cheat.zip) = b745ea4df1a3a517c00fedae1ee49a14
MD5 (history.zip) = 69da5c33e6a78092c6cd75cbeb737c6a
MD5 (hsdat7.zip) = 9e4a7e36448895f13128a675327e34e4
MD5 (xmame-0.56.2.tar.bz2) = e43dd5e087f954351948fb9848485924
RMD160 (cheat.zip) = a028c026c940c418db7c5f5f44a10e3cf8f8b953
RMD160 (history.zip) = fe0201b578135aa0d2cfa22346adb799e4169cdf
RMD160 (hsdat7.zip) = 908f7876f2735ae8d7b55c9a4f6d833323367b55
RMD160 (xmame-0.56.2.tar.bz2) = 96720c50ae5c31f96987185ba4641506c3b40945
SHA1 (cheat.zip) = 6013bf220c74f1709e6d9c7901f9c64dfbb1a9cd
SHA1 (history.zip) = 194894b05620a1d9d4800634e0a7d91bc67d0ff2
SHA1 (hsdat7.zip) = c55a193639f64156d70a832797e26371147893d9
SHA1 (xmame-0.56.2.tar.bz2) = a6fa58be23231d919540f5b3c619a1f2565b03e8
SIZE (cheat.zip) = 568911
SIZE (history.zip) = 187374
SIZE (hsdat7.zip) = 25137
SIZE (xmame-0.56.2.tar.bz2) = 7049295
MD5 (cheat.zip) = 0ff8ce7a39439d813760e1a8e57af62a
MD5 (history1_02.zip) = 5e775f567e85c5c68da56947f02966fa
MD5 (uhsdat0100.zip) = 09480efe7251a508a9f88b512fa22a37
MD5 (xmame-0.100.tar.bz2) = c289797531d540853c835a2bb9fad8bc
RMD160 (cheat.zip) = 1302c3ec942862a7e1d0e3fa5ff4b5f3ae4e13a6
RMD160 (history1_02.zip) = f394ca4cccb23db07779741a4a9ff6fe6a727756
RMD160 (uhsdat0100.zip) = ca60f0ee140dcd595b22117dbc76a6858db998ee
RMD160 (xmame-0.100.tar.bz2) = dc89f1f6312f6567a8a665169294569c252775ab
SHA1 (cheat.zip) = 3eaa1be4a85a888de99ae4af38cc850e8a957b8e
SHA1 (history1_02.zip) = ba3367695950f0feb921843fd06ba13e8cca1087
SHA1 (uhsdat0100.zip) = 23ea6f88a512a20a859e03535d7b8b1798927e3c
SHA1 (xmame-0.100.tar.bz2) = 3846ca964b8aff60cf65ab494ee75703b03263db
SIZE (cheat.zip) = 944626
SIZE (history1_02.zip) = 1569593
SIZE (uhsdat0100.zip) = 62900
SIZE (xmame-0.100.tar.bz2) = 15905255

View File

@ -1,7 +1,4 @@
# $OpenBSD: Makefile.OpenBSD,v 1.2 2001/08/12 23:03:10 naddy Exp $
# $OpenBSD: Makefile.OpenBSD,v 1.3 2005/10/02 01:39:37 fgsch Exp $
all install:
@for i in mame mess; do \
${MAKE} -f makefile.unix TARGET=$$i \
XMAMEROOT=${PREFIX}/share/x$$i $@; \
done
@for i in mame mess; do ${MAKE} TARGET=$$i $@; done

View File

@ -1,6 +1,81 @@
# $OpenBSD: xmame-SDLrc,v 1.2 2002/02/05 15:27:17 naddy Exp $
# $OpenBSD: xmame-SDLrc,v 1.3 2005/10/02 01:39:37 fgsch Exp $
### xmame running parameters ###
### Video Related ###
video-mode 0
fullscreen 0
arbheight 0
widthscale 1
heightscale 1
effect 6
autodouble 1
frameskipper 1
throttle 1
frames_to_run 0
sleepidle 1
autoframeskip 1
maxautoframeskip 8
frameskip 0
brightness 1.000000
pause_brightness 0.650000
gamma 1.000000
norotate 0
ror 0
rol 0
autoror 0
autorol 0
flipx 0
flipy 0
### Use additional game artwork? ###
artwork 1
use_backdrops 1
use_overlays 1
use_bezels 1
artwork_crop 0
artwork_scale 1
### Vector Games Related ###
beam 1.000000
flicker 0.000000
intensity 1.500000
antialias 1
translucency 1
hardware-vectors 1
### Aspect ratio handling ###
keepaspect 1
perfectaspect 0
displayaspectratio 1.333333
### SDL Related ###
doublebuf 1
grabinput 0
alwaysusemouse 0
cursor 0
### Video Mode Selection Related ###
### Input device options ###
joytype 0
analogstick 0
joyusb-calibrate 0
ugcicoin 0
steadykey 0
a2d_deadzone 0.300000
# ctrlr <NULL> (not set)
digital none
usbpspad 0
rapidfire 0
### Sound Related ###
samples 1
samplefreq 44100
bufsize 3.000000
volume -3
# audiodevice <NULL> (not set)
# mixerdevice <NULL> (not set)
### Digital sound related ###
# dsp-plugin <NULL> (not set)
timer 0
@ -8,64 +83,38 @@ timer 0
### Sound mixer related ###
# sound-mixer-plugin <NULL> (not set)
### Video Related ###
bpp 0
heightscale 1
widthscale 1
autodouble 1
dirty 1
scanlines 1
artwork 1
frameskipper 0
throttle 1
sleepidle 0
autoframeskip 1
maxautoframeskip 8
frameskip 0
brightness 100
gamma-correction 1.000000
### File I/O-related ###
rompath /usr/local/share/xmame/roms
samplepath /usr/local/share/xmame/samples
inipath /usr/local/share/xmame/ini
cfg_directory $HOME/.xmame/cfg
nvram_directory $HOME/.xmame/nvram
memcard_directory $HOME/.xmame/memcard
input_directory $HOME/.xmame/inp
hiscore_directory $HOME/.xmame/hi
state_directory $HOME/.xmame/sta
artwork_directory /usr/local/share/xmame/artwork
snapshot_directory /usr/local/share/xmame/snap
diff_directory $HOME/.xmame/diff
ctrlr_directory /usr/local/share/xmame/ctrlr
cheat_file /usr/local/share/xmame/cheat.dat
hiscore_file /usr/local/share/xmame/hiscore.dat
history_file /usr/local/share/xmame/history.dat
mameinfo_file /usr/local/share/xmame/mameinfo.dat
# record <NULL> (not set)
# playback <NULL> (not set)
### Vector Games Related ###
# vectorres <NULL> (not set)
beam 1.000000
flicker 0.000000
antialias 1
translucency 1
### SDL Related ###
listmodes 0
fullscreen 0
modenumber -1
### Sound Related ###
sound 1
samples 1
samplefreq 22050
bufsize 3.000000
volume -3
# audiodevice <NULL> (not set)
# mixerdevice <NULL> (not set)
### Input Related ###
joytype 0
analogstick 0
joydevname /dev/joy
mouse 1
### Fileio Related ###
rompath %%PREFIX%%/share/xmame
spooldir %%PREFIX%%/share/xmame
screenshotdir .
cheatfile %%PREFIX%%/share/xmame/cheat.dat
hiscorefile %%PREFIX%%/share/xmame/hiscore.dat
historyfile %%PREFIX%%/share/xmame/history.dat
mameinfofile %%PREFIX%%/share/xmame/mameinfo.dat
### Mame Related ###
defaultgame pacman
### MAME Related ###
defaultgame robby
language english
fuzzycmp 1
cheat 0
skip_disclaimer 0
skip_gameinfo 0
skip_validitychecks 1
crconly 0
bios default
# state <NULL> (not set)
### Frontend Related ###
clones 1

View File

@ -1,6 +1,108 @@
# $OpenBSD: xmame-x11rc,v 1.2 2002/02/05 15:27:17 naddy Exp $
# $OpenBSD: xmame-x11rc,v 1.3 2005/10/02 01:39:37 fgsch Exp $
### xmame running parameters ###
### Video Related ###
video-mode 0
fullscreen 0
arbheight 0
widthscale 1
heightscale 1
effect 6
autodouble 1
frameskipper 1
throttle 1
frames_to_run 0
sleepidle 1
autoframeskip 1
maxautoframeskip 8
frameskip 0
brightness 1.000000
pause_brightness 0.650000
gamma 1.000000
norotate 0
ror 0
rol 0
autoror 0
autorol 0
flipx 0
flipy 0
### Use additional game artwork? ###
artwork 1
use_backdrops 1
use_overlays 1
use_bezels 1
artwork_crop 0
artwork_scale 1
### Vector Games Related ###
beam 1.000000
flicker 0.000000
intensity 1.500000
antialias 1
translucency 1
hardware-vectors 1
### Aspect ratio handling ###
keepaspect 1
perfectaspect 0
displayaspectratio 1.333333
### X11 Related ###
#geometry
xsync 1
root_window_id 0
run-in-root-window 0
### X11-window Related ###
mitshm 1
### DGA Related ###
vsync-pagelimit 2
### Video Mode Selection Related ###
### XV Related ###
force-yuv 0
perfect-yuv 1
### OpenGL Related ###
gldblbuffer 1
gltexture_size 0
glbilinear 1
glbeam 1.000000
glantialias 0
glantialiasvec 0
cabview 0
cabinet glmamejau
### X11-input related ###
grabmouse 0
grabkeyboard 0
alwaysusemouse 0
cursor 0
winkeys 0
### Input device options ###
joytype 0
analogstick 0
joyusb-calibrate 0
ugcicoin 0
steadykey 0
a2d_deadzone 0.300000
# ctrlr <NULL> (not set)
digital none
usbpspad 0
rapidfire 0
### Sound Related ###
samples 1
samplefreq 44100
bufsize 3.000000
volume -3
# audiodevice <NULL> (not set)
# mixerdevice <NULL> (not set)
### Digital sound related ###
# dsp-plugin <NULL> (not set)
timer 0
@ -8,83 +110,38 @@ timer 0
### Sound mixer related ###
# sound-mixer-plugin <NULL> (not set)
### Video Related ###
bpp 0
heightscale 1
widthscale 1
autodouble 1
dirty 1
scanlines 1
artwork 1
frameskipper 0
throttle 1
sleepidle 0
autoframeskip 1
maxautoframeskip 8
frameskip 0
brightness 100
gamma-correction 1.000000
### File I/O-related ###
rompath /usr/local/share/xmame/roms
samplepath /usr/local/share/xmame/samples
inipath /usr/local/share/xmame/ini
cfg_directory $HOME/.xmame/cfg
nvram_directory $HOME/.xmame/nvram
memcard_directory $HOME/.xmame/memcard
input_directory $HOME/.xmame/inp
hiscore_directory $HOME/.xmame/hi
state_directory $HOME/.xmame/sta
artwork_directory /usr/local/share/xmame/artwork
snapshot_directory /usr/local/share/xmame/snap
diff_directory $HOME/.xmame/diff
ctrlr_directory /usr/local/share/xmame/ctrlr
cheat_file /usr/local/share/xmame/cheat.dat
hiscore_file /usr/local/share/xmame/hiscore.dat
history_file /usr/local/share/xmame/history.dat
mameinfo_file /usr/local/share/xmame/mameinfo.dat
# record <NULL> (not set)
# playback <NULL> (not set)
### Vector Games Related ###
# vectorres <NULL> (not set)
beam 1.000000
flicker 0.000000
antialias 1
translucency 1
### X11 Related ###
x11-mode 0
### X11-window Related ###
cursor 1
mitshm 1
xsync 1
privatecmap 0
xil 1
mtxil 0
run-in-root-window 0
root_window_id 0
geometry 640x480
### XFree86 DGA Related ###
### Video Mode Selection Related ###
keepaspect 1
displayaspectratio 1.330000
### X11-input related ###
grabmouse 0
winkeys 0
### Sound Related ###
sound 1
samples 1
samplefreq 22050
bufsize 3.000000
volume -3
# audiodevice <NULL> (not set)
# mixerdevice <NULL> (not set)
### Input Related ###
joytype 0
analogstick 0
joydevname /dev/joy
mouse 1
### Fileio Related ###
rompath %%PREFIX%%/share/xmame
spooldir %%PREFIX%%/share/xmame
screenshotdir .
cheatfile %%PREFIX%%/share/xmame/cheat.dat
hiscorefile %%PREFIX%%/share/xmame/hiscore.dat
historyfile %%PREFIX%%/share/xmame/history.dat
mameinfofile %%PREFIX%%/share/xmame/mameinfo.dat
### Mame Related ###
defaultgame pacman
### MAME Related ###
defaultgame robby
language english
fuzzycmp 1
cheat 0
skip_disclaimer 0
skip_gameinfo 0
skip_validitychecks 1
crconly 0
bios default
# state <NULL> (not set)
### Frontend Related ###
clones 1

View File

@ -1,95 +0,0 @@
# $OpenBSD: xmame-xglrc,v 1.2 2002/02/05 15:27:17 naddy Exp $
### xmame running parameters ###
### Digital sound related ###
# dsp-plugin <NULL> (not set)
timer 0
### Sound mixer related ###
# sound-mixer-plugin <NULL> (not set)
### Video Related ###
bpp 0
heightscale 1
widthscale 1
autodouble 1
dirty 1
scanlines 1
artwork 1
frameskipper 0
throttle 1
sleepidle 0
autoframeskip 1
maxautoframeskip 8
frameskip 0
brightness 100
gamma-correction 1.000000
### Vector Games Related ###
# vectorres <NULL> (not set)
beam 1.000000
flicker 0.000000
antialias 1
translucency 1
### OpenGL Related ###
fullscreen 0
gldblbuffer 1
gltexture_size 0
glforceblitmode 0
glext78 1
glbilinear 1
gldrawbitmap 1
glcolormod 1
glbeam 1.000000
glalphablending 1
glantialias 1
gllibname libGL.so
glulibname libGLU.so
cabview 0
cabinet glmamejau
### X11-input related ###
grabmouse 0
winkeys 0
### Sound Related ###
sound 1
samples 1
samplefreq 22050
bufsize 3.000000
volume -3
# audiodevice <NULL> (not set)
# mixerdevice <NULL> (not set)
### Input Related ###
joytype 0
analogstick 0
joydevname /dev/joy
mouse 1
### Fileio Related ###
rompath %%PREFIX%%/share/xmame
spooldir %%PREFIX%%/share/xmame
screenshotdir .
cheatfile %%PREFIX%%/share/xmame/cheat.dat
hiscorefile %%PREFIX%%/share/xmame/hiscore.dat
historyfile %%PREFIX%%/share/xmame/history.dat
mameinfofile %%PREFIX%%/share/xmame/mameinfo.dat
### Mame Related ###
defaultgame pacman
language english
fuzzycmp 1
cheat 0
### Frontend Related ###
clones 1
### Internal verification list commands (only for developers) ###
### Rom Identification Related ###
### General Options ###
loadconfig 1

View File

@ -1,6 +1,81 @@
# $OpenBSD: xmess-SDLrc,v 1.2 2002/02/05 15:27:17 naddy Exp $
# $OpenBSD: xmess-SDLrc,v 1.3 2005/10/02 01:39:37 fgsch Exp $
### xmess running parameters ###
### Video Related ###
video-mode 0
fullscreen 0
arbheight 0
widthscale 1
heightscale 1
effect 6
autodouble 1
frameskipper 1
throttle 1
frames_to_run 0
sleepidle 1
autoframeskip 1
maxautoframeskip 8
frameskip 0
brightness 1.000000
pause_brightness 0.650000
gamma 1.000000
norotate 0
ror 0
rol 0
autoror 0
autorol 0
flipx 0
flipy 0
### Use additional game artwork? ###
artwork 1
use_backdrops 1
use_overlays 1
use_bezels 1
artwork_crop 0
artwork_scale 1
### Vector Games Related ###
beam 1.000000
flicker 0.000000
intensity 1.500000
antialias 1
translucency 1
hardware-vectors 1
### Aspect ratio handling ###
keepaspect 1
perfectaspect 0
displayaspectratio 1.333333
### SDL Related ###
doublebuf 1
grabinput 0
alwaysusemouse 0
cursor 0
### Video Mode Selection Related ###
### Input device options ###
joytype 0
analogstick 0
joyusb-calibrate 0
ugcicoin 0
steadykey 0
a2d_deadzone 0.300000
# ctrlr <NULL> (not set)
digital none
usbpspad 0
rapidfire 0
### Sound Related ###
samples 1
samplefreq 44100
bufsize 3.000000
volume -3
# audiodevice <NULL> (not set)
# mixerdevice <NULL> (not set)
### Digital sound related ###
# dsp-plugin <NULL> (not set)
timer 0
@ -8,65 +83,54 @@ timer 0
### Sound mixer related ###
# sound-mixer-plugin <NULL> (not set)
### Video Related ###
bpp 0
heightscale 1
widthscale 1
autodouble 1
dirty 1
scanlines 1
artwork 1
frameskipper 0
throttle 1
sleepidle 0
autoframeskip 1
maxautoframeskip 8
frameskip 0
brightness 100
gamma-correction 1.000000
### File I/O-related ###
biospath /usr/local/share/xmess/bios
softwarepath /usr/local/share/xmess/software
hash_directory /usr/local/share/xmess/hash
samplepath /usr/local/share/xmess/samples
inipath /usr/local/share/xmess/ini
cfg_directory $HOME/.xmess/cfg
nvram_directory $HOME/.xmess/nvram
memcard_directory $HOME/.xmess/memcard
input_directory $HOME/.xmess/inp
hiscore_directory $HOME/.xmess/hi
state_directory $HOME/.xmess/sta
artwork_directory /usr/local/share/xmess/artwork
snapshot_directory /usr/local/share/xmess/snap
diff_directory $HOME/.xmess/diff
ctrlr_directory /usr/local/share/xmess/ctrlr
cheat_file /usr/local/share/xmess/cheat.dat
hiscore_file /usr/local/share/xmess/hiscore.dat
sysinfo_file /usr/local/share/xmess/sysinfo.dat
messinfo_file /usr/local/share/xmess/messinfo.dat
# record <NULL> (not set)
# playback <NULL> (not set)
### Vector Games Related ###
# vectorres <NULL> (not set)
beam 1.000000
flicker 0.000000
antialias 1
translucency 1
### SDL Related ###
listmodes 0
fullscreen 0
modenumber -1
### Sound Related ###
sound 1
samples 1
samplefreq 22050
bufsize 3.000000
volume -3
# audiodevice <NULL> (not set)
# mixerdevice <NULL> (not set)
### Input Related ###
joytype 0
analogstick 0
joydevname /dev/joy
mouse 1
### Fileio Related ###
rompath %%PREFIX%%/share/xmess
spooldir %%PREFIX%%/share/xmess
screenshotdir .
cheatdir %%PREFIX%%/share/xmess/cheat
crcdir %%PREFIX%%/share/xmess/crc
cheatfile cheat.cdb
hiscorefile %%PREFIX%%/share/xmess/hiscore.dat
historyfile %%PREFIX%%/share/xmess/history.dat
mameinfofile %%PREFIX%%/share/xmess/sysinfo.dat
### Mess Related ###
### MESS specific options ###
# cartridge <NULL> (not set)
# floppydisk <NULL> (not set)
# harddisk <NULL> (not set)
# cylinder <NULL> (not set)
# cassette <NULL> (not set)
# punchcard <NULL> (not set)
# punchtape <NULL> (not set)
# printer <NULL> (not set)
# serial <NULL> (not set)
# parallel <NULL> (not set)
# snapshot <NULL> (not set)
# quickload <NULL> (not set)
# memcard <NULL> (not set)
# cdrom <NULL> (not set)
# ramsize <NULL> (not set)
language english
fuzzycmp 1
cheat 0
skip_disclaimer 0
skip_gameinfo 0
skip_validitychecks 1
crconly 0
bios default
# state <NULL> (not set)
### Frontend Related ###
clones 1

View File

@ -1,6 +1,108 @@
# $OpenBSD: xmess-x11rc,v 1.2 2002/02/05 15:27:17 naddy Exp $
# $OpenBSD: xmess-x11rc,v 1.3 2005/10/02 01:39:37 fgsch Exp $
### xmess running parameters ###
### Video Related ###
video-mode 0
fullscreen 0
arbheight 0
widthscale 1
heightscale 1
effect 6
autodouble 1
frameskipper 1
throttle 1
frames_to_run 0
sleepidle 1
autoframeskip 1
maxautoframeskip 8
frameskip 0
brightness 1.000000
pause_brightness 0.650000
gamma 1.000000
norotate 0
ror 0
rol 0
autoror 0
autorol 0
flipx 0
flipy 0
### Use additional game artwork? ###
artwork 1
use_backdrops 1
use_overlays 1
use_bezels 1
artwork_crop 0
artwork_scale 1
### Vector Games Related ###
beam 1.000000
flicker 0.000000
intensity 1.500000
antialias 1
translucency 1
hardware-vectors 1
### Aspect ratio handling ###
keepaspect 1
perfectaspect 0
displayaspectratio 1.333333
### X11 Related ###
#geometry
xsync 1
root_window_id 0
run-in-root-window 0
### X11-window Related ###
mitshm 1
### DGA Related ###
vsync-pagelimit 2
### Video Mode Selection Related ###
### XV Related ###
force-yuv 0
perfect-yuv 1
### OpenGL Related ###
gldblbuffer 1
gltexture_size 0
glbilinear 1
glbeam 1.000000
glantialias 0
glantialiasvec 0
cabview 0
cabinet glmamejau
### X11-input related ###
grabmouse 0
grabkeyboard 0
alwaysusemouse 0
cursor 0
winkeys 0
### Input device options ###
joytype 0
analogstick 0
joyusb-calibrate 0
ugcicoin 0
steadykey 0
a2d_deadzone 0.300000
# ctrlr <NULL> (not set)
digital none
usbpspad 0
rapidfire 0
### Sound Related ###
samples 1
samplefreq 44100
bufsize 3.000000
volume -3
# audiodevice <NULL> (not set)
# mixerdevice <NULL> (not set)
### Digital sound related ###
# dsp-plugin <NULL> (not set)
timer 0
@ -8,84 +110,54 @@ timer 0
### Sound mixer related ###
# sound-mixer-plugin <NULL> (not set)
### Video Related ###
bpp 0
heightscale 1
widthscale 1
autodouble 1
dirty 1
scanlines 1
artwork 1
frameskipper 0
throttle 1
sleepidle 0
autoframeskip 1
maxautoframeskip 8
frameskip 0
brightness 100
gamma-correction 1.000000
### File I/O-related ###
biospath /usr/local/share/xmess/bios
softwarepath /usr/local/share/xmess/software
hash_directory /usr/local/share/xmess/hash
samplepath /usr/local/share/xmess/samples
inipath /usr/local/share/xmess/ini
cfg_directory $HOME/.xmess/cfg
nvram_directory $HOME/.xmess/nvram
memcard_directory $HOME/.xmess/memcard
input_directory $HOME/.xmess/inp
hiscore_directory $HOME/.xmess/hi
state_directory $HOME/.xmess/sta
artwork_directory /usr/local/share/xmess/artwork
snapshot_directory /usr/local/share/xmess/snap
diff_directory $HOME/.xmess/diff
ctrlr_directory /usr/local/share/xmess/ctrlr
cheat_file /usr/local/share/xmess/cheat.dat
hiscore_file /usr/local/share/xmess/hiscore.dat
sysinfo_file /usr/local/share/xmess/sysinfo.dat
messinfo_file /usr/local/share/xmess/messinfo.dat
# record <NULL> (not set)
# playback <NULL> (not set)
### Vector Games Related ###
# vectorres <NULL> (not set)
beam 1.000000
flicker 0.000000
antialias 1
translucency 1
### X11 Related ###
x11-mode 0
### X11-window Related ###
cursor 1
mitshm 1
xsync 1
privatecmap 0
xil 1
mtxil 0
run-in-root-window 0
root_window_id 0
geometry 640x480
### XFree86 DGA Related ###
### Video Mode Selection Related ###
keepaspect 1
displayaspectratio 1.330000
### X11-input related ###
grabmouse 0
winkeys 0
### Sound Related ###
sound 1
samples 1
samplefreq 22050
bufsize 3.000000
volume -3
# audiodevice <NULL> (not set)
# mixerdevice <NULL> (not set)
### Input Related ###
joytype 0
analogstick 0
joydevname /dev/joy
mouse 1
### Fileio Related ###
rompath %%PREFIX%%/share/xmess
spooldir %%PREFIX%%/share/xmess
screenshotdir .
cheatdir %%PREFIX%%/share/xmess/cheat
crcdir %%PREFIX%%/share/xmess/crc
cheatfile cheat.cdb
hiscorefile %%PREFIX%%/share/xmess/hiscore.dat
historyfile %%PREFIX%%/share/xmess/history.dat
mameinfofile %%PREFIX%%/share/xmess/sysinfo.dat
### Mess Related ###
### MESS specific options ###
# cartridge <NULL> (not set)
# floppydisk <NULL> (not set)
# harddisk <NULL> (not set)
# cylinder <NULL> (not set)
# cassette <NULL> (not set)
# punchcard <NULL> (not set)
# punchtape <NULL> (not set)
# printer <NULL> (not set)
# serial <NULL> (not set)
# parallel <NULL> (not set)
# snapshot <NULL> (not set)
# quickload <NULL> (not set)
# memcard <NULL> (not set)
# cdrom <NULL> (not set)
# ramsize <NULL> (not set)
language english
fuzzycmp 1
cheat 0
skip_disclaimer 0
skip_gameinfo 0
skip_validitychecks 1
crconly 0
bios default
# state <NULL> (not set)
### Frontend Related ###
clones 1

View File

@ -1,96 +0,0 @@
# $OpenBSD: xmess-xglrc,v 1.2 2002/02/05 15:27:17 naddy Exp $
### xmess running parameters ###
### Digital sound related ###
# dsp-plugin <NULL> (not set)
timer 0
### Sound mixer related ###
# sound-mixer-plugin <NULL> (not set)
### Video Related ###
bpp 0
heightscale 1
widthscale 1
autodouble 1
dirty 1
scanlines 1
artwork 1
frameskipper 0
throttle 1
sleepidle 0
autoframeskip 1
maxautoframeskip 8
frameskip 0
brightness 100
gamma-correction 1.000000
### Vector Games Related ###
# vectorres <NULL> (not set)
beam 1.000000
flicker 0.000000
antialias 1
translucency 1
### OpenGL Related ###
fullscreen 0
gldblbuffer 1
gltexture_size 0
glforceblitmode 0
glext78 1
glbilinear 1
gldrawbitmap 1
glcolormod 1
glbeam 1.000000
glalphablending 1
glantialias 1
gllibname libGL.so
glulibname libGLU.so
cabview 0
cabinet glmamejau
### X11-input related ###
grabmouse 0
winkeys 0
### Sound Related ###
sound 1
samples 1
samplefreq 22050
bufsize 3.000000
volume -3
# audiodevice <NULL> (not set)
# mixerdevice <NULL> (not set)
### Input Related ###
joytype 0
analogstick 0
joydevname /dev/joy
mouse 1
### Fileio Related ###
rompath %%PREFIX%%/share/xmess
spooldir %%PREFIX%%/share/xmess
screenshotdir .
cheatdir %%PREFIX%%/share/xmess/cheat
crcdir %%PREFIX%%/share/xmess/crc
cheatfile cheat.cdb
hiscorefile %%PREFIX%%/share/xmess/hiscore.dat
historyfile %%PREFIX%%/share/xmess/history.dat
mameinfofile %%PREFIX%%/share/xmess/sysinfo.dat
### Mess Related ###
language english
fuzzycmp 1
cheat 0
### Frontend Related ###
clones 1
### Internal verification list commands (only for developers) ###
### Rom Identification Related ###
### General Options ###
loadconfig 1

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-src_artwork_h,v 1.1 2005/10/02 01:39:37 fgsch Exp $
--- src/artwork.h.orig Fri Sep 16 17:18:55 2005
+++ src/artwork.h Wed Sep 28 16:42:42 2005
@@ -6,7 +6,9 @@
*********************************************************************/
+#ifndef __GNUC__
#pragma once
+#endif
#ifndef __ARTWORK_H__
#define __ARTWORK_H__

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-src_audit_h,v 1.1 2005/10/02 01:39:37 fgsch Exp $
--- src/audit.h.orig Fri Sep 16 17:18:57 2005
+++ src/audit.h Wed Sep 28 16:42:42 2005
@@ -6,7 +6,9 @@
***************************************************************************/
+#ifndef __GNUC__
#pragma once
+#endif
#ifndef __AUDIT_H__
#define __AUDIT_H__

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-src_cdrom_h,v 1.1 2005/10/02 01:39:37 fgsch Exp $
--- src/cdrom.h.orig Fri Sep 16 17:18:57 2005
+++ src/cdrom.h Wed Sep 28 16:42:42 2005
@@ -6,7 +6,9 @@
***************************************************************************/
+#ifndef __GNUC__
#pragma once
+#endif
#ifndef __CDROM_H__
#define __CDROM_H__

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-src_chd_h,v 1.1 2005/10/02 01:39:37 fgsch Exp $
--- src/chd.h.orig Fri Sep 16 17:18:55 2005
+++ src/chd.h Wed Sep 28 16:42:42 2005
@@ -4,7 +4,9 @@
***************************************************************************/
+#ifndef __GNUC__
#pragma once
+#endif
#ifndef __CHD_H__
#define __CHD_H__

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-src_chdcd_h,v 1.1 2005/10/02 01:39:37 fgsch Exp $
--- src/chdcd.h.orig Fri Sep 16 17:18:57 2005
+++ src/chdcd.h Wed Sep 28 16:42:42 2005
@@ -4,7 +4,9 @@
***************************************************************************/
+#ifndef __GNUC__
#pragma once
+#endif
#ifndef __CHDCD_H__
#define __CHDCD_H__

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-src_cheat_h,v 1.1 2005/10/02 01:39:38 fgsch Exp $
--- src/cheat.h.orig Fri Sep 16 17:18:57 2005
+++ src/cheat.h Wed Sep 28 16:42:42 2005
@@ -6,7 +6,9 @@
*********************************************************************/
+#ifndef __GNUC__
#pragma once
+#endif
#ifndef __CHEAT_H__
#define __CHEAT_H__

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-src_common_h,v 1.1 2005/10/02 01:39:38 fgsch Exp $
--- src/common.h.orig Fri Sep 16 17:18:56 2005
+++ src/common.h Wed Sep 28 16:42:42 2005
@@ -6,7 +6,9 @@
*********************************************************************/
+#ifndef __GNUC__
#pragma once
+#endif
#ifndef __COMMON_H__
#define __COMMON_H__

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-src_config_h,v 1.1 2005/10/02 01:39:38 fgsch Exp $
--- src/config.h.orig Fri Sep 16 17:18:56 2005
+++ src/config.h Wed Sep 28 16:42:42 2005
@@ -6,7 +6,9 @@
***************************************************************************/
+#ifndef __GNUC__
#pragma once
+#endif
#ifndef __CONFIG_H__
#define __CONFIG_H__

View File

@ -1,18 +0,0 @@
$OpenBSD: patch-src_cpu_m68000_make68k_c,v 1.3 2002/02/06 02:05:08 naddy Exp $
--- src/cpu/m68000/make68k.c.orig Tue Jan 1 20:16:32 2002
+++ src/cpu/m68000/make68k.c Wed Feb 6 02:18:17 2002
@@ -7637,11 +7637,11 @@ void CodeSegmentBegin(void)
fprintf(fp, "\t\t EXTERN _OP_RAM\n");
fprintf(fp, "\t\t EXTERN _opcode_entry\n");
- fprintf(fp, "\t\t EXTERN _cur_mrhard\n");
+/* fprintf(fp, "\t\t EXTERN _cur_mrhard\n"); */
-/*#ifdef MAME_DEBUG */
+#ifdef MAME_DEBUG
fprintf(fp, "\t\t EXTERN _m68k_illegal_opcode\n");
-/*#endif */
+#endif
#ifdef OS2
fprintf(fp, "\t\t SECTION maincode USE32 FLAT CLASS=CODE\n\n");

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-src_cpuexec_h,v 1.1 2005/10/02 01:39:38 fgsch Exp $
--- src/cpuexec.h.orig Fri Sep 16 17:18:57 2005
+++ src/cpuexec.h Wed Sep 28 16:42:42 2005
@@ -6,7 +6,9 @@
***************************************************************************/
+#ifndef __GNUC__
#pragma once
+#endif
#ifndef __CPUEXEC_H__
#define __CPUEXEC_H__

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-src_cpuint_h,v 1.1 2005/10/02 01:39:38 fgsch Exp $
--- src/cpuint.h.orig Fri Sep 16 17:18:57 2005
+++ src/cpuint.h Wed Sep 28 16:42:42 2005
@@ -6,7 +6,9 @@
***************************************************************************/
+#ifndef __GNUC__
#pragma once
+#endif
#ifndef __CPUINT_H__
#define __CPUINT_H__

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-src_cpuintrf_h,v 1.1 2005/10/02 01:39:38 fgsch Exp $
--- src/cpuintrf.h.orig Fri Sep 16 17:18:57 2005
+++ src/cpuintrf.h Wed Sep 28 16:42:42 2005
@@ -6,7 +6,9 @@
***************************************************************************/
+#ifndef __GNUC__
#pragma once
+#endif
#ifndef __CPUINTRF_H__
#define __CPUINTRF_H__

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-src_drawgfx_h,v 1.1 2005/10/02 01:39:38 fgsch Exp $
--- src/drawgfx.h.orig Wed Sep 28 16:47:32 2005
+++ src/drawgfx.h Wed Sep 28 16:47:40 2005
@@ -6,7 +6,9 @@
*********************************************************************/
+#ifndef __GNUC__
#pragma once
+#endif
#ifndef __DRAWGFX_H__
#define __DRAWGFX_H__

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-src_driver_h,v 1.1 2005/10/02 01:39:38 fgsch Exp $
--- src/driver.h.orig Wed Sep 28 16:43:56 2005
+++ src/driver.h Wed Sep 28 16:44:30 2005
@@ -6,7 +6,9 @@
***************************************************************************/
+#ifndef __GNUC__
#pragma once
+#endif
#ifndef __DRIVER_H__
#define __DRIVER_H__

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-src_fileio_h,v 1.1 2005/10/02 01:39:38 fgsch Exp $
--- src/fileio.h.orig Wed Sep 28 16:46:46 2005
+++ src/fileio.h Wed Sep 28 16:46:54 2005
@@ -6,7 +6,9 @@
***************************************************************************/
+#ifndef __GNUC__
#pragma once
+#endif
#ifndef __FILEIO_H__
#define __FILEIO_H__

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-src_harddisk_h,v 1.1 2005/10/02 01:39:38 fgsch Exp $
--- src/harddisk.h.orig Wed Sep 28 16:51:39 2005
+++ src/harddisk.h Wed Sep 28 16:51:54 2005
@@ -6,7 +6,9 @@
***************************************************************************/
+#ifndef __GNUC__
#pragma once
+#endif
#ifndef __HARDDISK_H__
#define __HARDDISK_H__

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-src_hash_h,v 1.1 2005/10/02 01:39:38 fgsch Exp $
--- src/hash.h.orig Wed Sep 28 16:47:25 2005
+++ src/hash.h Wed Sep 28 16:47:32 2005
@@ -6,7 +6,9 @@
*********************************************************************/
+#ifndef __GNUC__
#pragma once
+#endif
#ifndef __HASH_H__
#define __HASH_H__

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-src_hiscore_h,v 1.1 2005/10/02 01:39:38 fgsch Exp $
--- src/hiscore.h.orig Wed Sep 28 16:53:20 2005
+++ src/hiscore.h Wed Sep 28 16:53:28 2005
@@ -6,7 +6,9 @@
***************************************************************************/
+#ifndef __GNUC__
#pragma once
+#endif
#ifndef __HISCORE_H__
#define __HISCORE_H__

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-src_info_h,v 1.1 2005/10/02 01:39:38 fgsch Exp $
--- src/info.h.orig Wed Sep 28 16:53:06 2005
+++ src/info.h Wed Sep 28 16:53:12 2005
@@ -6,7 +6,9 @@
***************************************************************************/
+#ifndef __GNUC__
#pragma once
+#endif
#ifndef __INFO_H__
#define __INFO_H__

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-src_inptport_h,v 1.1 2005/10/02 01:39:38 fgsch Exp $
--- src/inptport.h.orig Wed Sep 28 16:47:06 2005
+++ src/inptport.h Wed Sep 28 16:47:16 2005
@@ -6,7 +6,9 @@
***************************************************************************/
+#ifndef __GNUC__
#pragma once
+#endif
#ifndef __INPTPORT_H__
#define __INPTPORT_H__

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-src_input_h,v 1.1 2005/10/02 01:39:38 fgsch Exp $
--- src/input.h.orig Wed Sep 28 16:47:16 2005
+++ src/input.h Wed Sep 28 16:47:25 2005
@@ -6,7 +6,9 @@
***************************************************************************/
+#ifndef __GNUC__
#pragma once
+#endif
#ifndef __INPUT_H__
#define __INPUT_H__

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-src_mame_h,v 1.1 2005/10/02 01:39:38 fgsch Exp $
--- src/mame.h.orig Wed Sep 28 16:45:26 2005
+++ src/mame.h Wed Sep 28 16:45:45 2005
@@ -6,7 +6,9 @@
***************************************************************************/
+#ifndef __GNUC__
#pragma once
+#endif
#ifndef __MAME_H__
#define __MAME_H__

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-src_mamecore_h,v 1.1 2005/10/02 01:39:38 fgsch Exp $
--- src/mamecore.h.orig Wed Sep 28 16:44:48 2005
+++ src/mamecore.h Wed Sep 28 16:44:59 2005
@@ -6,7 +6,9 @@
***************************************************************************/
+#ifndef __GNUC__
#pragma once
+#endif
#ifndef __MAMECORE_H__
#define __MAMECORE_H__

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-src_memory_h,v 1.1 2005/10/02 01:39:38 fgsch Exp $
--- src/memory.h.orig Wed Sep 28 16:45:07 2005
+++ src/memory.h Wed Sep 28 16:45:18 2005
@@ -6,7 +6,9 @@
***************************************************************************/
+#ifndef __GNUC__
#pragma once
+#endif
#ifndef __MEMORY_H__
#define __MEMORY_H__

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-src_osdepend_h,v 1.1 2005/10/02 01:39:38 fgsch Exp $
--- src/osdepend.h.orig Wed Sep 28 16:46:56 2005
+++ src/osdepend.h Wed Sep 28 16:47:06 2005
@@ -6,7 +6,9 @@
***************************************************************************/
+#ifndef __GNUC__
#pragma once
+#endif
#ifndef __OSDEPEND_H__
#define __OSDEPEND_H__

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-src_palette_h,v 1.1 2005/10/02 01:39:38 fgsch Exp $
--- src/palette.h.orig Wed Sep 28 16:47:40 2005
+++ src/palette.h Wed Sep 28 16:50:06 2005
@@ -67,7 +67,9 @@
******************************************************************************/
+#ifndef __GNUC__
#pragma once
+#endif
#ifndef __PALETTE_H__
#define __PALETTE_H__

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-src_png_h,v 1.1 2005/10/02 01:39:38 fgsch Exp $
--- src/png.h.orig Wed Sep 28 16:53:01 2005
+++ src/png.h Wed Sep 28 16:53:06 2005
@@ -6,7 +6,9 @@
***************************************************************************/
+#ifndef __GNUC__
#pragma once
+#endif
#ifndef __PNG_H__
#define __PNG_H__

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-src_profiler_h,v 1.1 2005/10/02 01:39:38 fgsch Exp $
--- src/profiler.h.orig Wed Sep 28 16:50:44 2005
+++ src/profiler.h Wed Sep 28 16:50:53 2005
@@ -6,7 +6,9 @@
***************************************************************************/
+#ifndef __GNUC__
#pragma once
+#endif
#ifndef __PROFILER_H__
#define __PROFILER_H__

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-src_sndintrf_h,v 1.1 2005/10/02 01:39:38 fgsch Exp $
--- src/sndintrf.h.orig Wed Sep 28 16:50:21 2005
+++ src/sndintrf.h Wed Sep 28 16:50:28 2005
@@ -6,7 +6,9 @@
***************************************************************************/
+#ifndef __GNUC__
#pragma once
+#endif
#ifndef __SNDINTRF_H__
#define __SNDINTRF_H__

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-src_state_h,v 1.1 2005/10/02 01:39:38 fgsch Exp $
--- src/state.h.orig Wed Sep 28 16:51:22 2005
+++ src/state.h Wed Sep 28 16:51:24 2005
@@ -6,7 +6,9 @@
***************************************************************************/
+#ifndef __GNUC__
#pragma once
+#endif
#ifndef __STATE_H__
#define __STATE_H__

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-src_tilemap_h,v 1.1 2005/10/02 01:39:38 fgsch Exp $
--- src/tilemap.h.orig Wed Sep 28 16:50:38 2005
+++ src/tilemap.h Wed Sep 28 16:50:44 2005
@@ -6,7 +6,9 @@
***************************************************************************/
+#ifndef __GNUC__
#pragma once
+#endif
#ifndef __TILEMAP_H__
#define __TILEMAP_H__

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-src_timer_h,v 1.1 2005/10/02 01:39:38 fgsch Exp $
--- src/timer.h.orig Wed Sep 28 16:50:14 2005
+++ src/timer.h Wed Sep 28 16:50:21 2005
@@ -7,7 +7,9 @@
***************************************************************************/
+#ifndef __GNUC__
#pragma once
+#endif
#ifndef __TIMER_H__
#define __TIMER_H__

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-src_ui_text_h,v 1.1 2005/10/02 01:39:38 fgsch Exp $
--- src/ui_text.h.orig Wed Sep 28 16:53:12 2005
+++ src/ui_text.h Wed Sep 28 16:53:20 2005
@@ -7,7 +7,9 @@
***************************************************************************/
+#ifndef __GNUC__
#pragma once
+#endif
#ifndef __UI_TEXT_H__
#define __UI_TEXT_H__

View File

@ -1,39 +0,0 @@
$OpenBSD: patch-src_unix_joystick-drivers_joy_usb_c,v 1.5 2002/05/25 01:18:00 pvalchev Exp $
--- src/unix/joystick-drivers/joy_usb.c.orig Fri Nov 2 18:22:56 2001
+++ src/unix/joystick-drivers/joy_usb.c Fri May 24 13:49:05 2002
@@ -15,13 +15,13 @@ struct rc_option joy_usb_opts[] = {
#ifdef USB_JOYSTICK
-#if !defined(__ARCH_netbsd) && !defined(__ARCH_freebsd)
-#error "USB joysticks are only supported under NetBSD and FreeBSD. "
+#if !defined(__ARCH_netbsd) && !defined(__ARCH_freebsd) && !defined(__ARCH_openbsd)
+#error "USB joysticks are only supported under NetBSD, FreeBSD and OpenBSD. "
"Patches to support other archs are welcome ;)"
#endif
-#if defined(__ARCH_netbsd)
-#include <usb.h>
+#if defined(__ARCH_netbsd) || defined(__ARCH_openbsd)
+#include <usbhid.h>
#elif defined(__ARCH_freebsd)
#include <libusb.h>
#endif
@@ -82,7 +82,7 @@ static int joy_initialize_hid(int i)
priv_joy_data[i].hids = NULL;
- size = hid_report_size(rd, hid_input, &report_id);
+ size = hid_report_size(rd, hid_input, report_id);
if ((priv_joy_data[i].data_buf = malloc(size)) == NULL)
{
fprintf(stderr_file, "error: couldn't malloc %d bytes\n", size);
@@ -93,7 +93,7 @@ static int joy_initialize_hid(int i)
priv_joy_data[i].offset = (report_id != 0);
is_joystick = 0;
- for (d = hid_start_parse(rd, 1 << hid_input); hid_get_item(d, &h); )
+ for (d = hid_start_parse(rd, 1 << hid_input, NULL); hid_get_item(d, &h); )
{
int axis, usage, page, interesting_hid;

View File

@ -1,19 +0,0 @@
fix sound in 8 bit cards.
$OpenBSD: patch-src_unix_sysdep_dsp-drivers_netbsd_c,v 1.1 2002/03/24 21:26:24 fgsch Exp $
--- src/unix/sysdep/dsp-drivers/netbsd.c.orig Fri Nov 2 22:22:57 2001
+++ src/unix/sysdep/dsp-drivers/netbsd.c Sun Feb 10 15:28:21 2002
@@ -130,13 +130,6 @@ static void *netbsd_dsp_create(const voi
a_info.play.precision = desired_precision;
if (ioctl(priv->fd, AUDIO_SETINFO, &a_info) < 0)
{
- perror("error: AUDIO_SETINFO");
- netbsd_dsp_destroy(dsp);
- return NULL;
- }
- if (a_info.play.encoding != desired_encoding
- || a_info.play.precision != desired_precision)
- {
if (desired_precision == 8)
{
fprintf(stderr, "error: couldn't set sound to 8 bits,\n");

View File

@ -1,45 +0,0 @@
$OpenBSD: patch-src_unix_unix_mak,v 1.6 2002/02/06 02:05:08 naddy Exp $
--- src/unix/unix.mak.orig Mon Dec 31 09:19:03 2001
+++ src/unix/unix.mak Wed Feb 6 02:18:56 2002
@@ -153,7 +153,7 @@ MY_CFLAGS = $(CFLAGS) $(IL) $(CFLAGS.$(M
-Dstricmp=strcasecmp -Dstrnicmp=strncasecmp \
-DPI=M_PI -DUNIX -DSIGNED_SAMPLES \
$(COREDEFS) $(SOUNDDEFS) $(CPUDEFS) $(ASMDEFS) \
- $(INCLUDES) $(INCLUDE_PATH)
+ $(INCLUDE_PATH) $(INCLUDES)
MY_LIBS = $(LIBS) $(LIBS.$(ARCH)) $(LIBS.$(DISPLAY_METHOD)) -lz
@@ -174,7 +174,7 @@ endif
# CONFIG are the cflags used to build the unix tree, this is were most defines
# go
CONFIG = $(MY_CFLAGS) $(CFLAGS.$(DISPLAY_METHOD)) -DNAME='\"x$(TARGET)\"' \
- -DDISPLAY_METHOD='\"$(DISPLAY_METHOD)\"' -DXMAMEROOT='\"$(XMAMEROOT)\"'
+ -DDISPLAY_METHOD='\"$(DISPLAY_METHOD)\"' -DXMAMEROOT='\"$(SYSCONFDIR)\"'
ifdef HAVE_GETTIMEOFDAY
CONFIG += -DHAVE_GETTIMEOFDAY
@@ -210,7 +210,7 @@ CONFIG += -DLIN_FM_TOWNS
endif
ifdef JOY_USB
CONFIG += -DUSB_JOYSTICK
-MY_LIBS += -lusb
+MY_LIBS += -lusbhid
endif
ifdef EFENCE
@@ -363,12 +363,12 @@ install-man:
doinstall:
@echo installing binaries under $(BINDIR)...
-$(INSTALL_PROGRAM_DIR) $(BINDIR)
- $(INSTALL_PROGRAM) $(NAME).$(DISPLAY_METHOD) $(BINDIR)
+ $(INSTALL_PROGRAM) $(NAME).$(DISPLAY_METHOD) $(BINDIR)/$(NAME)
doinstallsuid:
@echo installing binaries under $(BINDIR)...
-$(INSTALL_PROGRAM_DIR) $(BINDIR)
- $(INSTALL_PROGRAM_SUID) $(NAME).$(DISPLAY_METHOD) $(BINDIR)
+ $(INSTALL_PROGRAM_SUID) $(NAME).$(DISPLAY_METHOD) $(BINDIR)/$(NAME)
copycab:
@echo installing cabinet files under $(XMAMEROOT)...

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-src_unzip_h,v 1.1 2005/10/02 01:39:38 fgsch Exp $
--- src/unzip.h.orig Wed Sep 28 16:53:28 2005
+++ src/unzip.h Wed Sep 28 16:53:35 2005
@@ -6,7 +6,9 @@
***************************************************************************/
+#ifndef __GNUC__
#pragma once
+#endif
#ifndef __UNZIP_H__
#define __UNZIP_H__

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-src_usrintrf_h,v 1.1 2005/10/02 01:39:38 fgsch Exp $
--- src/usrintrf.h.orig Wed Sep 28 16:50:29 2005
+++ src/usrintrf.h Wed Sep 28 16:50:38 2005
@@ -6,7 +6,9 @@
***************************************************************************/
+#ifndef __GNUC__
#pragma once
+#endif
#ifndef __USRINTRF_H__
#define __USRINTRF_H__

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-src_xmlfile_h,v 1.1 2005/10/02 01:39:38 fgsch Exp $
--- src/xmlfile.h.orig Wed Sep 28 16:50:06 2005
+++ src/xmlfile.h Wed Sep 28 16:50:14 2005
@@ -6,7 +6,9 @@
***************************************************************************/
+#ifndef __GNUC__
#pragma once
+#endif
#ifndef __XMLFILE_H__
#define __XMLFILE_H__

View File

@ -14,7 +14,9 @@ Packages can be built with additional FLAVORs:
x11: built with x11 support (default).
gl: built with GL support.
sdl: built with SDL support.
This FLAVOR requires the sdl package.
esd: built with esound audio plugin.
This FLAVOR requires the esound package.

View File

@ -6,7 +6,9 @@ Packages can be built with additional FLAVORs:
x11: built with x11 support (default).
gl: built with GL support.
sdl: built with SDL support.
This FLAVOR requires the sdl package.
esd: built with esound audio plugin.
This FLAVOR requires the esound package.

View File

@ -7,7 +7,9 @@ Packages can be built with additional FLAVORs:
x11: built with x11 support (default).
gl: built with GL support.
sdl: built with SDL support.
This FLAVOR requires the sdl package.
esd: built with esound audio plugin.
This FLAVOR requires the esound package.

View File

@ -1,39 +1,82 @@
@comment $OpenBSD: PLIST,v 1.7 2004/11/20 20:41:00 alek Exp $
@comment $OpenBSD: PLIST,v 1.8 2005/10/02 01:39:38 fgsch Exp $
@conflict xmame-*
@conflict xmess-*
bin/chdman
bin/dat2html
bin/imgtool
bin/romcmp
bin/xmame
bin/xmess
bin/xml2info
@man man/man6/xmame.6
@man man/man6/xmess.6
share/doc/xmame/
share/doc/xmame/README
share/doc/xmame/changes.mame
share/doc/xmame/changes.mess
share/doc/xmame/changes.opengl
share/doc/xmame/changes.unix
share/doc/xmame/credits.mess
share/doc/xmame/dga2.txt
share/doc/xmame/gamelist.mame
share/doc/xmame/gamelist.mess
share/doc/xmame/hsnew.txt
share/doc/xmame/img/
share/doc/xmame/img/xmame.jpg
share/doc/xmame/imgtool.txt
share/doc/xmame/liesmich.unix
share/doc/xmame/messroms.txt
share/doc/xmame/mame/
share/doc/xmame/mame/ctrlr.txt
share/doc/xmame/mame/license.txt
share/doc/xmame/mame/listinfo.txt
share/doc/xmame/mame/mame.txt
share/doc/xmame/mame/whatsnew.txt
share/doc/xmame/mame/whatsold.txt
share/doc/xmame/mame/windows.txt
share/doc/xmame/mess/
share/doc/xmame/mess/credits.htm
share/doc/xmame/mess/faq.htm
share/doc/xmame/mess/images/
share/doc/xmame/mess/images/logo.gif
share/doc/xmame/mess/imgtool.txt
share/doc/xmame/mess/messnew.txt
share/doc/xmame/mess/messroms.txt
share/doc/xmame/mess/style.css
share/doc/xmame/mess/windows/
share/doc/xmame/mess/windows/choice.htm
share/doc/xmame/mess/windows/compile.htm
share/doc/xmame/mess/windows/config.htm
share/doc/xmame/mess/windows/control.htm
share/doc/xmame/mess/windows/guiconf.htm
share/doc/xmame/mess/windows/guiuse.htm
share/doc/xmame/mess/windows/images/
share/doc/xmame/mess/windows/images/command.gif
share/doc/xmame/mess/windows/images/frog.gif
share/doc/xmame/mess/windows/images/gui.gif
share/doc/xmame/mess/windows/images/iniicon.gif
share/doc/xmame/mess/windows/images/keybcnt.gif
share/doc/xmame/mess/windows/images/newmenu.gif
share/doc/xmame/mess/windows/images/oldmenu.gif
share/doc/xmame/mess/windows/images/prop.gif
share/doc/xmame/mess/windows/images/propadv.gif
share/doc/xmame/mess/windows/images/propcnt.gif
share/doc/xmame/mess/windows/images/propd3d.gif
share/doc/xmame/mess/windows/images/propmsc.gif
share/doc/xmame/mess/windows/images/props.gif
share/doc/xmame/mess/windows/images/propsnd.gif
share/doc/xmame/mess/windows/images/startup.gif
share/doc/xmame/mess/windows/images/tree.gif
share/doc/xmame/mess/windows/images/wzip.gif
share/doc/xmame/mess/windows/install.htm
share/doc/xmame/mess/windows/instbios.htm
share/doc/xmame/mess/windows/main.htm
share/doc/xmame/mess/windows/mgebios.htm
share/doc/xmame/mess/windows/osmenu.htm
share/doc/xmame/mess/windows/runsw.htm
share/doc/xmame/mess/windows/suppsys.htm
share/doc/xmame/mess/windows/update.htm
share/doc/xmame/mess/windows/win32cmd.htm
share/doc/xmame/mess/wintoc.xml
share/doc/xmame/multiplayer-readme.txt
share/doc/xmame/old-changes.mess
share/doc/xmame/readhist.txt
share/doc/xmame/readme.mame
share/doc/xmame/readme.mess
share/doc/xmame/xmame-doc-1.html
share/doc/xmame/xmame-doc-2.html
share/doc/xmame/xmame-doc-3.html
share/doc/xmame/xmame-doc-4.html
share/doc/xmame/xmame-doc-5.html
share/doc/xmame/xmame-doc-6.html
share/doc/xmame/xmame-doc-7.html
share/doc/xmame/xmame-doc-8.html
share/doc/xmame/xmame-doc.html
share/doc/xmame/xmame-doc.lyx
share/doc/xmame/xmame-doc.man.skel
@ -48,13 +91,119 @@ share/doc/xmame/xmame-gdoc-7.html
share/doc/xmame/xmame-gdoc-8.html
share/doc/xmame/xmame-gdoc.html
share/doc/xmame/xmame.css
share/doc/xmame/xmamerc.dist
share/doc/xmame/xmessrc.dist
share/xmame/
share/xmame/cab/
share/xmame/cab/glmame/
share/xmame/cab/glmame/cabfront.jpg
share/xmame/cab/glmame/cabtitle.jpg
share/xmame/cab/glmame/glmame.cab
share/xmame/cab/glmamejau/
share/xmame/cab/glmamejau/cabfront.jpg
share/xmame/cab/glmamejau/cabside.jpg
share/xmame/cab/glmamejau/cabtitle.jpg
share/xmame/cab/glmamejau/glmamejau.cab
share/xmame/cab/trans/
share/xmame/cab/trans/trans.cab
share/xmame/cheat.dat
share/xmame/ctrlr/
share/xmame/ctrlr/hotrod.cfg
share/xmame/ctrlr/hotrodse.cfg
share/xmame/ctrlr/slikstik.cfg
share/xmame/ctrlr/standard.cfg
share/xmame/ctrlr/xarcade.cfg
share/xmame/hiscore.dat
share/xmame/history.dat
share/xmame/unofficial_hiscore.txt
share/xmame/xmamerc
@sample ${SYSCONFDIR}/xmamerc
share/xmess/
share/xmess/cab/
share/xmess/cab/glmame/
share/xmess/cab/glmame/cabfront.jpg
share/xmess/cab/glmame/cabtitle.jpg
share/xmess/cab/glmame/glmame.cab
share/xmess/cab/glmamejau/
share/xmess/cab/glmamejau/cabfront.jpg
share/xmess/cab/glmamejau/cabside.jpg
share/xmess/cab/glmamejau/cabtitle.jpg
share/xmess/cab/glmamejau/glmamejau.cab
share/xmess/cab/trans/
share/xmess/cab/trans/trans.cab
share/xmess/hash/
share/xmess/hash/a2600.hsi
share/xmess/hash/a5200.hsi
share/xmess/hash/a7800.hsi
share/xmess/hash/a800.hsi
share/xmess/hash/a800xl.hsi
share/xmess/hash/advision.hsi
share/xmess/hash/apexc.hsi
share/xmess/hash/apple1.hsi
share/xmess/hash/apple2.hsi
share/xmess/hash/aquarius.hsi
share/xmess/hash/arcadia.hsi
share/xmess/hash/astrocde.hsi
share/xmess/hash/bbca.hsi
share/xmess/hash/c128.hsi
share/xmess/hash/c16.hsi
share/xmess/hash/c64.hsi
share/xmess/hash/cbm30.hsi
share/xmess/hash/cbm40.hsi
share/xmess/hash/cbm610.hsi
share/xmess/hash/cbm80.hsi
share/xmess/hash/cgenie.hsi
share/xmess/hash/channelf.hsi
share/xmess/hash/coco.hsi
share/xmess/hash/coleco.hsi
share/xmess/hash/coupe.hsi
share/xmess/hash/cpc464.hsi
share/xmess/hash/cpc6128.hsi
share/xmess/hash/dragon64.hsi
share/xmess/hash/ep128.hsi
share/xmess/hash/exidy.hsi
share/xmess/hash/gameboy.hsi
share/xmess/hash/gamegear.hsi
share/xmess/hash/gen_usa.hsi
share/xmess/hash/ibmpc.hsi
share/xmess/hash/ibmpcjr.hsi
share/xmess/hash/intv.hsi
share/xmess/hash/jaguar.hsi
share/xmess/hash/jupiter.hsi
share/xmess/hash/laser210.hsi
share/xmess/hash/lisa2.hsi
share/xmess/hash/lviv.hsi
share/xmess/hash/lynx.hsi
share/xmess/hash/max.hsi
share/xmess/hash/mc10.hsi
share/xmess/hash/microtan.hsi
share/xmess/hash/msx.hsi
share/xmess/hash/msx2.hsi
share/xmess/hash/msx2j.hsi
share/xmess/hash/msxj.hsi
share/xmess/hash/mtx512.hsi
share/xmess/hash/nascom1.hsi
share/xmess/hash/nes.hsi
share/xmess/hash/odyssey2.hsi
share/xmess/hash/oric.hsi
share/xmess/hash/p2000t.hsi
share/xmess/hash/pce.hsi
share/xmess/hash/pdp1.hsi
share/xmess/hash/pet.hsi
share/xmess/hash/psx.hsi
share/xmess/hash/sms.hsi
share/xmess/hash/snes.hsi
share/xmess/hash/sordm5.hsi
share/xmess/hash/spectrum.hsi
share/xmess/hash/studio2.hsi
share/xmess/hash/svi318.hsi
share/xmess/hash/svision.hsi
share/xmess/hash/ti99_4a.hsi
share/xmess/hash/ts2068.hsi
share/xmess/hash/vc4000.hsi
share/xmess/hash/vectrex.hsi
share/xmess/hash/vic20.hsi
share/xmess/hash/wswan.hsi
share/xmess/sysinfo.dat
share/xmess/xmessrc
@sample ${SYSCONFDIR}/xmessrc

View File

@ -1,84 +0,0 @@
@comment $OpenBSD: PLIST-gl,v 1.6 2004/11/20 20:41:00 alek Exp $
@conflict xmame-*
@conflict xmess-*
bin/xmame
bin/xmess
@man man/man6/xmame.6
@man man/man6/xmess.6
share/doc/xmame/
share/doc/xmame/README
share/doc/xmame/changes.mame
share/doc/xmame/changes.mess
share/doc/xmame/changes.opengl
share/doc/xmame/changes.unix
share/doc/xmame/credits.mess
share/doc/xmame/dga2.txt
share/doc/xmame/gamelist.mame
share/doc/xmame/gamelist.mess
share/doc/xmame/hsnew.txt
share/doc/xmame/img/
share/doc/xmame/img/xmame.jpg
share/doc/xmame/imgtool.txt
share/doc/xmame/liesmich.unix
share/doc/xmame/messroms.txt
share/doc/xmame/multiplayer-readme.txt
share/doc/xmame/old-changes.mess
share/doc/xmame/readhist.txt
share/doc/xmame/readme.mame
share/doc/xmame/readme.mess
share/doc/xmame/xmame-doc-1.html
share/doc/xmame/xmame-doc-2.html
share/doc/xmame/xmame-doc-3.html
share/doc/xmame/xmame-doc-4.html
share/doc/xmame/xmame-doc-5.html
share/doc/xmame/xmame-doc-6.html
share/doc/xmame/xmame-doc-7.html
share/doc/xmame/xmame-doc-8.html
share/doc/xmame/xmame-doc.html
share/doc/xmame/xmame-doc.lyx
share/doc/xmame/xmame-doc.man.skel
share/doc/xmame/xmame-doc.txt
share/doc/xmame/xmame-gdoc-1.html
share/doc/xmame/xmame-gdoc-2.html
share/doc/xmame/xmame-gdoc-3.html
share/doc/xmame/xmame-gdoc-4.html
share/doc/xmame/xmame-gdoc-5.html
share/doc/xmame/xmame-gdoc-6.html
share/doc/xmame/xmame-gdoc-7.html
share/doc/xmame/xmame-gdoc-8.html
share/doc/xmame/xmame-gdoc.html
share/doc/xmame/xmame.css
share/xmame/
share/xmame/cab/
share/xmame/cab/glmame/
share/xmame/cab/glmame/cabfront.jpg
share/xmame/cab/glmame/cabtitle.jpg
share/xmame/cab/glmame/glmame.cab
share/xmame/cab/glmamejau/
share/xmame/cab/glmamejau/cabfront.jpg
share/xmame/cab/glmamejau/cabside.jpg
share/xmame/cab/glmamejau/cabtitle.jpg
share/xmame/cab/glmamejau/glmamejau.cab
share/xmame/cab/trans/
share/xmame/cab/trans/trans.cab
share/xmame/cheat.dat
share/xmame/hiscore.dat
share/xmame/history.dat
share/xmame/xmamerc
@sample ${SYSCONFDIR}/xmamerc
share/xmess/
share/xmess/cab/
share/xmess/cab/glmame/
share/xmess/cab/glmame/cabfront.jpg
share/xmess/cab/glmame/cabtitle.jpg
share/xmess/cab/glmame/glmame.cab
share/xmess/cab/glmamejau/
share/xmess/cab/glmamejau/cabfront.jpg
share/xmess/cab/glmamejau/cabside.jpg
share/xmess/cab/glmamejau/cabtitle.jpg
share/xmess/cab/glmamejau/glmamejau.cab
share/xmess/cab/trans/
share/xmess/cab/trans/trans.cab
share/xmess/sysinfo.dat
share/xmess/xmessrc
@sample ${SYSCONFDIR}/xmessrc

View File

@ -1,31 +1,33 @@
@comment $OpenBSD: PLIST-mame,v 1.6 2004/11/20 20:41:00 alek Exp $
@comment $OpenBSD: PLIST-mame,v 1.7 2005/10/02 01:39:38 fgsch Exp $
@conflict xmame+xmess-*
@conflict xmess-*
bin/romcmp
bin/xmame
bin/xml2info
@man man/man6/xmame.6
share/doc/xmame/
share/doc/xmame/README
share/doc/xmame/changes.mame
share/doc/xmame/changes.opengl
share/doc/xmame/changes.unix
share/doc/xmame/dga2.txt
share/doc/xmame/gamelist.mame
share/doc/xmame/hsnew.txt
share/doc/xmame/img/
share/doc/xmame/img/xmame.jpg
share/doc/xmame/imgtool.txt
share/doc/xmame/liesmich.unix
share/doc/xmame/mame/
share/doc/xmame/mame/ctrlr.txt
share/doc/xmame/mame/license.txt
share/doc/xmame/mame/listinfo.txt
share/doc/xmame/mame/mame.txt
share/doc/xmame/mame/whatsnew.txt
share/doc/xmame/mame/whatsold.txt
share/doc/xmame/mame/windows.txt
share/doc/xmame/multiplayer-readme.txt
share/doc/xmame/readhist.txt
share/doc/xmame/readme.mame
share/doc/xmame/xmame-doc-1.html
share/doc/xmame/xmame-doc-2.html
share/doc/xmame/xmame-doc-3.html
share/doc/xmame/xmame-doc-4.html
share/doc/xmame/xmame-doc-5.html
share/doc/xmame/xmame-doc-6.html
share/doc/xmame/xmame-doc-7.html
share/doc/xmame/xmame-doc-8.html
share/doc/xmame/xmame-doc.html
share/doc/xmame/xmame-doc.lyx
share/doc/xmame/xmame-doc.man.skel
@ -40,9 +42,29 @@ share/doc/xmame/xmame-gdoc-7.html
share/doc/xmame/xmame-gdoc-8.html
share/doc/xmame/xmame-gdoc.html
share/doc/xmame/xmame.css
share/doc/xmame/xmamerc.dist
share/xmame/
share/xmame/cab/
share/xmame/cab/glmame/
share/xmame/cab/glmame/cabfront.jpg
share/xmame/cab/glmame/cabtitle.jpg
share/xmame/cab/glmame/glmame.cab
share/xmame/cab/glmamejau/
share/xmame/cab/glmamejau/cabfront.jpg
share/xmame/cab/glmamejau/cabside.jpg
share/xmame/cab/glmamejau/cabtitle.jpg
share/xmame/cab/glmamejau/glmamejau.cab
share/xmame/cab/trans/
share/xmame/cab/trans/trans.cab
share/xmame/cheat.dat
share/xmame/ctrlr/
share/xmame/ctrlr/hotrod.cfg
share/xmame/ctrlr/hotrodse.cfg
share/xmame/ctrlr/slikstik.cfg
share/xmame/ctrlr/standard.cfg
share/xmame/ctrlr/xarcade.cfg
share/xmame/hiscore.dat
share/xmame/history.dat
share/xmame/unofficial_hiscore.txt
share/xmame/xmamerc
@sample ${SYSCONFDIR}/xmamerc

View File

@ -1,60 +0,0 @@
@comment $OpenBSD: PLIST-mame-gl,v 1.6 2004/11/20 20:41:00 alek Exp $
@conflict xmame+xmess-*
@conflict xmess-*
bin/xmame
@man man/man6/xmame.6
share/doc/xmame/
share/doc/xmame/README
share/doc/xmame/changes.mame
share/doc/xmame/changes.opengl
share/doc/xmame/changes.unix
share/doc/xmame/dga2.txt
share/doc/xmame/gamelist.mame
share/doc/xmame/hsnew.txt
share/doc/xmame/img/
share/doc/xmame/img/xmame.jpg
share/doc/xmame/imgtool.txt
share/doc/xmame/liesmich.unix
share/doc/xmame/multiplayer-readme.txt
share/doc/xmame/readhist.txt
share/doc/xmame/readme.mame
share/doc/xmame/xmame-doc-1.html
share/doc/xmame/xmame-doc-2.html
share/doc/xmame/xmame-doc-3.html
share/doc/xmame/xmame-doc-4.html
share/doc/xmame/xmame-doc-5.html
share/doc/xmame/xmame-doc-6.html
share/doc/xmame/xmame-doc-7.html
share/doc/xmame/xmame-doc-8.html
share/doc/xmame/xmame-doc.html
share/doc/xmame/xmame-doc.lyx
share/doc/xmame/xmame-doc.man.skel
share/doc/xmame/xmame-doc.txt
share/doc/xmame/xmame-gdoc-1.html
share/doc/xmame/xmame-gdoc-2.html
share/doc/xmame/xmame-gdoc-3.html
share/doc/xmame/xmame-gdoc-4.html
share/doc/xmame/xmame-gdoc-5.html
share/doc/xmame/xmame-gdoc-6.html
share/doc/xmame/xmame-gdoc-7.html
share/doc/xmame/xmame-gdoc-8.html
share/doc/xmame/xmame-gdoc.html
share/doc/xmame/xmame.css
share/xmame/
share/xmame/cab/
share/xmame/cab/glmame/
share/xmame/cab/glmame/cabfront.jpg
share/xmame/cab/glmame/cabtitle.jpg
share/xmame/cab/glmame/glmame.cab
share/xmame/cab/glmamejau/
share/xmame/cab/glmamejau/cabfront.jpg
share/xmame/cab/glmamejau/cabside.jpg
share/xmame/cab/glmamejau/cabtitle.jpg
share/xmame/cab/glmamejau/glmamejau.cab
share/xmame/cab/trans/
share/xmame/cab/trans/trans.cab
share/xmame/cheat.dat
share/xmame/hiscore.dat
share/xmame/history.dat
share/xmame/xmamerc
@sample ${SYSCONFDIR}/xmamerc

View File

@ -1,31 +1,33 @@
@comment $OpenBSD: PLIST-mame-sdl,v 1.5 2004/11/20 20:41:00 alek Exp $
@comment $OpenBSD: PLIST-mame-sdl,v 1.6 2005/10/02 01:39:38 fgsch Exp $
@conflict xmame+xmess-*
@conflict xmess-*
bin/romcmp
bin/xmame
bin/xml2info
@man man/man6/xmame.6
share/doc/xmame/
share/doc/xmame/README
share/doc/xmame/changes.mame
share/doc/xmame/changes.opengl
share/doc/xmame/changes.unix
share/doc/xmame/dga2.txt
share/doc/xmame/gamelist.mame
share/doc/xmame/hsnew.txt
share/doc/xmame/img/
share/doc/xmame/img/xmame.jpg
share/doc/xmame/imgtool.txt
share/doc/xmame/liesmich.unix
share/doc/xmame/mame/
share/doc/xmame/mame/ctrlr.txt
share/doc/xmame/mame/license.txt
share/doc/xmame/mame/listinfo.txt
share/doc/xmame/mame/mame.txt
share/doc/xmame/mame/whatsnew.txt
share/doc/xmame/mame/whatsold.txt
share/doc/xmame/mame/windows.txt
share/doc/xmame/multiplayer-readme.txt
share/doc/xmame/readhist.txt
share/doc/xmame/readme.mame
share/doc/xmame/xmame-doc-1.html
share/doc/xmame/xmame-doc-2.html
share/doc/xmame/xmame-doc-3.html
share/doc/xmame/xmame-doc-4.html
share/doc/xmame/xmame-doc-5.html
share/doc/xmame/xmame-doc-6.html
share/doc/xmame/xmame-doc-7.html
share/doc/xmame/xmame-doc-8.html
share/doc/xmame/xmame-doc.html
share/doc/xmame/xmame-doc.lyx
share/doc/xmame/xmame-doc.man.skel
@ -40,9 +42,17 @@ share/doc/xmame/xmame-gdoc-7.html
share/doc/xmame/xmame-gdoc-8.html
share/doc/xmame/xmame-gdoc.html
share/doc/xmame/xmame.css
share/doc/xmame/xmamerc.dist
share/xmame/
share/xmame/cheat.dat
share/xmame/ctrlr/
share/xmame/ctrlr/hotrod.cfg
share/xmame/ctrlr/hotrodse.cfg
share/xmame/ctrlr/slikstik.cfg
share/xmame/ctrlr/standard.cfg
share/xmame/ctrlr/xarcade.cfg
share/xmame/hiscore.dat
share/xmame/history.dat
share/xmame/unofficial_hiscore.txt
share/xmame/xmamerc
@sample ${SYSCONFDIR}/xmamerc

View File

@ -1,33 +1,78 @@
@comment $OpenBSD: PLIST-mess,v 1.6 2004/11/20 20:41:00 alek Exp $
@comment $OpenBSD: PLIST-mess,v 1.7 2005/10/02 01:39:38 fgsch Exp $
@conflict xmame+xmess-*
@conflict xmame-*
bin/chdman
bin/dat2html
bin/imgtool
bin/xmess
@man man/man6/xmess.6
share/doc/xmame/
share/doc/xmame/README
share/doc/xmame/changes.mess
share/doc/xmame/changes.opengl
share/doc/xmame/changes.unix
share/doc/xmame/credits.mess
share/doc/xmame/dga2.txt
share/doc/xmame/gamelist.mess
share/doc/xmame/img/
share/doc/xmame/img/xmame.jpg
share/doc/xmame/imgtool.txt
share/doc/xmame/liesmich.unix
share/doc/xmame/messroms.txt
share/doc/xmame/mame/
share/doc/xmame/mame/ctrlr.txt
share/doc/xmame/mame/license.txt
share/doc/xmame/mame/listinfo.txt
share/doc/xmame/mame/mame.txt
share/doc/xmame/mame/whatsnew.txt
share/doc/xmame/mame/whatsold.txt
share/doc/xmame/mame/windows.txt
share/doc/xmame/mess/
share/doc/xmame/mess/credits.htm
share/doc/xmame/mess/faq.htm
share/doc/xmame/mess/images/
share/doc/xmame/mess/images/logo.gif
share/doc/xmame/mess/imgtool.txt
share/doc/xmame/mess/messnew.txt
share/doc/xmame/mess/messroms.txt
share/doc/xmame/mess/style.css
share/doc/xmame/mess/windows/
share/doc/xmame/mess/windows/choice.htm
share/doc/xmame/mess/windows/compile.htm
share/doc/xmame/mess/windows/config.htm
share/doc/xmame/mess/windows/control.htm
share/doc/xmame/mess/windows/guiconf.htm
share/doc/xmame/mess/windows/guiuse.htm
share/doc/xmame/mess/windows/images/
share/doc/xmame/mess/windows/images/command.gif
share/doc/xmame/mess/windows/images/frog.gif
share/doc/xmame/mess/windows/images/gui.gif
share/doc/xmame/mess/windows/images/iniicon.gif
share/doc/xmame/mess/windows/images/keybcnt.gif
share/doc/xmame/mess/windows/images/newmenu.gif
share/doc/xmame/mess/windows/images/oldmenu.gif
share/doc/xmame/mess/windows/images/prop.gif
share/doc/xmame/mess/windows/images/propadv.gif
share/doc/xmame/mess/windows/images/propcnt.gif
share/doc/xmame/mess/windows/images/propd3d.gif
share/doc/xmame/mess/windows/images/propmsc.gif
share/doc/xmame/mess/windows/images/props.gif
share/doc/xmame/mess/windows/images/propsnd.gif
share/doc/xmame/mess/windows/images/startup.gif
share/doc/xmame/mess/windows/images/tree.gif
share/doc/xmame/mess/windows/images/wzip.gif
share/doc/xmame/mess/windows/install.htm
share/doc/xmame/mess/windows/instbios.htm
share/doc/xmame/mess/windows/main.htm
share/doc/xmame/mess/windows/mgebios.htm
share/doc/xmame/mess/windows/osmenu.htm
share/doc/xmame/mess/windows/runsw.htm
share/doc/xmame/mess/windows/suppsys.htm
share/doc/xmame/mess/windows/update.htm
share/doc/xmame/mess/windows/win32cmd.htm
share/doc/xmame/mess/wintoc.xml
share/doc/xmame/multiplayer-readme.txt
share/doc/xmame/old-changes.mess
share/doc/xmame/readhist.txt
share/doc/xmame/readme.mess
share/doc/xmame/xmame-doc-1.html
share/doc/xmame/xmame-doc-2.html
share/doc/xmame/xmame-doc-3.html
share/doc/xmame/xmame-doc-4.html
share/doc/xmame/xmame-doc-5.html
share/doc/xmame/xmame-doc-6.html
share/doc/xmame/xmame-doc-7.html
share/doc/xmame/xmame-doc-8.html
share/doc/xmame/xmame-doc.html
share/doc/xmame/xmame-doc.lyx
share/doc/xmame/xmame-doc.man.skel
@ -42,7 +87,93 @@ share/doc/xmame/xmame-gdoc-7.html
share/doc/xmame/xmame-gdoc-8.html
share/doc/xmame/xmame-gdoc.html
share/doc/xmame/xmame.css
share/doc/xmame/xmessrc.dist
share/xmess/
share/xmess/cab/
share/xmess/cab/glmame/
share/xmess/cab/glmame/cabfront.jpg
share/xmess/cab/glmame/cabtitle.jpg
share/xmess/cab/glmame/glmame.cab
share/xmess/cab/glmamejau/
share/xmess/cab/glmamejau/cabfront.jpg
share/xmess/cab/glmamejau/cabside.jpg
share/xmess/cab/glmamejau/cabtitle.jpg
share/xmess/cab/glmamejau/glmamejau.cab
share/xmess/cab/trans/
share/xmess/cab/trans/trans.cab
share/xmess/hash/
share/xmess/hash/a2600.hsi
share/xmess/hash/a5200.hsi
share/xmess/hash/a7800.hsi
share/xmess/hash/a800.hsi
share/xmess/hash/a800xl.hsi
share/xmess/hash/advision.hsi
share/xmess/hash/apexc.hsi
share/xmess/hash/apple1.hsi
share/xmess/hash/apple2.hsi
share/xmess/hash/aquarius.hsi
share/xmess/hash/arcadia.hsi
share/xmess/hash/astrocde.hsi
share/xmess/hash/bbca.hsi
share/xmess/hash/c128.hsi
share/xmess/hash/c16.hsi
share/xmess/hash/c64.hsi
share/xmess/hash/cbm30.hsi
share/xmess/hash/cbm40.hsi
share/xmess/hash/cbm610.hsi
share/xmess/hash/cbm80.hsi
share/xmess/hash/cgenie.hsi
share/xmess/hash/channelf.hsi
share/xmess/hash/coco.hsi
share/xmess/hash/coleco.hsi
share/xmess/hash/coupe.hsi
share/xmess/hash/cpc464.hsi
share/xmess/hash/cpc6128.hsi
share/xmess/hash/dragon64.hsi
share/xmess/hash/ep128.hsi
share/xmess/hash/exidy.hsi
share/xmess/hash/gameboy.hsi
share/xmess/hash/gamegear.hsi
share/xmess/hash/gen_usa.hsi
share/xmess/hash/ibmpc.hsi
share/xmess/hash/ibmpcjr.hsi
share/xmess/hash/intv.hsi
share/xmess/hash/jaguar.hsi
share/xmess/hash/jupiter.hsi
share/xmess/hash/laser210.hsi
share/xmess/hash/lisa2.hsi
share/xmess/hash/lviv.hsi
share/xmess/hash/lynx.hsi
share/xmess/hash/max.hsi
share/xmess/hash/mc10.hsi
share/xmess/hash/microtan.hsi
share/xmess/hash/msx.hsi
share/xmess/hash/msx2.hsi
share/xmess/hash/msx2j.hsi
share/xmess/hash/msxj.hsi
share/xmess/hash/mtx512.hsi
share/xmess/hash/nascom1.hsi
share/xmess/hash/nes.hsi
share/xmess/hash/odyssey2.hsi
share/xmess/hash/oric.hsi
share/xmess/hash/p2000t.hsi
share/xmess/hash/pce.hsi
share/xmess/hash/pdp1.hsi
share/xmess/hash/pet.hsi
share/xmess/hash/psx.hsi
share/xmess/hash/sms.hsi
share/xmess/hash/snes.hsi
share/xmess/hash/sordm5.hsi
share/xmess/hash/spectrum.hsi
share/xmess/hash/studio2.hsi
share/xmess/hash/svi318.hsi
share/xmess/hash/svision.hsi
share/xmess/hash/ti99_4a.hsi
share/xmess/hash/ts2068.hsi
share/xmess/hash/vc4000.hsi
share/xmess/hash/vectrex.hsi
share/xmess/hash/vic20.hsi
share/xmess/hash/wswan.hsi
share/xmess/sysinfo.dat
share/xmess/xmessrc
@sample ${SYSCONFDIR}/xmessrc

View File

@ -1,60 +0,0 @@
@comment $OpenBSD: PLIST-mess-gl,v 1.6 2004/11/20 20:41:00 alek Exp $
@conflict xmame+xmess-*
@conflict xmame-*
bin/xmess
@man man/man6/xmess.6
share/doc/xmame/
share/doc/xmame/README
share/doc/xmame/changes.mess
share/doc/xmame/changes.opengl
share/doc/xmame/changes.unix
share/doc/xmame/credits.mess
share/doc/xmame/dga2.txt
share/doc/xmame/gamelist.mess
share/doc/xmame/img/
share/doc/xmame/img/xmame.jpg
share/doc/xmame/imgtool.txt
share/doc/xmame/liesmich.unix
share/doc/xmame/messroms.txt
share/doc/xmame/multiplayer-readme.txt
share/doc/xmame/old-changes.mess
share/doc/xmame/readhist.txt
share/doc/xmame/readme.mess
share/doc/xmame/xmame-doc-1.html
share/doc/xmame/xmame-doc-2.html
share/doc/xmame/xmame-doc-3.html
share/doc/xmame/xmame-doc-4.html
share/doc/xmame/xmame-doc-5.html
share/doc/xmame/xmame-doc-6.html
share/doc/xmame/xmame-doc-7.html
share/doc/xmame/xmame-doc-8.html
share/doc/xmame/xmame-doc.html
share/doc/xmame/xmame-doc.lyx
share/doc/xmame/xmame-doc.man.skel
share/doc/xmame/xmame-doc.txt
share/doc/xmame/xmame-gdoc-1.html
share/doc/xmame/xmame-gdoc-2.html
share/doc/xmame/xmame-gdoc-3.html
share/doc/xmame/xmame-gdoc-4.html
share/doc/xmame/xmame-gdoc-5.html
share/doc/xmame/xmame-gdoc-6.html
share/doc/xmame/xmame-gdoc-7.html
share/doc/xmame/xmame-gdoc-8.html
share/doc/xmame/xmame-gdoc.html
share/doc/xmame/xmame.css
share/xmess/
share/xmess/cab/
share/xmess/cab/glmame/
share/xmess/cab/glmame/cabfront.jpg
share/xmess/cab/glmame/cabtitle.jpg
share/xmess/cab/glmame/glmame.cab
share/xmess/cab/glmamejau/
share/xmess/cab/glmamejau/cabfront.jpg
share/xmess/cab/glmamejau/cabside.jpg
share/xmess/cab/glmamejau/cabtitle.jpg
share/xmess/cab/glmamejau/glmamejau.cab
share/xmess/cab/trans/
share/xmess/cab/trans/trans.cab
share/xmess/sysinfo.dat
share/xmess/xmessrc
@sample ${SYSCONFDIR}/xmessrc

View File

@ -1,33 +1,78 @@
@comment $OpenBSD: PLIST-mess-sdl,v 1.5 2004/11/20 20:41:00 alek Exp $
@comment $OpenBSD: PLIST-mess-sdl,v 1.6 2005/10/02 01:39:38 fgsch Exp $
@conflict xmame+xmess-*
@conflict xmame-*
bin/chdman
bin/dat2html
bin/imgtool
bin/xmess
@man man/man6/xmess.6
share/doc/xmame/
share/doc/xmame/README
share/doc/xmame/changes.mess
share/doc/xmame/changes.opengl
share/doc/xmame/changes.unix
share/doc/xmame/credits.mess
share/doc/xmame/dga2.txt
share/doc/xmame/gamelist.mess
share/doc/xmame/img/
share/doc/xmame/img/xmame.jpg
share/doc/xmame/imgtool.txt
share/doc/xmame/liesmich.unix
share/doc/xmame/messroms.txt
share/doc/xmame/mame/
share/doc/xmame/mame/ctrlr.txt
share/doc/xmame/mame/license.txt
share/doc/xmame/mame/listinfo.txt
share/doc/xmame/mame/mame.txt
share/doc/xmame/mame/whatsnew.txt
share/doc/xmame/mame/whatsold.txt
share/doc/xmame/mame/windows.txt
share/doc/xmame/mess/
share/doc/xmame/mess/credits.htm
share/doc/xmame/mess/faq.htm
share/doc/xmame/mess/images/
share/doc/xmame/mess/images/logo.gif
share/doc/xmame/mess/imgtool.txt
share/doc/xmame/mess/messnew.txt
share/doc/xmame/mess/messroms.txt
share/doc/xmame/mess/style.css
share/doc/xmame/mess/windows/
share/doc/xmame/mess/windows/choice.htm
share/doc/xmame/mess/windows/compile.htm
share/doc/xmame/mess/windows/config.htm
share/doc/xmame/mess/windows/control.htm
share/doc/xmame/mess/windows/guiconf.htm
share/doc/xmame/mess/windows/guiuse.htm
share/doc/xmame/mess/windows/images/
share/doc/xmame/mess/windows/images/command.gif
share/doc/xmame/mess/windows/images/frog.gif
share/doc/xmame/mess/windows/images/gui.gif
share/doc/xmame/mess/windows/images/iniicon.gif
share/doc/xmame/mess/windows/images/keybcnt.gif
share/doc/xmame/mess/windows/images/newmenu.gif
share/doc/xmame/mess/windows/images/oldmenu.gif
share/doc/xmame/mess/windows/images/prop.gif
share/doc/xmame/mess/windows/images/propadv.gif
share/doc/xmame/mess/windows/images/propcnt.gif
share/doc/xmame/mess/windows/images/propd3d.gif
share/doc/xmame/mess/windows/images/propmsc.gif
share/doc/xmame/mess/windows/images/props.gif
share/doc/xmame/mess/windows/images/propsnd.gif
share/doc/xmame/mess/windows/images/startup.gif
share/doc/xmame/mess/windows/images/tree.gif
share/doc/xmame/mess/windows/images/wzip.gif
share/doc/xmame/mess/windows/install.htm
share/doc/xmame/mess/windows/instbios.htm
share/doc/xmame/mess/windows/main.htm
share/doc/xmame/mess/windows/mgebios.htm
share/doc/xmame/mess/windows/osmenu.htm
share/doc/xmame/mess/windows/runsw.htm
share/doc/xmame/mess/windows/suppsys.htm
share/doc/xmame/mess/windows/update.htm
share/doc/xmame/mess/windows/win32cmd.htm
share/doc/xmame/mess/wintoc.xml
share/doc/xmame/multiplayer-readme.txt
share/doc/xmame/old-changes.mess
share/doc/xmame/readhist.txt
share/doc/xmame/readme.mess
share/doc/xmame/xmame-doc-1.html
share/doc/xmame/xmame-doc-2.html
share/doc/xmame/xmame-doc-3.html
share/doc/xmame/xmame-doc-4.html
share/doc/xmame/xmame-doc-5.html
share/doc/xmame/xmame-doc-6.html
share/doc/xmame/xmame-doc-7.html
share/doc/xmame/xmame-doc-8.html
share/doc/xmame/xmame-doc.html
share/doc/xmame/xmame-doc.lyx
share/doc/xmame/xmame-doc.man.skel
@ -42,7 +87,81 @@ share/doc/xmame/xmame-gdoc-7.html
share/doc/xmame/xmame-gdoc-8.html
share/doc/xmame/xmame-gdoc.html
share/doc/xmame/xmame.css
share/doc/xmame/xmessrc.dist
share/xmess/
share/xmess/hash/
share/xmess/hash/a2600.hsi
share/xmess/hash/a5200.hsi
share/xmess/hash/a7800.hsi
share/xmess/hash/a800.hsi
share/xmess/hash/a800xl.hsi
share/xmess/hash/advision.hsi
share/xmess/hash/apexc.hsi
share/xmess/hash/apple1.hsi
share/xmess/hash/apple2.hsi
share/xmess/hash/aquarius.hsi
share/xmess/hash/arcadia.hsi
share/xmess/hash/astrocde.hsi
share/xmess/hash/bbca.hsi
share/xmess/hash/c128.hsi
share/xmess/hash/c16.hsi
share/xmess/hash/c64.hsi
share/xmess/hash/cbm30.hsi
share/xmess/hash/cbm40.hsi
share/xmess/hash/cbm610.hsi
share/xmess/hash/cbm80.hsi
share/xmess/hash/cgenie.hsi
share/xmess/hash/channelf.hsi
share/xmess/hash/coco.hsi
share/xmess/hash/coleco.hsi
share/xmess/hash/coupe.hsi
share/xmess/hash/cpc464.hsi
share/xmess/hash/cpc6128.hsi
share/xmess/hash/dragon64.hsi
share/xmess/hash/ep128.hsi
share/xmess/hash/exidy.hsi
share/xmess/hash/gameboy.hsi
share/xmess/hash/gamegear.hsi
share/xmess/hash/gen_usa.hsi
share/xmess/hash/ibmpc.hsi
share/xmess/hash/ibmpcjr.hsi
share/xmess/hash/intv.hsi
share/xmess/hash/jaguar.hsi
share/xmess/hash/jupiter.hsi
share/xmess/hash/laser210.hsi
share/xmess/hash/lisa2.hsi
share/xmess/hash/lviv.hsi
share/xmess/hash/lynx.hsi
share/xmess/hash/max.hsi
share/xmess/hash/mc10.hsi
share/xmess/hash/microtan.hsi
share/xmess/hash/msx.hsi
share/xmess/hash/msx2.hsi
share/xmess/hash/msx2j.hsi
share/xmess/hash/msxj.hsi
share/xmess/hash/mtx512.hsi
share/xmess/hash/nascom1.hsi
share/xmess/hash/nes.hsi
share/xmess/hash/odyssey2.hsi
share/xmess/hash/oric.hsi
share/xmess/hash/p2000t.hsi
share/xmess/hash/pce.hsi
share/xmess/hash/pdp1.hsi
share/xmess/hash/pet.hsi
share/xmess/hash/psx.hsi
share/xmess/hash/sms.hsi
share/xmess/hash/snes.hsi
share/xmess/hash/sordm5.hsi
share/xmess/hash/spectrum.hsi
share/xmess/hash/studio2.hsi
share/xmess/hash/svi318.hsi
share/xmess/hash/svision.hsi
share/xmess/hash/ti99_4a.hsi
share/xmess/hash/ts2068.hsi
share/xmess/hash/vc4000.hsi
share/xmess/hash/vectrex.hsi
share/xmess/hash/vic20.hsi
share/xmess/hash/wswan.hsi
share/xmess/sysinfo.dat
share/xmess/xmessrc
@sample ${SYSCONFDIR}/xmessrc

View File

@ -1,39 +1,82 @@
@comment $OpenBSD: PLIST-sdl,v 1.5 2004/11/20 20:41:00 alek Exp $
@comment $OpenBSD: PLIST-sdl,v 1.6 2005/10/02 01:39:38 fgsch Exp $
@conflict xmame-*
@conflict xmess-*
bin/chdman
bin/dat2html
bin/imgtool
bin/romcmp
bin/xmame
bin/xmess
bin/xml2info
@man man/man6/xmame.6
@man man/man6/xmess.6
share/doc/xmame/
share/doc/xmame/README
share/doc/xmame/changes.mame
share/doc/xmame/changes.mess
share/doc/xmame/changes.opengl
share/doc/xmame/changes.unix
share/doc/xmame/credits.mess
share/doc/xmame/dga2.txt
share/doc/xmame/gamelist.mame
share/doc/xmame/gamelist.mess
share/doc/xmame/hsnew.txt
share/doc/xmame/img/
share/doc/xmame/img/xmame.jpg
share/doc/xmame/imgtool.txt
share/doc/xmame/liesmich.unix
share/doc/xmame/messroms.txt
share/doc/xmame/mame/
share/doc/xmame/mame/ctrlr.txt
share/doc/xmame/mame/license.txt
share/doc/xmame/mame/listinfo.txt
share/doc/xmame/mame/mame.txt
share/doc/xmame/mame/whatsnew.txt
share/doc/xmame/mame/whatsold.txt
share/doc/xmame/mame/windows.txt
share/doc/xmame/mess/
share/doc/xmame/mess/credits.htm
share/doc/xmame/mess/faq.htm
share/doc/xmame/mess/images/
share/doc/xmame/mess/images/logo.gif
share/doc/xmame/mess/imgtool.txt
share/doc/xmame/mess/messnew.txt
share/doc/xmame/mess/messroms.txt
share/doc/xmame/mess/style.css
share/doc/xmame/mess/windows/
share/doc/xmame/mess/windows/choice.htm
share/doc/xmame/mess/windows/compile.htm
share/doc/xmame/mess/windows/config.htm
share/doc/xmame/mess/windows/control.htm
share/doc/xmame/mess/windows/guiconf.htm
share/doc/xmame/mess/windows/guiuse.htm
share/doc/xmame/mess/windows/images/
share/doc/xmame/mess/windows/images/command.gif
share/doc/xmame/mess/windows/images/frog.gif
share/doc/xmame/mess/windows/images/gui.gif
share/doc/xmame/mess/windows/images/iniicon.gif
share/doc/xmame/mess/windows/images/keybcnt.gif
share/doc/xmame/mess/windows/images/newmenu.gif
share/doc/xmame/mess/windows/images/oldmenu.gif
share/doc/xmame/mess/windows/images/prop.gif
share/doc/xmame/mess/windows/images/propadv.gif
share/doc/xmame/mess/windows/images/propcnt.gif
share/doc/xmame/mess/windows/images/propd3d.gif
share/doc/xmame/mess/windows/images/propmsc.gif
share/doc/xmame/mess/windows/images/props.gif
share/doc/xmame/mess/windows/images/propsnd.gif
share/doc/xmame/mess/windows/images/startup.gif
share/doc/xmame/mess/windows/images/tree.gif
share/doc/xmame/mess/windows/images/wzip.gif
share/doc/xmame/mess/windows/install.htm
share/doc/xmame/mess/windows/instbios.htm
share/doc/xmame/mess/windows/main.htm
share/doc/xmame/mess/windows/mgebios.htm
share/doc/xmame/mess/windows/osmenu.htm
share/doc/xmame/mess/windows/runsw.htm
share/doc/xmame/mess/windows/suppsys.htm
share/doc/xmame/mess/windows/update.htm
share/doc/xmame/mess/windows/win32cmd.htm
share/doc/xmame/mess/wintoc.xml
share/doc/xmame/multiplayer-readme.txt
share/doc/xmame/old-changes.mess
share/doc/xmame/readhist.txt
share/doc/xmame/readme.mame
share/doc/xmame/readme.mess
share/doc/xmame/xmame-doc-1.html
share/doc/xmame/xmame-doc-2.html
share/doc/xmame/xmame-doc-3.html
share/doc/xmame/xmame-doc-4.html
share/doc/xmame/xmame-doc-5.html
share/doc/xmame/xmame-doc-6.html
share/doc/xmame/xmame-doc-7.html
share/doc/xmame/xmame-doc-8.html
share/doc/xmame/xmame-doc.html
share/doc/xmame/xmame-doc.lyx
share/doc/xmame/xmame-doc.man.skel
@ -48,13 +91,95 @@ share/doc/xmame/xmame-gdoc-7.html
share/doc/xmame/xmame-gdoc-8.html
share/doc/xmame/xmame-gdoc.html
share/doc/xmame/xmame.css
share/doc/xmame/xmamerc.dist
share/doc/xmame/xmessrc.dist
share/xmame/
share/xmame/cheat.dat
share/xmame/ctrlr/
share/xmame/ctrlr/hotrod.cfg
share/xmame/ctrlr/hotrodse.cfg
share/xmame/ctrlr/slikstik.cfg
share/xmame/ctrlr/standard.cfg
share/xmame/ctrlr/xarcade.cfg
share/xmame/hiscore.dat
share/xmame/history.dat
share/xmame/unofficial_hiscore.txt
share/xmame/xmamerc
@sample ${SYSCONFDIR}/xmamerc
share/xmess/
share/xmess/hash/
share/xmess/hash/a2600.hsi
share/xmess/hash/a5200.hsi
share/xmess/hash/a7800.hsi
share/xmess/hash/a800.hsi
share/xmess/hash/a800xl.hsi
share/xmess/hash/advision.hsi
share/xmess/hash/apexc.hsi
share/xmess/hash/apple1.hsi
share/xmess/hash/apple2.hsi
share/xmess/hash/aquarius.hsi
share/xmess/hash/arcadia.hsi
share/xmess/hash/astrocde.hsi
share/xmess/hash/bbca.hsi
share/xmess/hash/c128.hsi
share/xmess/hash/c16.hsi
share/xmess/hash/c64.hsi
share/xmess/hash/cbm30.hsi
share/xmess/hash/cbm40.hsi
share/xmess/hash/cbm610.hsi
share/xmess/hash/cbm80.hsi
share/xmess/hash/cgenie.hsi
share/xmess/hash/channelf.hsi
share/xmess/hash/coco.hsi
share/xmess/hash/coleco.hsi
share/xmess/hash/coupe.hsi
share/xmess/hash/cpc464.hsi
share/xmess/hash/cpc6128.hsi
share/xmess/hash/dragon64.hsi
share/xmess/hash/ep128.hsi
share/xmess/hash/exidy.hsi
share/xmess/hash/gameboy.hsi
share/xmess/hash/gamegear.hsi
share/xmess/hash/gen_usa.hsi
share/xmess/hash/ibmpc.hsi
share/xmess/hash/ibmpcjr.hsi
share/xmess/hash/intv.hsi
share/xmess/hash/jaguar.hsi
share/xmess/hash/jupiter.hsi
share/xmess/hash/laser210.hsi
share/xmess/hash/lisa2.hsi
share/xmess/hash/lviv.hsi
share/xmess/hash/lynx.hsi
share/xmess/hash/max.hsi
share/xmess/hash/mc10.hsi
share/xmess/hash/microtan.hsi
share/xmess/hash/msx.hsi
share/xmess/hash/msx2.hsi
share/xmess/hash/msx2j.hsi
share/xmess/hash/msxj.hsi
share/xmess/hash/mtx512.hsi
share/xmess/hash/nascom1.hsi
share/xmess/hash/nes.hsi
share/xmess/hash/odyssey2.hsi
share/xmess/hash/oric.hsi
share/xmess/hash/p2000t.hsi
share/xmess/hash/pce.hsi
share/xmess/hash/pdp1.hsi
share/xmess/hash/pet.hsi
share/xmess/hash/psx.hsi
share/xmess/hash/sms.hsi
share/xmess/hash/snes.hsi
share/xmess/hash/sordm5.hsi
share/xmess/hash/spectrum.hsi
share/xmess/hash/studio2.hsi
share/xmess/hash/svi318.hsi
share/xmess/hash/svision.hsi
share/xmess/hash/ti99_4a.hsi
share/xmess/hash/ts2068.hsi
share/xmess/hash/vc4000.hsi
share/xmess/hash/vectrex.hsi
share/xmess/hash/vic20.hsi
share/xmess/hash/wswan.hsi
share/xmess/sysinfo.dat
share/xmess/xmessrc
@sample ${SYSCONFDIR}/xmessrc