- Update to 0.37b13.2.
- Add SDL flavor. - Add hiscores, histories, cheats. - Add example rc files. Submitted by Claudio Castiglia <ccastig@softhome.net>.
This commit is contained in:
parent
ad03af2a4a
commit
37b8663486
@ -1,20 +1,30 @@
|
|||||||
# $OpenBSD: Makefile,v 1.1.1.1 2001/04/04 14:31:54 naddy Exp $
|
# $OpenBSD: Makefile,v 1.2 2001/08/12 23:03:10 naddy Exp $
|
||||||
|
|
||||||
COMMENT= emulates arcade machines and old home computers
|
COMMENT= "emulates arcade machines and old home computers"
|
||||||
COMMENT-mame= emulates a massive variety of arcade machines
|
COMMENT-mame= "emulates a massive variety of arcade machines"
|
||||||
COMMENT-mess= emulates game consoles and old home computers
|
COMMENT-mess= "emulates game consoles and old home computers"
|
||||||
|
|
||||||
VERSION= 0.37b11.2
|
VERSION= 0.37b13.2
|
||||||
DISTNAME= xmame-${VERSION}
|
DISTNAME= xmame-${VERSION}
|
||||||
NEED_VERSION= 1.377
|
|
||||||
|
NEED_VERSION= 1.427
|
||||||
CATEGORIES= emulators games
|
CATEGORIES= emulators games
|
||||||
MASTER_SITES= ${HOMEPAGE}/download/ \
|
MASTER_SITES= ${HOMEPAGE}/download/ \
|
||||||
ftp://ftp.kaupp.cx/pub/xmame/
|
ftp://ftp.kaupp.cx/pub/xmame/
|
||||||
|
MASTER_SITES0= http://www.mame.net/zips/
|
||||||
|
MASTER_SITES1= http://www.sys2064.com/files/mame/
|
||||||
|
MASTER_SITES2= http://cheat.retrogames.com/
|
||||||
|
|
||||||
HOMEPAGE= http://x.mame.net
|
HOMEPAGE= http://x.mame.net
|
||||||
|
|
||||||
MAINTAINER= Claudio Castiglia <ccastig@softhome.net>
|
MAINTAINER= Claudio Castiglia <ccastig@softhome.net>
|
||||||
|
|
||||||
|
HISCORE_FILE= hsdat7.zip
|
||||||
|
HISTORY_FILE= history.zip
|
||||||
|
CHEAT_FILE= cheat.zip
|
||||||
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${HISCORE_FILE}:0 ${HISTORY_FILE}:1 \
|
||||||
|
${CHEAT_FILE}:2
|
||||||
|
|
||||||
# Need to know endianness
|
# Need to know endianness
|
||||||
ONLY_FOR_ARCHS= alpha hppa i386 m68k powerpc sparc
|
ONLY_FOR_ARCHS= alpha hppa i386 m68k powerpc sparc
|
||||||
|
|
||||||
@ -34,14 +44,28 @@ PKGNAME= xmame+xmess-${VERSION}
|
|||||||
PKGNAME-mame= xmame-${VERSION}
|
PKGNAME-mame= xmame-${VERSION}
|
||||||
PKGNAME-mess= xmess-${VERSION}
|
PKGNAME-mess= xmess-${VERSION}
|
||||||
|
|
||||||
FLAVORS= gl
|
FLAVORS= x11 gl sdl
|
||||||
FLAVOR?=
|
FLAVOR?= x11
|
||||||
|
|
||||||
.if ${FLAVOR:L:Mgl}
|
.if ${FLAVOR} == "sdl"
|
||||||
LIB_DEPENDS+= GLU.3::graphics/Mesa
|
DISPLAY_METHOD= SDL
|
||||||
|
LIB_DEPENDS+= SDL.:sdl-*-!no_x11:devel/sdl
|
||||||
|
.elif ${FLAVOR} == "gl"
|
||||||
DISPLAY_METHOD= xgl
|
DISPLAY_METHOD= xgl
|
||||||
.else
|
LIB_DEPENDS+= jpeg.::graphics/jpeg
|
||||||
|
.elif ${FLAVOR} == "x11"
|
||||||
DISPLAY_METHOD= x11
|
DISPLAY_METHOD= x11
|
||||||
|
.else
|
||||||
|
. for i in ${FLAVOR:L}
|
||||||
|
. if ${FLAVORS:L:M${i}}
|
||||||
|
EXFL+= ${i}
|
||||||
|
EXFI?= ${i}
|
||||||
|
. endif
|
||||||
|
. endfor
|
||||||
|
. if ${EXFL} != ${EXFI}
|
||||||
|
ERRORS+= "Fatal: Mutually exclusive flavors: ${EXFL}."
|
||||||
|
. endif
|
||||||
|
DISPLAY_METHOD=
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
MAKE_ENV= PREFIX="${PREFIX}"
|
MAKE_ENV= PREFIX="${PREFIX}"
|
||||||
@ -51,16 +75,23 @@ MAKE_FLAGS= ARCH=openbsd \
|
|||||||
DISPLAY_METHOD="${DISPLAY_METHOD}" \
|
DISPLAY_METHOD="${DISPLAY_METHOD}" \
|
||||||
INCLUDES="-I${LOCALBASE}/include" LIBS="-L${LOCALBASE}/lib" \
|
INCLUDES="-I${LOCALBASE}/include" LIBS="-L${LOCALBASE}/lib" \
|
||||||
X11INC="-I${X11BASE}/include" X11LIB="-L${X11BASE}/lib" \
|
X11INC="-I${X11BASE}/include" X11LIB="-L${X11BASE}/lib" \
|
||||||
|
GLLIBS="-pthread" CFLAGS="-DRTLD_GLOBAL=0" \
|
||||||
INSTALL_PROGRAM_DIR="${INSTALL_PROGRAM_DIR}" \
|
INSTALL_PROGRAM_DIR="${INSTALL_PROGRAM_DIR}" \
|
||||||
INSTALL_MAN_DIR="${INSTALL_MAN_DIR}" \
|
INSTALL_MAN_DIR="${INSTALL_MAN_DIR}" \
|
||||||
INSTALL_DATA_DIR="${INSTALL_DATA_DIR}" \
|
INSTALL_DATA_DIR="${INSTALL_DATA_DIR}" \
|
||||||
INSTALL_PROGRAM="${INSTALL_PROGRAM}" \
|
INSTALL_PROGRAM="${INSTALL_PROGRAM}" \
|
||||||
INSTALL_PROGRAM_SUID="${INSTALL_PROGRAM}" \
|
INSTALL_PROGRAM_SUID="${INSTALL_PROGRAM}" \
|
||||||
INSTALL_MAN="${INSTALL_MAN}" \
|
INSTALL_MAN="${INSTALL_MAN}" \
|
||||||
INSTALL_DATA="${INSTALL_DATA}"
|
INSTALL_DATA="${INSTALL_DATA}" \
|
||||||
|
SYSCONFDIR="${SYSCONFDIR}"
|
||||||
|
|
||||||
.if ${MACHINE_ARCH} == "i386"
|
.if ${MACHINE_ARCH} == "i386"
|
||||||
MAKE_FLAGS+= MY_CPU=i386 JOY_I386=1 X11_DGA=1
|
MAKE_FLAGS+= MY_CPU=i386
|
||||||
|
. 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"
|
.elif ${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "m68k"
|
||||||
MAKE_FLAGS+= MY_CPU=${MACHINE_ARCH}
|
MAKE_FLAGS+= MY_CPU=${MACHINE_ARCH}
|
||||||
.elif ${MACHINE_ARCH} == "hppa" || ${MACHINE_ARCH} == "powerpc" || \
|
.elif ${MACHINE_ARCH} == "hppa" || ${MACHINE_ARCH} == "powerpc" || \
|
||||||
@ -72,8 +103,20 @@ post-patch:
|
|||||||
@cp ${FILESDIR}/${MAKE_FILE} ${WRKSRC}
|
@cp ${FILESDIR}/${MAKE_FILE} ${WRKSRC}
|
||||||
|
|
||||||
post-install:
|
post-install:
|
||||||
@echo "\nInstalling extra documentation..."
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/xmame/sysinfo
|
||||||
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/xmame
|
@cd ${WRKSRC}/doc && find . -type f \
|
||||||
${INSTALL_DATA} ${WRKSRC}/doc/* ${PREFIX}/share/doc/xmame
|
-exec ${INSTALL_DATA} {} ${PREFIX}/share/doc/xmame/{} \;
|
||||||
|
${INSTALL_DATA_DIR} ${PREFIX}/share/xmame
|
||||||
|
${INSTALL_DATA} ${FILESDIR}/xmame-${DISPLAY_METHOD}rc \
|
||||||
|
${PREFIX}/share/xmame/xmamerc
|
||||||
|
${UNZIP} -u ${FULLDISTDIR}/${HISCORE_FILE} -d ${WRKDIR}
|
||||||
|
${UNZIP} -u ${FULLDISTDIR}/${HISTORY_FILE} -d ${WRKDIR}
|
||||||
|
${UNZIP} -u ${FULLDISTDIR}/${CHEAT_FILE} -d ${WRKDIR}
|
||||||
|
${INSTALL_DATA_DIR} ${PREFIX}/share/xmame
|
||||||
|
${INSTALL_DATA} ${WRKDIR}/*dat ${PREFIX}/share/xmame
|
||||||
|
${INSTALL_DATA} ${WRKDIR}/*txt ${PREFIX}/share/doc/xmame
|
||||||
|
${INSTALL_DATA_DIR} ${PREFIX}/share/xmess
|
||||||
|
${INSTALL_DATA} ${FILESDIR}/xmess-${DISPLAY_METHOD}rc \
|
||||||
|
${PREFIX}/share/xmess/xmessrc
|
||||||
|
|
||||||
.include <bsd.port.mk>
|
.include <bsd.port.mk>
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
# $OpenBSD: Makefile.OpenBSD,v 1.1.1.1 2001/04/04 14:31:55 naddy Exp $
|
# $OpenBSD: Makefile.OpenBSD,v 1.2 2001/08/12 23:03:10 naddy Exp $
|
||||||
|
|
||||||
all install:
|
all install:
|
||||||
@for i in mame mess; do \
|
@for i in mame mess; do \
|
||||||
${MAKE} -f makefile.unix TARGET=$$i $@; \
|
${MAKE} -f makefile.unix TARGET=$$i \
|
||||||
|
XMAMEROOT=${PREFIX}/share/x$$i $@; \
|
||||||
done
|
done
|
||||||
|
@ -1,3 +1,12 @@
|
|||||||
MD5 (xmame-0.37b11.2.tar.bz2) = 723caaa67908860b952f9df6e3744b05
|
MD5 (cheat.zip) = dc380436c04780950cee07d3e31bfb0b
|
||||||
RMD160 (xmame-0.37b11.2.tar.bz2) = cf00cbf621944ae58805c2d699a964cfb2c18f1d
|
MD5 (history.zip) = 69da5c33e6a78092c6cd75cbeb737c6a
|
||||||
SHA1 (xmame-0.37b11.2.tar.bz2) = d25b081126731b8aeac3141d5cae271733d04319
|
MD5 (hsdat7.zip) = 9e4a7e36448895f13128a675327e34e4
|
||||||
|
MD5 (xmame-0.37b13.2.tar.bz2) = 70ec7ae3fba3110a6d85a7f5bfdb84f1
|
||||||
|
RMD160 (cheat.zip) = 598af7e9d68e8f5938a9ac1ad8364e4636db483a
|
||||||
|
RMD160 (history.zip) = fe0201b578135aa0d2cfa22346adb799e4169cdf
|
||||||
|
RMD160 (hsdat7.zip) = 908f7876f2735ae8d7b55c9a4f6d833323367b55
|
||||||
|
RMD160 (xmame-0.37b13.2.tar.bz2) = a68eff01f59f5b437c8e03005be37bff525075b8
|
||||||
|
SHA1 (cheat.zip) = 34360633f53632eabe5bb665d2729bebc300f253
|
||||||
|
SHA1 (history.zip) = 194894b05620a1d9d4800634e0a7d91bc67d0ff2
|
||||||
|
SHA1 (hsdat7.zip) = c55a193639f64156d70a832797e26371147893d9
|
||||||
|
SHA1 (xmame-0.37b13.2.tar.bz2) = e7658678aee05ab11217d7e629752d1dc6dd38f4
|
||||||
|
79
emulators/xmame/files/xmame-SDLrc
Normal file
79
emulators/xmame/files/xmame-SDLrc
Normal file
@ -0,0 +1,79 @@
|
|||||||
|
# $OpenBSD: xmame-SDLrc,v 1.1 2001/08/12 23:03:10 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
|
||||||
|
|
||||||
|
### 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 /usr/local/share/xmame
|
||||||
|
spooldir /usr/local/share/xmame
|
||||||
|
screenshotdir .
|
||||||
|
cheatfile /usr/local/share/xmame/cheat.dat
|
||||||
|
hiscorefile /usr/local/share/xmame/hiscore.dat
|
||||||
|
historyfile /usr/local/share/xmame/history.dat
|
||||||
|
mameinfofile /usr/local/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
|
||||||
|
|
98
emulators/xmame/files/xmame-x11rc
Normal file
98
emulators/xmame/files/xmame-x11rc
Normal file
@ -0,0 +1,98 @@
|
|||||||
|
# $OpenBSD: xmame-x11rc,v 1.1 2001/08/12 23:03:10 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
|
||||||
|
|
||||||
|
### 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 /usr/local/share/xmame
|
||||||
|
spooldir /usr/local/share/xmame
|
||||||
|
screenshotdir .
|
||||||
|
cheatfile /usr/local/share/xmame/cheat.dat
|
||||||
|
hiscorefile /usr/local/share/xmame/hiscore.dat
|
||||||
|
historyfile /usr/local/share/xmame/history.dat
|
||||||
|
mameinfofile /usr/local/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
|
||||||
|
|
95
emulators/xmame/files/xmame-xglrc
Normal file
95
emulators/xmame/files/xmame-xglrc
Normal file
@ -0,0 +1,95 @@
|
|||||||
|
# $OpenBSD: xmame-xglrc,v 1.1 2001/08/12 23:03:10 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 /usr/local/share/xmame
|
||||||
|
spooldir /usr/local/share/xmame
|
||||||
|
screenshotdir .
|
||||||
|
cheatfile /usr/local/share/xmame/cheat.dat
|
||||||
|
hiscorefile /usr/local/share/xmame/hiscore.dat
|
||||||
|
historyfile /usr/local/share/xmame/history.dat
|
||||||
|
mameinfofile /usr/local/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
|
||||||
|
|
80
emulators/xmame/files/xmess-SDLrc
Normal file
80
emulators/xmame/files/xmess-SDLrc
Normal file
@ -0,0 +1,80 @@
|
|||||||
|
# $OpenBSD: xmess-SDLrc,v 1.1 2001/08/12 23:03:10 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
|
||||||
|
|
||||||
|
### 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 /usr/local/share/xmess
|
||||||
|
spooldir /usr/local/share/xmess
|
||||||
|
screenshotdir .
|
||||||
|
cheatdir /usr/local/share/xmess/cheat
|
||||||
|
crcdir /usr/local/share/xmess/crc
|
||||||
|
cheatfile cheat.cdb
|
||||||
|
hiscorefile /usr/local/share/xmess/hiscore.dat
|
||||||
|
historyfile /usr/local/share/xmess/history.dat
|
||||||
|
mameinfofile /usr/local/share/xmess/mameinfo.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
|
||||||
|
|
99
emulators/xmame/files/xmess-x11rc
Normal file
99
emulators/xmame/files/xmess-x11rc
Normal file
@ -0,0 +1,99 @@
|
|||||||
|
# $OpenBSD: xmess-x11rc,v 1.1 2001/08/12 23:03:10 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
|
||||||
|
|
||||||
|
### 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 /usr/local/share/xmess
|
||||||
|
spooldir /usr/local/share/xmess
|
||||||
|
screenshotdir .
|
||||||
|
cheatdir /usr/local/share/xmess/cheat
|
||||||
|
crcdir /usr/local/share/xmess/crc
|
||||||
|
cheatfile cheat.cdb
|
||||||
|
hiscorefile /usr/local/share/xmess/hiscore.dat
|
||||||
|
historyfile /usr/local/share/xmess/history.dat
|
||||||
|
mameinfofile /usr/local/share/xmess/mameinfo.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
|
||||||
|
|
96
emulators/xmame/files/xmess-xglrc
Normal file
96
emulators/xmame/files/xmess-xglrc
Normal file
@ -0,0 +1,96 @@
|
|||||||
|
# $OpenBSD: xmess-xglrc,v 1.1 2001/08/12 23:03:10 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 /usr/local/share/xmess
|
||||||
|
spooldir /usr/local/share/xmess
|
||||||
|
screenshotdir .
|
||||||
|
cheatdir /usr/local/share/xmess/cheat
|
||||||
|
crcdir /usr/local/share/xmess/crc
|
||||||
|
cheatfile cheat.cdb
|
||||||
|
hiscorefile /usr/local/share/xmess/hiscore.dat
|
||||||
|
historyfile /usr/local/share/xmess/history.dat
|
||||||
|
mameinfofile /usr/local/share/xmess/mameinfo.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
|
||||||
|
|
12
emulators/xmame/patches/patch-src_unix_Makefile
Normal file
12
emulators/xmame/patches/patch-src_unix_Makefile
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
$OpenBSD: patch-src_unix_Makefile,v 1.1 2001/08/12 23:03:10 naddy Exp $
|
||||||
|
--- src/unix/Makefile.orig Thu Jul 5 09:47:25 2001
|
||||||
|
+++ src/unix/Makefile Thu Jul 5 09:47:43 2001
|
||||||
|
@@ -100,7 +100,7 @@
|
||||||
|
#CFLAGS.aix = -DSYSDEP_DSP_AIX -I/usr/include/UMS -I/usr/lpp/som/include
|
||||||
|
|
||||||
|
#all cflags
|
||||||
|
-MY_CFLAGS = $(CFLAGS) $(CFLAGS.$(ARCH)) -I. -I.. -I../../mess
|
||||||
|
+MY_CFLAGS = -I. -I.. -I../../mess $(CFLAGS) $(CFLAGS.$(ARCH))
|
||||||
|
|
||||||
|
|
||||||
|
##############################################################################
|
@ -1,13 +1,25 @@
|
|||||||
$OpenBSD: patch-src_unix_unix_mak,v 1.1.1.1 2001/04/04 14:31:55 naddy Exp $
|
$OpenBSD: patch-src_unix_unix_mak,v 1.2 2001/08/12 23:03:10 naddy Exp $
|
||||||
--- src/unix/unix.mak.orig Tue Feb 6 01:45:55 2001
|
--- src/unix/unix.mak.orig Sun Apr 8 22:54:42 2001
|
||||||
+++ src/unix/unix.mak Tue Apr 3 23:27:41 2001
|
+++ src/unix/unix.mak Mon Aug 6 07:05:14 2001
|
||||||
@@ -319,17 +319,17 @@ install: $(INST.$(DISPLAY_METHOD)) insta
|
@@ -50,7 +50,7 @@
|
||||||
install-man:
|
LIBS.xfx = $(X11LIB) $(JOY_X11_LIBS) -lX11 -lXext -lglide2x
|
||||||
@echo installing manual pages under $(MANDIR) ...
|
LIBS.svgafx = $(X11LIB) -lvga -lvgagl -lglide2x
|
||||||
-$(INSTALL_MAN_DIR) $(MANDIR)
|
LIBS.openstep = -framework AppKit
|
||||||
- $(INSTALL_MAN) doc/x$(TARGET).6 $(MANDIR)/x$(TARGET).6
|
-LIBS.SDL = -ldl -lSDL -lpthread -D_REENTRANT
|
||||||
+ $(INSTALL_MAN) doc/xmame.6 $(MANDIR)/x$(TARGET).6
|
+LIBS.SDL = $(X11LIB) -lSDL -pthread -D_REENTRANT
|
||||||
|
LIBS.photon2 = -L/usr/lib -lph -lphrender
|
||||||
|
|
||||||
|
CFLAGS.x11 = $(X11INC) $(JOY_X11_CFLAGS)
|
||||||
|
@@ -166,7 +166,7 @@
|
||||||
|
# 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
|
||||||
|
@@ -345,12 +345,12 @@
|
||||||
doinstall:
|
doinstall:
|
||||||
@echo installing binaries under $(BINDIR)...
|
@echo installing binaries under $(BINDIR)...
|
||||||
-$(INSTALL_PROGRAM_DIR) $(BINDIR)
|
-$(INSTALL_PROGRAM_DIR) $(BINDIR)
|
||||||
|
12
emulators/xmame/patches/patch-src_unix_videodrivers_gljpg_c
Normal file
12
emulators/xmame/patches/patch-src_unix_videodrivers_gljpg_c
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
$OpenBSD: patch-src_unix_videodrivers_gljpg_c,v 1.1 2001/08/12 23:03:10 naddy Exp $
|
||||||
|
--- src/unix/video-drivers/gljpg.c.orig Thu Jul 5 09:57:06 2001
|
||||||
|
+++ src/unix/video-drivers/gljpg.c Thu Jul 5 11:30:19 2001
|
||||||
|
@@ -15,7 +15,7 @@
|
||||||
|
#include <string.h>
|
||||||
|
#include "jpeglib.h"
|
||||||
|
#include <setjmp.h>
|
||||||
|
-#include <GL/glut.h>
|
||||||
|
+#include <GL/glu.h>
|
||||||
|
|
||||||
|
extern char *cabname;
|
||||||
|
|
72
emulators/xmame/patches/patch-src_unix_videodrivers_gltool_c
Normal file
72
emulators/xmame/patches/patch-src_unix_videodrivers_gltool_c
Normal file
@ -0,0 +1,72 @@
|
|||||||
|
$OpenBSD: patch-src_unix_videodrivers_gltool_c,v 1.1 2001/08/12 23:03:10 naddy Exp $
|
||||||
|
--- src/unix/video-drivers/gltool.c.orig Sat Aug 11 21:54:56 2001
|
||||||
|
+++ src/unix/video-drivers/gltool.c Sat Aug 11 22:30:50 2001
|
||||||
|
@@ -355,7 +355,8 @@
|
||||||
|
|
||||||
|
if (disp__glXGetProcAddress == NULL && __firstAccess)
|
||||||
|
{
|
||||||
|
- disp__glXGetProcAddress = dlsym (libHandleGL, "glXGetProcAddressARB");
|
||||||
|
+ disp__glXGetProcAddress = dlsym (libHandleGL, SYMBOL_PREFIX
|
||||||
|
+ "glXGetProcAddressARB");
|
||||||
|
|
||||||
|
if (disp__glXGetProcAddress != NULL && verbose)
|
||||||
|
{
|
||||||
|
@@ -365,7 +366,8 @@
|
||||||
|
|
||||||
|
if (disp__glXGetProcAddress == NULL)
|
||||||
|
{
|
||||||
|
- disp__glXGetProcAddress = dlsym (libHandleGL, "glXGetProcAddressEXT");
|
||||||
|
+ disp__glXGetProcAddress = dlsym (libHandleGL, SYMBOL_PREFIX
|
||||||
|
+ "glXGetProcAddressEXT");
|
||||||
|
|
||||||
|
if (disp__glXGetProcAddress != NULL && verbose)
|
||||||
|
{
|
||||||
|
@@ -376,7 +378,8 @@
|
||||||
|
|
||||||
|
if (disp__glXGetProcAddress == NULL)
|
||||||
|
{
|
||||||
|
- disp__glXGetProcAddress = dlsym (libHandleGL, "glXGetProcAddress");
|
||||||
|
+ disp__glXGetProcAddress = dlsym (libHandleGL, SYMBOL_PREFIX
|
||||||
|
+ "glXGetProcAddress");
|
||||||
|
|
||||||
|
if (disp__glXGetProcAddress != NULL && verbose)
|
||||||
|
{
|
||||||
|
@@ -392,7 +395,8 @@
|
||||||
|
fflush (NULL);
|
||||||
|
if (libHandleGLX != NULL)
|
||||||
|
{
|
||||||
|
- disp__glXGetProcAddress = dlsym (libHandleGLX, "glXGetProcAddressARB");
|
||||||
|
+ disp__glXGetProcAddress = dlsym (libHandleGLX, SYMBOL_PREFIX
|
||||||
|
+ "glXGetProcAddressARB");
|
||||||
|
|
||||||
|
if (disp__glXGetProcAddress != NULL && verbose)
|
||||||
|
{
|
||||||
|
@@ -402,7 +406,8 @@
|
||||||
|
|
||||||
|
if (disp__glXGetProcAddress == NULL)
|
||||||
|
{
|
||||||
|
- disp__glXGetProcAddress = dlsym (libHandleGLX, "glXGetProcAddressEXT");
|
||||||
|
+ disp__glXGetProcAddress = dlsym (libHandleGLX, SYMBOL_PREFIX
|
||||||
|
+ "glXGetProcAddressEXT");
|
||||||
|
|
||||||
|
if (disp__glXGetProcAddress != NULL && verbose)
|
||||||
|
{
|
||||||
|
@@ -413,7 +418,8 @@
|
||||||
|
|
||||||
|
if (disp__glXGetProcAddress == NULL)
|
||||||
|
{
|
||||||
|
- disp__glXGetProcAddress = dlsym (libHandleGLX, "glXGetProcAddress");
|
||||||
|
+ disp__glXGetProcAddress = dlsym (libHandleGLX, SYMBOL_PREFIX
|
||||||
|
+ "glXGetProcAddress");
|
||||||
|
|
||||||
|
if (disp__glXGetProcAddress != NULL && verbose)
|
||||||
|
{
|
||||||
|
@@ -539,7 +545,7 @@
|
||||||
|
if(!loadGLLibrary (libGLName, libGLUName))
|
||||||
|
return;
|
||||||
|
|
||||||
|
- #define GET_GL_PROCADDRESS(a) getGLProcAddressHelper (libGLName, libGLUName, (a), NULL, 1, 0);
|
||||||
|
+ #define GET_GL_PROCADDRESS(a) getGLProcAddressHelper (libGLName, libGLUName, (SYMBOL_PREFIX a), NULL, 1, 0);
|
||||||
|
|
||||||
|
#include "gl-disp-fetch.hc"
|
||||||
|
#include "glu-disp-fetch.hc"
|
@ -0,0 +1,12 @@
|
|||||||
|
$OpenBSD: patch-src_unix_videodrivers_glxtool_c,v 1.1 2001/08/12 23:03:10 naddy Exp $
|
||||||
|
--- src/unix/video-drivers/glxtool.c.orig Sat Aug 11 22:03:52 2001
|
||||||
|
+++ src/unix/video-drivers/glxtool.c Sat Aug 11 22:05:53 2001
|
||||||
|
@@ -29,7 +29,7 @@
|
||||||
|
if(!_firstRun)
|
||||||
|
return;
|
||||||
|
|
||||||
|
- #define GET_GL_PROCADDRESS(a) getGLProcAddressHelper (libGLName, libGLUName, (a), NULL, 1, 0);
|
||||||
|
+ #define GET_GL_PROCADDRESS(a) getGLProcAddressHelper (libGLName, libGLUName, (SYMBOL_PREFIX a), NULL, 1, 0);
|
||||||
|
|
||||||
|
#include "glx-disp-fetch.hc"
|
||||||
|
|
@ -0,0 +1,18 @@
|
|||||||
|
$OpenBSD: patch-src_unix_videodrivers_glxtool_h,v 1.1 2001/08/12 23:03:10 naddy Exp $
|
||||||
|
--- src/unix/video-drivers/glxtool.h.orig Sun Aug 12 01:44:44 2001
|
||||||
|
+++ src/unix/video-drivers/glxtool.h Sun Aug 12 01:46:10 2001
|
||||||
|
@@ -16,6 +16,14 @@
|
||||||
|
#include <X11/Xlib.h>
|
||||||
|
#include <X11/Xutil.h>
|
||||||
|
#include <X11/Xatom.h>
|
||||||
|
+
|
||||||
|
+ #ifndef SYMBOL_PREFIX
|
||||||
|
+ #ifdef __ELF__
|
||||||
|
+ #define SYMBOL_PREFIX ""
|
||||||
|
+ #else
|
||||||
|
+ #define SYMBOL_PREFIX "_"
|
||||||
|
+ #endif
|
||||||
|
+ #endif
|
||||||
|
|
||||||
|
#include "gltool.h"
|
||||||
|
|
@ -1,3 +1,4 @@
|
|||||||
|
xmame and xmess documentation files are in ${PREFIX}/share/doc/xmame;
|
||||||
You should read the xmame and xmess documentation at ${PREFIX}/share/doc/xmame.
|
rc files are in ${PREFIX}/share/xmame/xmamerc and
|
||||||
|
${PREFIX}/share/xmess/xmessrc; you should edit and copy them into
|
||||||
|
${SYSCONFDIR} or ${HOME}/.xmame and ${HOME}/.xmess.
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
|
xmame documentation files are in ${PREFIX}/share/doc/xmame; rc file is
|
||||||
You should read the xmame documentation at ${PREFIX}/share/doc/xmame.
|
in ${PREFIX}/share/xmame/xmamerc, you should edit and copy it into
|
||||||
|
${SYSCONFDIR} or ${HOME}/.xmame.
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
|
xmess documentation files are in ${PREFIX}/share/doc/xmame; rc file is
|
||||||
You should read the xmess documentation at ${PREFIX}/share/doc/xmame.
|
in ${PREFIX}/share/xmess/xmessrc, you should edit and copy it into
|
||||||
|
${SYSCONFDIR} or ${HOME}/.xmess.
|
||||||
|
@ -1,21 +1,64 @@
|
|||||||
@comment $OpenBSD: PLIST,v 1.1.1.1 2001/04/04 14:31:55 naddy Exp $
|
@comment $OpenBSD: PLIST,v 1.2 2001/08/12 23:03:10 naddy Exp $
|
||||||
|
@pkgcfl xmame-*
|
||||||
|
@pkgcfl xmess-*
|
||||||
bin/xmame
|
bin/xmame
|
||||||
bin/xmess
|
bin/xmess
|
||||||
man/man6/xmame.6
|
man/man6/xmame.6
|
||||||
man/man6/xmess.6
|
man/man6/xmess.6
|
||||||
share/doc/xmame/changes.mame
|
share/doc/xmame/changes.mame
|
||||||
share/doc/xmame/changes.mess
|
share/doc/xmame/changes.mess
|
||||||
|
share/doc/xmame/changes.opengl
|
||||||
share/doc/xmame/changes.unix
|
share/doc/xmame/changes.unix
|
||||||
share/doc/xmame/credits.txt
|
share/doc/xmame/credits.txt
|
||||||
share/doc/xmame/gamelist.mame
|
share/doc/xmame/gamelist.mame
|
||||||
share/doc/xmame/gamelist.mess
|
share/doc/xmame/gamelist.mess
|
||||||
|
share/doc/xmame/hsnew.txt
|
||||||
share/doc/xmame/imgtool.txt
|
share/doc/xmame/imgtool.txt
|
||||||
share/doc/xmame/liesmich.unix
|
share/doc/xmame/liesmich.unix
|
||||||
|
share/doc/xmame/makedoc.sh
|
||||||
share/doc/xmame/messold.txt
|
share/doc/xmame/messold.txt
|
||||||
share/doc/xmame/messroms.txt
|
share/doc/xmame/messroms.txt
|
||||||
share/doc/xmame/multiplayer-readme.txt
|
share/doc/xmame/multiplayer-readme.txt
|
||||||
|
share/doc/xmame/readhist.txt
|
||||||
share/doc/xmame/readme.mame
|
share/doc/xmame/readme.mame
|
||||||
share/doc/xmame/readme.mess
|
share/doc/xmame/readme.mess
|
||||||
|
share/doc/xmame/sysinfo/aim65.txt
|
||||||
|
share/doc/xmame/sysinfo/bondwell.txt
|
||||||
|
share/doc/xmame/sysinfo/c128.txt
|
||||||
|
share/doc/xmame/sysinfo/c65.txt
|
||||||
|
share/doc/xmame/sysinfo/comquest.txt
|
||||||
|
share/doc/xmame/sysinfo/dream.txt
|
||||||
|
share/doc/xmame/sysinfo/elf.txt
|
||||||
|
share/doc/xmame/sysinfo/europc.txt
|
||||||
|
share/doc/xmame/sysinfo/galaxy.txt
|
||||||
|
share/doc/xmame/sysinfo/hp48s.txt
|
||||||
|
share/doc/xmame/sysinfo/i8530286.txt
|
||||||
|
share/doc/xmame/sysinfo/ibm8530.txt
|
||||||
|
share/doc/xmame/sysinfo/ibmat.txt
|
||||||
|
share/doc/xmame/sysinfo/ibmpc.txt
|
||||||
|
share/doc/xmame/sysinfo/ibmpcjr.txt
|
||||||
|
share/doc/xmame/sysinfo/lynx.txt
|
||||||
|
share/doc/xmame/sysinfo/mk1.txt
|
||||||
|
share/doc/xmame/sysinfo/mk2.txt
|
||||||
|
share/doc/xmame/sysinfo/msx.txt
|
||||||
|
share/doc/xmame/sysinfo/nc.txt
|
||||||
|
share/doc/xmame/sysinfo/nc200.txt
|
||||||
|
share/doc/xmame/sysinfo/neat.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1251.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1350.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1401.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1500.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1512.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1640.txt
|
||||||
|
share/doc/xmame/sysinfo/pc200.txt
|
||||||
|
share/doc/xmame/sysinfo/pcw16.txt
|
||||||
|
share/doc/xmame/sysinfo/pong.txt
|
||||||
|
share/doc/xmame/sysinfo/ssystem3.txt
|
||||||
|
share/doc/xmame/sysinfo/studio2.txt
|
||||||
|
share/doc/xmame/sysinfo/svision.txt
|
||||||
|
share/doc/xmame/sysinfo/sym1.txt
|
||||||
|
share/doc/xmame/sysinfo/t1000hx.txt
|
||||||
|
share/doc/xmame/sysinfo/vip.txt
|
||||||
share/doc/xmame/xmame-doc-1.html
|
share/doc/xmame/xmame-doc-1.html
|
||||||
share/doc/xmame/xmame-doc-2.html
|
share/doc/xmame/xmame-doc-2.html
|
||||||
share/doc/xmame/xmame-doc-3.html
|
share/doc/xmame/xmame-doc-3.html
|
||||||
@ -25,9 +68,20 @@ share/doc/xmame/xmame-doc-6.html
|
|||||||
share/doc/xmame/xmame-doc-7.html
|
share/doc/xmame/xmame-doc-7.html
|
||||||
share/doc/xmame/xmame-doc.html
|
share/doc/xmame/xmame-doc.html
|
||||||
share/doc/xmame/xmame-doc.lyx
|
share/doc/xmame/xmame-doc.lyx
|
||||||
|
share/doc/xmame/xmame-doc.man.skel
|
||||||
share/doc/xmame/xmame-doc.ps
|
share/doc/xmame/xmame-doc.ps
|
||||||
share/doc/xmame/xmame-doc.sgml
|
share/doc/xmame/xmame-doc.sgml
|
||||||
share/doc/xmame/xmame-doc.txt
|
share/doc/xmame/xmame-doc.txt
|
||||||
share/doc/xmame/xmame.6
|
share/doc/xmame/xmame.6
|
||||||
share/doc/xmame/xmamerc.dist
|
share/doc/xmame/xmamerc.dist
|
||||||
|
share/doc/xmame/xmess.6
|
||||||
|
share/doc/xmame/xmessrc.dist
|
||||||
|
share/xmame/cheat.dat
|
||||||
|
share/xmame/hiscore.dat
|
||||||
|
share/xmame/history.dat
|
||||||
|
share/xmame/xmamerc
|
||||||
|
share/xmess/xmessrc
|
||||||
|
@dirrm share/xmess
|
||||||
|
@dirrm share/xmame
|
||||||
|
@dirrm share/doc/xmame/sysinfo
|
||||||
@dirrm share/doc/xmame
|
@dirrm share/doc/xmame
|
||||||
|
@ -1,29 +1,64 @@
|
|||||||
@comment $OpenBSD: PLIST-gl,v 1.1.1.1 2001/04/04 14:31:55 naddy Exp $
|
@comment $OpenBSD: PLIST-gl,v 1.2 2001/08/12 23:03:10 naddy Exp $
|
||||||
|
@pkgcfl xmame-*
|
||||||
|
@pkgcfl xmess-*
|
||||||
bin/xmame
|
bin/xmame
|
||||||
bin/xmess
|
bin/xmess
|
||||||
lib/xmame/cab/glmame/cabfront.jpg
|
|
||||||
lib/xmame/cab/glmame/cabtitle.jpg
|
|
||||||
lib/xmame/cab/glmame/glmame.cab
|
|
||||||
lib/xmame/cab/trans/trans.cab
|
|
||||||
lib/xmess/cab/glmame/cabfront.jpg
|
|
||||||
lib/xmess/cab/glmame/cabtitle.jpg
|
|
||||||
lib/xmess/cab/glmame/glmame.cab
|
|
||||||
lib/xmess/cab/trans/trans.cab
|
|
||||||
man/man6/xmame.6
|
man/man6/xmame.6
|
||||||
man/man6/xmess.6
|
man/man6/xmess.6
|
||||||
share/doc/xmame/changes.mame
|
share/doc/xmame/changes.mame
|
||||||
share/doc/xmame/changes.mess
|
share/doc/xmame/changes.mess
|
||||||
|
share/doc/xmame/changes.opengl
|
||||||
share/doc/xmame/changes.unix
|
share/doc/xmame/changes.unix
|
||||||
share/doc/xmame/credits.txt
|
share/doc/xmame/credits.txt
|
||||||
share/doc/xmame/gamelist.mame
|
share/doc/xmame/gamelist.mame
|
||||||
share/doc/xmame/gamelist.mess
|
share/doc/xmame/gamelist.mess
|
||||||
|
share/doc/xmame/hsnew.txt
|
||||||
share/doc/xmame/imgtool.txt
|
share/doc/xmame/imgtool.txt
|
||||||
share/doc/xmame/liesmich.unix
|
share/doc/xmame/liesmich.unix
|
||||||
|
share/doc/xmame/makedoc.sh
|
||||||
share/doc/xmame/messold.txt
|
share/doc/xmame/messold.txt
|
||||||
share/doc/xmame/messroms.txt
|
share/doc/xmame/messroms.txt
|
||||||
share/doc/xmame/multiplayer-readme.txt
|
share/doc/xmame/multiplayer-readme.txt
|
||||||
|
share/doc/xmame/readhist.txt
|
||||||
share/doc/xmame/readme.mame
|
share/doc/xmame/readme.mame
|
||||||
share/doc/xmame/readme.mess
|
share/doc/xmame/readme.mess
|
||||||
|
share/doc/xmame/sysinfo/aim65.txt
|
||||||
|
share/doc/xmame/sysinfo/bondwell.txt
|
||||||
|
share/doc/xmame/sysinfo/c128.txt
|
||||||
|
share/doc/xmame/sysinfo/c65.txt
|
||||||
|
share/doc/xmame/sysinfo/comquest.txt
|
||||||
|
share/doc/xmame/sysinfo/dream.txt
|
||||||
|
share/doc/xmame/sysinfo/elf.txt
|
||||||
|
share/doc/xmame/sysinfo/europc.txt
|
||||||
|
share/doc/xmame/sysinfo/galaxy.txt
|
||||||
|
share/doc/xmame/sysinfo/hp48s.txt
|
||||||
|
share/doc/xmame/sysinfo/i8530286.txt
|
||||||
|
share/doc/xmame/sysinfo/ibm8530.txt
|
||||||
|
share/doc/xmame/sysinfo/ibmat.txt
|
||||||
|
share/doc/xmame/sysinfo/ibmpc.txt
|
||||||
|
share/doc/xmame/sysinfo/ibmpcjr.txt
|
||||||
|
share/doc/xmame/sysinfo/lynx.txt
|
||||||
|
share/doc/xmame/sysinfo/mk1.txt
|
||||||
|
share/doc/xmame/sysinfo/mk2.txt
|
||||||
|
share/doc/xmame/sysinfo/msx.txt
|
||||||
|
share/doc/xmame/sysinfo/nc.txt
|
||||||
|
share/doc/xmame/sysinfo/nc200.txt
|
||||||
|
share/doc/xmame/sysinfo/neat.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1251.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1350.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1401.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1500.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1512.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1640.txt
|
||||||
|
share/doc/xmame/sysinfo/pc200.txt
|
||||||
|
share/doc/xmame/sysinfo/pcw16.txt
|
||||||
|
share/doc/xmame/sysinfo/pong.txt
|
||||||
|
share/doc/xmame/sysinfo/ssystem3.txt
|
||||||
|
share/doc/xmame/sysinfo/studio2.txt
|
||||||
|
share/doc/xmame/sysinfo/svision.txt
|
||||||
|
share/doc/xmame/sysinfo/sym1.txt
|
||||||
|
share/doc/xmame/sysinfo/t1000hx.txt
|
||||||
|
share/doc/xmame/sysinfo/vip.txt
|
||||||
share/doc/xmame/xmame-doc-1.html
|
share/doc/xmame/xmame-doc-1.html
|
||||||
share/doc/xmame/xmame-doc-2.html
|
share/doc/xmame/xmame-doc-2.html
|
||||||
share/doc/xmame/xmame-doc-3.html
|
share/doc/xmame/xmame-doc-3.html
|
||||||
@ -33,17 +68,44 @@ share/doc/xmame/xmame-doc-6.html
|
|||||||
share/doc/xmame/xmame-doc-7.html
|
share/doc/xmame/xmame-doc-7.html
|
||||||
share/doc/xmame/xmame-doc.html
|
share/doc/xmame/xmame-doc.html
|
||||||
share/doc/xmame/xmame-doc.lyx
|
share/doc/xmame/xmame-doc.lyx
|
||||||
|
share/doc/xmame/xmame-doc.man.skel
|
||||||
share/doc/xmame/xmame-doc.ps
|
share/doc/xmame/xmame-doc.ps
|
||||||
share/doc/xmame/xmame-doc.sgml
|
share/doc/xmame/xmame-doc.sgml
|
||||||
share/doc/xmame/xmame-doc.txt
|
share/doc/xmame/xmame-doc.txt
|
||||||
share/doc/xmame/xmame.6
|
share/doc/xmame/xmame.6
|
||||||
share/doc/xmame/xmamerc.dist
|
share/doc/xmame/xmamerc.dist
|
||||||
|
share/doc/xmame/xmess.6
|
||||||
|
share/doc/xmame/xmessrc.dist
|
||||||
|
share/xmame/cab/glmame/cabfront.jpg
|
||||||
|
share/xmame/cab/glmame/cabtitle.jpg
|
||||||
|
share/xmame/cab/glmame/glmame.cab
|
||||||
|
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/trans.cab
|
||||||
|
share/xmame/cheat.dat
|
||||||
|
share/xmame/hiscore.dat
|
||||||
|
share/xmame/history.dat
|
||||||
|
share/xmame/xmamerc
|
||||||
|
share/xmess/cab/glmame/cabfront.jpg
|
||||||
|
share/xmess/cab/glmame/cabtitle.jpg
|
||||||
|
share/xmess/cab/glmame/glmame.cab
|
||||||
|
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/trans.cab
|
||||||
|
share/xmess/xmessrc
|
||||||
|
@dirrm share/xmess/cab/trans
|
||||||
|
@dirrm share/xmess/cab/glmamejau
|
||||||
|
@dirrm share/xmess/cab/glmame
|
||||||
|
@dirrm share/xmess/cab
|
||||||
|
@dirrm share/xmess
|
||||||
|
@dirrm share/xmame/cab/trans
|
||||||
|
@dirrm share/xmame/cab/glmamejau
|
||||||
|
@dirrm share/xmame/cab/glmame
|
||||||
|
@dirrm share/xmame/cab
|
||||||
|
@dirrm share/xmame
|
||||||
|
@dirrm share/doc/xmame/sysinfo
|
||||||
@dirrm share/doc/xmame
|
@dirrm share/doc/xmame
|
||||||
@dirrm lib/xmess/cab/trans
|
|
||||||
@dirrm lib/xmess/cab/glmame
|
|
||||||
@dirrm lib/xmess/cab
|
|
||||||
@dirrm lib/xmess
|
|
||||||
@dirrm lib/xmame/cab/trans
|
|
||||||
@dirrm lib/xmame/cab/glmame
|
|
||||||
@dirrm lib/xmame/cab
|
|
||||||
@dirrm lib/xmame
|
|
||||||
|
@ -1,19 +1,62 @@
|
|||||||
@comment $OpenBSD: PLIST-mame,v 1.1.1.1 2001/04/04 14:31:55 naddy Exp $
|
@comment $OpenBSD: PLIST-mame,v 1.2 2001/08/12 23:03:10 naddy Exp $
|
||||||
|
@pkgcfl xmame+xmess-*
|
||||||
|
@pkgcfl xmess-*
|
||||||
bin/xmame
|
bin/xmame
|
||||||
man/man6/xmame.6
|
man/man6/xmame.6
|
||||||
share/doc/xmame/changes.mame
|
share/doc/xmame/changes.mame
|
||||||
share/doc/xmame/changes.mess
|
share/doc/xmame/changes.mess
|
||||||
|
share/doc/xmame/changes.opengl
|
||||||
share/doc/xmame/changes.unix
|
share/doc/xmame/changes.unix
|
||||||
share/doc/xmame/credits.txt
|
share/doc/xmame/credits.txt
|
||||||
share/doc/xmame/gamelist.mame
|
share/doc/xmame/gamelist.mame
|
||||||
share/doc/xmame/gamelist.mess
|
share/doc/xmame/gamelist.mess
|
||||||
|
share/doc/xmame/hsnew.txt
|
||||||
share/doc/xmame/imgtool.txt
|
share/doc/xmame/imgtool.txt
|
||||||
share/doc/xmame/liesmich.unix
|
share/doc/xmame/liesmich.unix
|
||||||
|
share/doc/xmame/makedoc.sh
|
||||||
share/doc/xmame/messold.txt
|
share/doc/xmame/messold.txt
|
||||||
share/doc/xmame/messroms.txt
|
share/doc/xmame/messroms.txt
|
||||||
share/doc/xmame/multiplayer-readme.txt
|
share/doc/xmame/multiplayer-readme.txt
|
||||||
|
share/doc/xmame/readhist.txt
|
||||||
share/doc/xmame/readme.mame
|
share/doc/xmame/readme.mame
|
||||||
share/doc/xmame/readme.mess
|
share/doc/xmame/readme.mess
|
||||||
|
share/doc/xmame/sysinfo/aim65.txt
|
||||||
|
share/doc/xmame/sysinfo/bondwell.txt
|
||||||
|
share/doc/xmame/sysinfo/c128.txt
|
||||||
|
share/doc/xmame/sysinfo/c65.txt
|
||||||
|
share/doc/xmame/sysinfo/comquest.txt
|
||||||
|
share/doc/xmame/sysinfo/dream.txt
|
||||||
|
share/doc/xmame/sysinfo/elf.txt
|
||||||
|
share/doc/xmame/sysinfo/europc.txt
|
||||||
|
share/doc/xmame/sysinfo/galaxy.txt
|
||||||
|
share/doc/xmame/sysinfo/hp48s.txt
|
||||||
|
share/doc/xmame/sysinfo/i8530286.txt
|
||||||
|
share/doc/xmame/sysinfo/ibm8530.txt
|
||||||
|
share/doc/xmame/sysinfo/ibmat.txt
|
||||||
|
share/doc/xmame/sysinfo/ibmpc.txt
|
||||||
|
share/doc/xmame/sysinfo/ibmpcjr.txt
|
||||||
|
share/doc/xmame/sysinfo/lynx.txt
|
||||||
|
share/doc/xmame/sysinfo/mk1.txt
|
||||||
|
share/doc/xmame/sysinfo/mk2.txt
|
||||||
|
share/doc/xmame/sysinfo/msx.txt
|
||||||
|
share/doc/xmame/sysinfo/nc.txt
|
||||||
|
share/doc/xmame/sysinfo/nc200.txt
|
||||||
|
share/doc/xmame/sysinfo/neat.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1251.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1350.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1401.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1500.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1512.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1640.txt
|
||||||
|
share/doc/xmame/sysinfo/pc200.txt
|
||||||
|
share/doc/xmame/sysinfo/pcw16.txt
|
||||||
|
share/doc/xmame/sysinfo/pong.txt
|
||||||
|
share/doc/xmame/sysinfo/ssystem3.txt
|
||||||
|
share/doc/xmame/sysinfo/studio2.txt
|
||||||
|
share/doc/xmame/sysinfo/svision.txt
|
||||||
|
share/doc/xmame/sysinfo/sym1.txt
|
||||||
|
share/doc/xmame/sysinfo/t1000hx.txt
|
||||||
|
share/doc/xmame/sysinfo/vip.txt
|
||||||
share/doc/xmame/xmame-doc-1.html
|
share/doc/xmame/xmame-doc-1.html
|
||||||
share/doc/xmame/xmame-doc-2.html
|
share/doc/xmame/xmame-doc-2.html
|
||||||
share/doc/xmame/xmame-doc-3.html
|
share/doc/xmame/xmame-doc-3.html
|
||||||
@ -23,9 +66,18 @@ share/doc/xmame/xmame-doc-6.html
|
|||||||
share/doc/xmame/xmame-doc-7.html
|
share/doc/xmame/xmame-doc-7.html
|
||||||
share/doc/xmame/xmame-doc.html
|
share/doc/xmame/xmame-doc.html
|
||||||
share/doc/xmame/xmame-doc.lyx
|
share/doc/xmame/xmame-doc.lyx
|
||||||
|
share/doc/xmame/xmame-doc.man.skel
|
||||||
share/doc/xmame/xmame-doc.ps
|
share/doc/xmame/xmame-doc.ps
|
||||||
share/doc/xmame/xmame-doc.sgml
|
share/doc/xmame/xmame-doc.sgml
|
||||||
share/doc/xmame/xmame-doc.txt
|
share/doc/xmame/xmame-doc.txt
|
||||||
share/doc/xmame/xmame.6
|
share/doc/xmame/xmame.6
|
||||||
share/doc/xmame/xmamerc.dist
|
share/doc/xmame/xmamerc.dist
|
||||||
|
share/doc/xmame/xmess.6
|
||||||
|
share/doc/xmame/xmessrc.dist
|
||||||
|
share/xmame/cheat.dat
|
||||||
|
share/xmame/hiscore.dat
|
||||||
|
share/xmame/history.dat
|
||||||
|
share/xmame/xmamerc
|
||||||
|
@dirrm share/xmame
|
||||||
|
@dirrm share/doc/xmame/sysinfo
|
||||||
@dirrm share/doc/xmame
|
@dirrm share/doc/xmame
|
||||||
|
@ -1,23 +1,62 @@
|
|||||||
@comment $OpenBSD: PLIST-mame-gl,v 1.1.1.1 2001/04/04 14:31:55 naddy Exp $
|
@comment $OpenBSD: PLIST-mame-gl,v 1.2 2001/08/12 23:03:11 naddy Exp $
|
||||||
|
@pkgcfl xmame+xmess-*
|
||||||
|
@pkgcfl xmess-*
|
||||||
bin/xmame
|
bin/xmame
|
||||||
lib/xmame/cab/glmame/cabfront.jpg
|
|
||||||
lib/xmame/cab/glmame/cabtitle.jpg
|
|
||||||
lib/xmame/cab/glmame/glmame.cab
|
|
||||||
lib/xmame/cab/trans/trans.cab
|
|
||||||
man/man6/xmame.6
|
man/man6/xmame.6
|
||||||
share/doc/xmame/changes.mame
|
share/doc/xmame/changes.mame
|
||||||
share/doc/xmame/changes.mess
|
share/doc/xmame/changes.mess
|
||||||
|
share/doc/xmame/changes.opengl
|
||||||
share/doc/xmame/changes.unix
|
share/doc/xmame/changes.unix
|
||||||
share/doc/xmame/credits.txt
|
share/doc/xmame/credits.txt
|
||||||
share/doc/xmame/gamelist.mame
|
share/doc/xmame/gamelist.mame
|
||||||
share/doc/xmame/gamelist.mess
|
share/doc/xmame/gamelist.mess
|
||||||
|
share/doc/xmame/hsnew.txt
|
||||||
share/doc/xmame/imgtool.txt
|
share/doc/xmame/imgtool.txt
|
||||||
share/doc/xmame/liesmich.unix
|
share/doc/xmame/liesmich.unix
|
||||||
|
share/doc/xmame/makedoc.sh
|
||||||
share/doc/xmame/messold.txt
|
share/doc/xmame/messold.txt
|
||||||
share/doc/xmame/messroms.txt
|
share/doc/xmame/messroms.txt
|
||||||
share/doc/xmame/multiplayer-readme.txt
|
share/doc/xmame/multiplayer-readme.txt
|
||||||
|
share/doc/xmame/readhist.txt
|
||||||
share/doc/xmame/readme.mame
|
share/doc/xmame/readme.mame
|
||||||
share/doc/xmame/readme.mess
|
share/doc/xmame/readme.mess
|
||||||
|
share/doc/xmame/sysinfo/aim65.txt
|
||||||
|
share/doc/xmame/sysinfo/bondwell.txt
|
||||||
|
share/doc/xmame/sysinfo/c128.txt
|
||||||
|
share/doc/xmame/sysinfo/c65.txt
|
||||||
|
share/doc/xmame/sysinfo/comquest.txt
|
||||||
|
share/doc/xmame/sysinfo/dream.txt
|
||||||
|
share/doc/xmame/sysinfo/elf.txt
|
||||||
|
share/doc/xmame/sysinfo/europc.txt
|
||||||
|
share/doc/xmame/sysinfo/galaxy.txt
|
||||||
|
share/doc/xmame/sysinfo/hp48s.txt
|
||||||
|
share/doc/xmame/sysinfo/i8530286.txt
|
||||||
|
share/doc/xmame/sysinfo/ibm8530.txt
|
||||||
|
share/doc/xmame/sysinfo/ibmat.txt
|
||||||
|
share/doc/xmame/sysinfo/ibmpc.txt
|
||||||
|
share/doc/xmame/sysinfo/ibmpcjr.txt
|
||||||
|
share/doc/xmame/sysinfo/lynx.txt
|
||||||
|
share/doc/xmame/sysinfo/mk1.txt
|
||||||
|
share/doc/xmame/sysinfo/mk2.txt
|
||||||
|
share/doc/xmame/sysinfo/msx.txt
|
||||||
|
share/doc/xmame/sysinfo/nc.txt
|
||||||
|
share/doc/xmame/sysinfo/nc200.txt
|
||||||
|
share/doc/xmame/sysinfo/neat.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1251.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1350.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1401.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1500.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1512.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1640.txt
|
||||||
|
share/doc/xmame/sysinfo/pc200.txt
|
||||||
|
share/doc/xmame/sysinfo/pcw16.txt
|
||||||
|
share/doc/xmame/sysinfo/pong.txt
|
||||||
|
share/doc/xmame/sysinfo/ssystem3.txt
|
||||||
|
share/doc/xmame/sysinfo/studio2.txt
|
||||||
|
share/doc/xmame/sysinfo/svision.txt
|
||||||
|
share/doc/xmame/sysinfo/sym1.txt
|
||||||
|
share/doc/xmame/sysinfo/t1000hx.txt
|
||||||
|
share/doc/xmame/sysinfo/vip.txt
|
||||||
share/doc/xmame/xmame-doc-1.html
|
share/doc/xmame/xmame-doc-1.html
|
||||||
share/doc/xmame/xmame-doc-2.html
|
share/doc/xmame/xmame-doc-2.html
|
||||||
share/doc/xmame/xmame-doc-3.html
|
share/doc/xmame/xmame-doc-3.html
|
||||||
@ -27,13 +66,30 @@ share/doc/xmame/xmame-doc-6.html
|
|||||||
share/doc/xmame/xmame-doc-7.html
|
share/doc/xmame/xmame-doc-7.html
|
||||||
share/doc/xmame/xmame-doc.html
|
share/doc/xmame/xmame-doc.html
|
||||||
share/doc/xmame/xmame-doc.lyx
|
share/doc/xmame/xmame-doc.lyx
|
||||||
|
share/doc/xmame/xmame-doc.man.skel
|
||||||
share/doc/xmame/xmame-doc.ps
|
share/doc/xmame/xmame-doc.ps
|
||||||
share/doc/xmame/xmame-doc.sgml
|
share/doc/xmame/xmame-doc.sgml
|
||||||
share/doc/xmame/xmame-doc.txt
|
share/doc/xmame/xmame-doc.txt
|
||||||
share/doc/xmame/xmame.6
|
share/doc/xmame/xmame.6
|
||||||
share/doc/xmame/xmamerc.dist
|
share/doc/xmame/xmamerc.dist
|
||||||
|
share/doc/xmame/xmess.6
|
||||||
|
share/doc/xmame/xmessrc.dist
|
||||||
|
share/xmame/cab/glmame/cabfront.jpg
|
||||||
|
share/xmame/cab/glmame/cabtitle.jpg
|
||||||
|
share/xmame/cab/glmame/glmame.cab
|
||||||
|
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/trans.cab
|
||||||
|
share/xmame/cheat.dat
|
||||||
|
share/xmame/hiscore.dat
|
||||||
|
share/xmame/history.dat
|
||||||
|
share/xmame/xmamerc
|
||||||
|
@dirrm share/xmame/cab/trans
|
||||||
|
@dirrm share/xmame/cab/glmamejau
|
||||||
|
@dirrm share/xmame/cab/glmame
|
||||||
|
@dirrm share/xmame/cab
|
||||||
|
@dirrm share/xmame
|
||||||
|
@dirrm share/doc/xmame/sysinfo
|
||||||
@dirrm share/doc/xmame
|
@dirrm share/doc/xmame
|
||||||
@dirrm lib/xmame/cab/trans
|
|
||||||
@dirrm lib/xmame/cab/glmame
|
|
||||||
@dirrm lib/xmame/cab
|
|
||||||
@dirrm lib/xmame
|
|
||||||
|
83
emulators/xmame/pkg/PLIST-mame-sdl
Normal file
83
emulators/xmame/pkg/PLIST-mame-sdl
Normal file
@ -0,0 +1,83 @@
|
|||||||
|
@comment $OpenBSD: PLIST-mame-sdl,v 1.1 2001/08/12 23:03:11 naddy Exp $
|
||||||
|
@pkgcfl xmame+xmess-*
|
||||||
|
@pkgcfl xmess-*
|
||||||
|
bin/xmame
|
||||||
|
man/man6/xmame.6
|
||||||
|
share/doc/xmame/changes.mame
|
||||||
|
share/doc/xmame/changes.mess
|
||||||
|
share/doc/xmame/changes.opengl
|
||||||
|
share/doc/xmame/changes.unix
|
||||||
|
share/doc/xmame/credits.txt
|
||||||
|
share/doc/xmame/gamelist.mame
|
||||||
|
share/doc/xmame/gamelist.mess
|
||||||
|
share/doc/xmame/hsnew.txt
|
||||||
|
share/doc/xmame/imgtool.txt
|
||||||
|
share/doc/xmame/liesmich.unix
|
||||||
|
share/doc/xmame/makedoc.sh
|
||||||
|
share/doc/xmame/messold.txt
|
||||||
|
share/doc/xmame/messroms.txt
|
||||||
|
share/doc/xmame/multiplayer-readme.txt
|
||||||
|
share/doc/xmame/readhist.txt
|
||||||
|
share/doc/xmame/readme.mame
|
||||||
|
share/doc/xmame/readme.mess
|
||||||
|
share/doc/xmame/sysinfo/aim65.txt
|
||||||
|
share/doc/xmame/sysinfo/bondwell.txt
|
||||||
|
share/doc/xmame/sysinfo/c128.txt
|
||||||
|
share/doc/xmame/sysinfo/c65.txt
|
||||||
|
share/doc/xmame/sysinfo/comquest.txt
|
||||||
|
share/doc/xmame/sysinfo/dream.txt
|
||||||
|
share/doc/xmame/sysinfo/elf.txt
|
||||||
|
share/doc/xmame/sysinfo/europc.txt
|
||||||
|
share/doc/xmame/sysinfo/galaxy.txt
|
||||||
|
share/doc/xmame/sysinfo/hp48s.txt
|
||||||
|
share/doc/xmame/sysinfo/i8530286.txt
|
||||||
|
share/doc/xmame/sysinfo/ibm8530.txt
|
||||||
|
share/doc/xmame/sysinfo/ibmat.txt
|
||||||
|
share/doc/xmame/sysinfo/ibmpc.txt
|
||||||
|
share/doc/xmame/sysinfo/ibmpcjr.txt
|
||||||
|
share/doc/xmame/sysinfo/lynx.txt
|
||||||
|
share/doc/xmame/sysinfo/mk1.txt
|
||||||
|
share/doc/xmame/sysinfo/mk2.txt
|
||||||
|
share/doc/xmame/sysinfo/msx.txt
|
||||||
|
share/doc/xmame/sysinfo/nc.txt
|
||||||
|
share/doc/xmame/sysinfo/nc200.txt
|
||||||
|
share/doc/xmame/sysinfo/neat.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1251.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1350.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1401.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1500.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1512.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1640.txt
|
||||||
|
share/doc/xmame/sysinfo/pc200.txt
|
||||||
|
share/doc/xmame/sysinfo/pcw16.txt
|
||||||
|
share/doc/xmame/sysinfo/pong.txt
|
||||||
|
share/doc/xmame/sysinfo/ssystem3.txt
|
||||||
|
share/doc/xmame/sysinfo/studio2.txt
|
||||||
|
share/doc/xmame/sysinfo/svision.txt
|
||||||
|
share/doc/xmame/sysinfo/sym1.txt
|
||||||
|
share/doc/xmame/sysinfo/t1000hx.txt
|
||||||
|
share/doc/xmame/sysinfo/vip.txt
|
||||||
|
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.html
|
||||||
|
share/doc/xmame/xmame-doc.lyx
|
||||||
|
share/doc/xmame/xmame-doc.man.skel
|
||||||
|
share/doc/xmame/xmame-doc.ps
|
||||||
|
share/doc/xmame/xmame-doc.sgml
|
||||||
|
share/doc/xmame/xmame-doc.txt
|
||||||
|
share/doc/xmame/xmame.6
|
||||||
|
share/doc/xmame/xmamerc.dist
|
||||||
|
share/doc/xmame/xmess.6
|
||||||
|
share/doc/xmame/xmessrc.dist
|
||||||
|
share/xmame/cheat.dat
|
||||||
|
share/xmame/hiscore.dat
|
||||||
|
share/xmame/history.dat
|
||||||
|
share/xmame/xmamerc
|
||||||
|
@dirrm share/xmame
|
||||||
|
@dirrm share/doc/xmame/sysinfo
|
||||||
|
@dirrm share/doc/xmame
|
@ -1,19 +1,60 @@
|
|||||||
@comment $OpenBSD: PLIST-mess,v 1.1.1.1 2001/04/04 14:31:55 naddy Exp $
|
@comment $OpenBSD: PLIST-mess,v 1.2 2001/08/12 23:03:11 naddy Exp $
|
||||||
|
@pkgcfl xmame+xmess-*
|
||||||
|
@pkgcfl xmame-*
|
||||||
bin/xmess
|
bin/xmess
|
||||||
man/man6/xmess.6
|
man/man6/xmess.6
|
||||||
share/doc/xmame/changes.mame
|
share/doc/xmame/changes.mame
|
||||||
share/doc/xmame/changes.mess
|
share/doc/xmame/changes.mess
|
||||||
|
share/doc/xmame/changes.opengl
|
||||||
share/doc/xmame/changes.unix
|
share/doc/xmame/changes.unix
|
||||||
share/doc/xmame/credits.txt
|
share/doc/xmame/credits.txt
|
||||||
share/doc/xmame/gamelist.mame
|
share/doc/xmame/gamelist.mame
|
||||||
share/doc/xmame/gamelist.mess
|
share/doc/xmame/gamelist.mess
|
||||||
share/doc/xmame/imgtool.txt
|
share/doc/xmame/imgtool.txt
|
||||||
share/doc/xmame/liesmich.unix
|
share/doc/xmame/liesmich.unix
|
||||||
|
share/doc/xmame/makedoc.sh
|
||||||
share/doc/xmame/messold.txt
|
share/doc/xmame/messold.txt
|
||||||
share/doc/xmame/messroms.txt
|
share/doc/xmame/messroms.txt
|
||||||
share/doc/xmame/multiplayer-readme.txt
|
share/doc/xmame/multiplayer-readme.txt
|
||||||
share/doc/xmame/readme.mame
|
share/doc/xmame/readme.mame
|
||||||
share/doc/xmame/readme.mess
|
share/doc/xmame/readme.mess
|
||||||
|
share/doc/xmame/sysinfo/aim65.txt
|
||||||
|
share/doc/xmame/sysinfo/bondwell.txt
|
||||||
|
share/doc/xmame/sysinfo/c128.txt
|
||||||
|
share/doc/xmame/sysinfo/c65.txt
|
||||||
|
share/doc/xmame/sysinfo/comquest.txt
|
||||||
|
share/doc/xmame/sysinfo/dream.txt
|
||||||
|
share/doc/xmame/sysinfo/elf.txt
|
||||||
|
share/doc/xmame/sysinfo/europc.txt
|
||||||
|
share/doc/xmame/sysinfo/galaxy.txt
|
||||||
|
share/doc/xmame/sysinfo/hp48s.txt
|
||||||
|
share/doc/xmame/sysinfo/i8530286.txt
|
||||||
|
share/doc/xmame/sysinfo/ibm8530.txt
|
||||||
|
share/doc/xmame/sysinfo/ibmat.txt
|
||||||
|
share/doc/xmame/sysinfo/ibmpc.txt
|
||||||
|
share/doc/xmame/sysinfo/ibmpcjr.txt
|
||||||
|
share/doc/xmame/sysinfo/lynx.txt
|
||||||
|
share/doc/xmame/sysinfo/mk1.txt
|
||||||
|
share/doc/xmame/sysinfo/mk2.txt
|
||||||
|
share/doc/xmame/sysinfo/msx.txt
|
||||||
|
share/doc/xmame/sysinfo/nc.txt
|
||||||
|
share/doc/xmame/sysinfo/nc200.txt
|
||||||
|
share/doc/xmame/sysinfo/neat.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1251.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1350.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1401.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1500.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1512.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1640.txt
|
||||||
|
share/doc/xmame/sysinfo/pc200.txt
|
||||||
|
share/doc/xmame/sysinfo/pcw16.txt
|
||||||
|
share/doc/xmame/sysinfo/pong.txt
|
||||||
|
share/doc/xmame/sysinfo/ssystem3.txt
|
||||||
|
share/doc/xmame/sysinfo/studio2.txt
|
||||||
|
share/doc/xmame/sysinfo/svision.txt
|
||||||
|
share/doc/xmame/sysinfo/sym1.txt
|
||||||
|
share/doc/xmame/sysinfo/t1000hx.txt
|
||||||
|
share/doc/xmame/sysinfo/vip.txt
|
||||||
share/doc/xmame/xmame-doc-1.html
|
share/doc/xmame/xmame-doc-1.html
|
||||||
share/doc/xmame/xmame-doc-2.html
|
share/doc/xmame/xmame-doc-2.html
|
||||||
share/doc/xmame/xmame-doc-3.html
|
share/doc/xmame/xmame-doc-3.html
|
||||||
@ -23,9 +64,15 @@ share/doc/xmame/xmame-doc-6.html
|
|||||||
share/doc/xmame/xmame-doc-7.html
|
share/doc/xmame/xmame-doc-7.html
|
||||||
share/doc/xmame/xmame-doc.html
|
share/doc/xmame/xmame-doc.html
|
||||||
share/doc/xmame/xmame-doc.lyx
|
share/doc/xmame/xmame-doc.lyx
|
||||||
|
share/doc/xmame/xmame-doc.man.skel
|
||||||
share/doc/xmame/xmame-doc.ps
|
share/doc/xmame/xmame-doc.ps
|
||||||
share/doc/xmame/xmame-doc.sgml
|
share/doc/xmame/xmame-doc.sgml
|
||||||
share/doc/xmame/xmame-doc.txt
|
share/doc/xmame/xmame-doc.txt
|
||||||
share/doc/xmame/xmame.6
|
share/doc/xmame/xmame.6
|
||||||
share/doc/xmame/xmamerc.dist
|
share/doc/xmame/xmamerc.dist
|
||||||
|
share/doc/xmame/xmess.6
|
||||||
|
share/doc/xmame/xmessrc.dist
|
||||||
|
share/xmess/xmessrc
|
||||||
|
@dirrm share/xmess
|
||||||
|
@dirrm share/doc/xmame/sysinfo
|
||||||
@dirrm share/doc/xmame
|
@dirrm share/doc/xmame
|
||||||
|
@ -1,23 +1,60 @@
|
|||||||
@comment $OpenBSD: PLIST-mess-gl,v 1.1.1.1 2001/04/04 14:31:55 naddy Exp $
|
@comment $OpenBSD: PLIST-mess-gl,v 1.2 2001/08/12 23:03:11 naddy Exp $
|
||||||
|
@pkgcfl xmame+xmess-*
|
||||||
|
@pkgcfl xmame-*
|
||||||
bin/xmess
|
bin/xmess
|
||||||
lib/xmess/cab/glmame/cabfront.jpg
|
|
||||||
lib/xmess/cab/glmame/cabtitle.jpg
|
|
||||||
lib/xmess/cab/glmame/glmame.cab
|
|
||||||
lib/xmess/cab/trans/trans.cab
|
|
||||||
man/man6/xmess.6
|
man/man6/xmess.6
|
||||||
share/doc/xmame/changes.mame
|
share/doc/xmame/changes.mame
|
||||||
share/doc/xmame/changes.mess
|
share/doc/xmame/changes.mess
|
||||||
|
share/doc/xmame/changes.opengl
|
||||||
share/doc/xmame/changes.unix
|
share/doc/xmame/changes.unix
|
||||||
share/doc/xmame/credits.txt
|
share/doc/xmame/credits.txt
|
||||||
share/doc/xmame/gamelist.mame
|
share/doc/xmame/gamelist.mame
|
||||||
share/doc/xmame/gamelist.mess
|
share/doc/xmame/gamelist.mess
|
||||||
share/doc/xmame/imgtool.txt
|
share/doc/xmame/imgtool.txt
|
||||||
share/doc/xmame/liesmich.unix
|
share/doc/xmame/liesmich.unix
|
||||||
|
share/doc/xmame/makedoc.sh
|
||||||
share/doc/xmame/messold.txt
|
share/doc/xmame/messold.txt
|
||||||
share/doc/xmame/messroms.txt
|
share/doc/xmame/messroms.txt
|
||||||
share/doc/xmame/multiplayer-readme.txt
|
share/doc/xmame/multiplayer-readme.txt
|
||||||
share/doc/xmame/readme.mame
|
share/doc/xmame/readme.mame
|
||||||
share/doc/xmame/readme.mess
|
share/doc/xmame/readme.mess
|
||||||
|
share/doc/xmame/sysinfo/aim65.txt
|
||||||
|
share/doc/xmame/sysinfo/bondwell.txt
|
||||||
|
share/doc/xmame/sysinfo/c128.txt
|
||||||
|
share/doc/xmame/sysinfo/c65.txt
|
||||||
|
share/doc/xmame/sysinfo/comquest.txt
|
||||||
|
share/doc/xmame/sysinfo/dream.txt
|
||||||
|
share/doc/xmame/sysinfo/elf.txt
|
||||||
|
share/doc/xmame/sysinfo/europc.txt
|
||||||
|
share/doc/xmame/sysinfo/galaxy.txt
|
||||||
|
share/doc/xmame/sysinfo/hp48s.txt
|
||||||
|
share/doc/xmame/sysinfo/i8530286.txt
|
||||||
|
share/doc/xmame/sysinfo/ibm8530.txt
|
||||||
|
share/doc/xmame/sysinfo/ibmat.txt
|
||||||
|
share/doc/xmame/sysinfo/ibmpc.txt
|
||||||
|
share/doc/xmame/sysinfo/ibmpcjr.txt
|
||||||
|
share/doc/xmame/sysinfo/lynx.txt
|
||||||
|
share/doc/xmame/sysinfo/mk1.txt
|
||||||
|
share/doc/xmame/sysinfo/mk2.txt
|
||||||
|
share/doc/xmame/sysinfo/msx.txt
|
||||||
|
share/doc/xmame/sysinfo/nc.txt
|
||||||
|
share/doc/xmame/sysinfo/nc200.txt
|
||||||
|
share/doc/xmame/sysinfo/neat.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1251.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1350.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1401.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1500.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1512.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1640.txt
|
||||||
|
share/doc/xmame/sysinfo/pc200.txt
|
||||||
|
share/doc/xmame/sysinfo/pcw16.txt
|
||||||
|
share/doc/xmame/sysinfo/pong.txt
|
||||||
|
share/doc/xmame/sysinfo/ssystem3.txt
|
||||||
|
share/doc/xmame/sysinfo/studio2.txt
|
||||||
|
share/doc/xmame/sysinfo/svision.txt
|
||||||
|
share/doc/xmame/sysinfo/sym1.txt
|
||||||
|
share/doc/xmame/sysinfo/t1000hx.txt
|
||||||
|
share/doc/xmame/sysinfo/vip.txt
|
||||||
share/doc/xmame/xmame-doc-1.html
|
share/doc/xmame/xmame-doc-1.html
|
||||||
share/doc/xmame/xmame-doc-2.html
|
share/doc/xmame/xmame-doc-2.html
|
||||||
share/doc/xmame/xmame-doc-3.html
|
share/doc/xmame/xmame-doc-3.html
|
||||||
@ -27,13 +64,27 @@ share/doc/xmame/xmame-doc-6.html
|
|||||||
share/doc/xmame/xmame-doc-7.html
|
share/doc/xmame/xmame-doc-7.html
|
||||||
share/doc/xmame/xmame-doc.html
|
share/doc/xmame/xmame-doc.html
|
||||||
share/doc/xmame/xmame-doc.lyx
|
share/doc/xmame/xmame-doc.lyx
|
||||||
|
share/doc/xmame/xmame-doc.man.skel
|
||||||
share/doc/xmame/xmame-doc.ps
|
share/doc/xmame/xmame-doc.ps
|
||||||
share/doc/xmame/xmame-doc.sgml
|
share/doc/xmame/xmame-doc.sgml
|
||||||
share/doc/xmame/xmame-doc.txt
|
share/doc/xmame/xmame-doc.txt
|
||||||
share/doc/xmame/xmame.6
|
share/doc/xmame/xmame.6
|
||||||
share/doc/xmame/xmamerc.dist
|
share/doc/xmame/xmamerc.dist
|
||||||
|
share/doc/xmame/xmess.6
|
||||||
|
share/doc/xmame/xmessrc.dist
|
||||||
|
share/xmess/cab/glmame/cabfront.jpg
|
||||||
|
share/xmess/cab/glmame/cabtitle.jpg
|
||||||
|
share/xmess/cab/glmame/glmame.cab
|
||||||
|
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/trans.cab
|
||||||
|
share/xmess/xmessrc
|
||||||
|
@dirrm share/xmess/cab/trans
|
||||||
|
@dirrm share/xmess/cab/glmamejau
|
||||||
|
@dirrm share/xmess/cab/glmame
|
||||||
|
@dirrm share/xmess/cab
|
||||||
|
@dirrm share/xmess
|
||||||
|
@dirrm share/doc/xmame/sysinfo
|
||||||
@dirrm share/doc/xmame
|
@dirrm share/doc/xmame
|
||||||
@dirrm lib/xmess/cab/trans
|
|
||||||
@dirrm lib/xmess/cab/glmame
|
|
||||||
@dirrm lib/xmess/cab
|
|
||||||
@dirrm lib/xmess
|
|
||||||
|
78
emulators/xmame/pkg/PLIST-mess-sdl
Normal file
78
emulators/xmame/pkg/PLIST-mess-sdl
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
@comment $OpenBSD: PLIST-mess-sdl,v 1.1 2001/08/12 23:03:11 naddy Exp $
|
||||||
|
@pkgcfl xmame+xmess-*
|
||||||
|
@pkgcfl xmame-*
|
||||||
|
bin/xmess
|
||||||
|
man/man6/xmess.6
|
||||||
|
share/doc/xmame/changes.mame
|
||||||
|
share/doc/xmame/changes.mess
|
||||||
|
share/doc/xmame/changes.opengl
|
||||||
|
share/doc/xmame/changes.unix
|
||||||
|
share/doc/xmame/credits.txt
|
||||||
|
share/doc/xmame/gamelist.mame
|
||||||
|
share/doc/xmame/gamelist.mess
|
||||||
|
share/doc/xmame/imgtool.txt
|
||||||
|
share/doc/xmame/liesmich.unix
|
||||||
|
share/doc/xmame/makedoc.sh
|
||||||
|
share/doc/xmame/messold.txt
|
||||||
|
share/doc/xmame/messroms.txt
|
||||||
|
share/doc/xmame/multiplayer-readme.txt
|
||||||
|
share/doc/xmame/readme.mame
|
||||||
|
share/doc/xmame/readme.mess
|
||||||
|
share/doc/xmame/sysinfo/aim65.txt
|
||||||
|
share/doc/xmame/sysinfo/bondwell.txt
|
||||||
|
share/doc/xmame/sysinfo/c128.txt
|
||||||
|
share/doc/xmame/sysinfo/c65.txt
|
||||||
|
share/doc/xmame/sysinfo/comquest.txt
|
||||||
|
share/doc/xmame/sysinfo/dream.txt
|
||||||
|
share/doc/xmame/sysinfo/elf.txt
|
||||||
|
share/doc/xmame/sysinfo/europc.txt
|
||||||
|
share/doc/xmame/sysinfo/galaxy.txt
|
||||||
|
share/doc/xmame/sysinfo/hp48s.txt
|
||||||
|
share/doc/xmame/sysinfo/i8530286.txt
|
||||||
|
share/doc/xmame/sysinfo/ibm8530.txt
|
||||||
|
share/doc/xmame/sysinfo/ibmat.txt
|
||||||
|
share/doc/xmame/sysinfo/ibmpc.txt
|
||||||
|
share/doc/xmame/sysinfo/ibmpcjr.txt
|
||||||
|
share/doc/xmame/sysinfo/lynx.txt
|
||||||
|
share/doc/xmame/sysinfo/mk1.txt
|
||||||
|
share/doc/xmame/sysinfo/mk2.txt
|
||||||
|
share/doc/xmame/sysinfo/msx.txt
|
||||||
|
share/doc/xmame/sysinfo/nc.txt
|
||||||
|
share/doc/xmame/sysinfo/nc200.txt
|
||||||
|
share/doc/xmame/sysinfo/neat.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1251.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1350.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1401.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1500.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1512.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1640.txt
|
||||||
|
share/doc/xmame/sysinfo/pc200.txt
|
||||||
|
share/doc/xmame/sysinfo/pcw16.txt
|
||||||
|
share/doc/xmame/sysinfo/pong.txt
|
||||||
|
share/doc/xmame/sysinfo/ssystem3.txt
|
||||||
|
share/doc/xmame/sysinfo/studio2.txt
|
||||||
|
share/doc/xmame/sysinfo/svision.txt
|
||||||
|
share/doc/xmame/sysinfo/sym1.txt
|
||||||
|
share/doc/xmame/sysinfo/t1000hx.txt
|
||||||
|
share/doc/xmame/sysinfo/vip.txt
|
||||||
|
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.html
|
||||||
|
share/doc/xmame/xmame-doc.lyx
|
||||||
|
share/doc/xmame/xmame-doc.man.skel
|
||||||
|
share/doc/xmame/xmame-doc.ps
|
||||||
|
share/doc/xmame/xmame-doc.sgml
|
||||||
|
share/doc/xmame/xmame-doc.txt
|
||||||
|
share/doc/xmame/xmame.6
|
||||||
|
share/doc/xmame/xmamerc.dist
|
||||||
|
share/doc/xmame/xmess.6
|
||||||
|
share/doc/xmame/xmessrc.dist
|
||||||
|
share/xmess/xmessrc
|
||||||
|
@dirrm share/xmess
|
||||||
|
@dirrm share/doc/xmame/sysinfo
|
||||||
|
@dirrm share/doc/xmame
|
87
emulators/xmame/pkg/PLIST-sdl
Normal file
87
emulators/xmame/pkg/PLIST-sdl
Normal file
@ -0,0 +1,87 @@
|
|||||||
|
@comment $OpenBSD: PLIST-sdl,v 1.1 2001/08/12 23:03:11 naddy Exp $
|
||||||
|
@pkgcfl xmame-*
|
||||||
|
@pkgcfl xmess-*
|
||||||
|
bin/xmame
|
||||||
|
bin/xmess
|
||||||
|
man/man6/xmame.6
|
||||||
|
man/man6/xmess.6
|
||||||
|
share/doc/xmame/changes.mame
|
||||||
|
share/doc/xmame/changes.mess
|
||||||
|
share/doc/xmame/changes.opengl
|
||||||
|
share/doc/xmame/changes.unix
|
||||||
|
share/doc/xmame/credits.txt
|
||||||
|
share/doc/xmame/gamelist.mame
|
||||||
|
share/doc/xmame/gamelist.mess
|
||||||
|
share/doc/xmame/hsnew.txt
|
||||||
|
share/doc/xmame/imgtool.txt
|
||||||
|
share/doc/xmame/liesmich.unix
|
||||||
|
share/doc/xmame/makedoc.sh
|
||||||
|
share/doc/xmame/messold.txt
|
||||||
|
share/doc/xmame/messroms.txt
|
||||||
|
share/doc/xmame/multiplayer-readme.txt
|
||||||
|
share/doc/xmame/readhist.txt
|
||||||
|
share/doc/xmame/readme.mame
|
||||||
|
share/doc/xmame/readme.mess
|
||||||
|
share/doc/xmame/sysinfo/aim65.txt
|
||||||
|
share/doc/xmame/sysinfo/bondwell.txt
|
||||||
|
share/doc/xmame/sysinfo/c128.txt
|
||||||
|
share/doc/xmame/sysinfo/c65.txt
|
||||||
|
share/doc/xmame/sysinfo/comquest.txt
|
||||||
|
share/doc/xmame/sysinfo/dream.txt
|
||||||
|
share/doc/xmame/sysinfo/elf.txt
|
||||||
|
share/doc/xmame/sysinfo/europc.txt
|
||||||
|
share/doc/xmame/sysinfo/galaxy.txt
|
||||||
|
share/doc/xmame/sysinfo/hp48s.txt
|
||||||
|
share/doc/xmame/sysinfo/i8530286.txt
|
||||||
|
share/doc/xmame/sysinfo/ibm8530.txt
|
||||||
|
share/doc/xmame/sysinfo/ibmat.txt
|
||||||
|
share/doc/xmame/sysinfo/ibmpc.txt
|
||||||
|
share/doc/xmame/sysinfo/ibmpcjr.txt
|
||||||
|
share/doc/xmame/sysinfo/lynx.txt
|
||||||
|
share/doc/xmame/sysinfo/mk1.txt
|
||||||
|
share/doc/xmame/sysinfo/mk2.txt
|
||||||
|
share/doc/xmame/sysinfo/msx.txt
|
||||||
|
share/doc/xmame/sysinfo/nc.txt
|
||||||
|
share/doc/xmame/sysinfo/nc200.txt
|
||||||
|
share/doc/xmame/sysinfo/neat.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1251.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1350.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1401.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1500.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1512.txt
|
||||||
|
share/doc/xmame/sysinfo/pc1640.txt
|
||||||
|
share/doc/xmame/sysinfo/pc200.txt
|
||||||
|
share/doc/xmame/sysinfo/pcw16.txt
|
||||||
|
share/doc/xmame/sysinfo/pong.txt
|
||||||
|
share/doc/xmame/sysinfo/ssystem3.txt
|
||||||
|
share/doc/xmame/sysinfo/studio2.txt
|
||||||
|
share/doc/xmame/sysinfo/svision.txt
|
||||||
|
share/doc/xmame/sysinfo/sym1.txt
|
||||||
|
share/doc/xmame/sysinfo/t1000hx.txt
|
||||||
|
share/doc/xmame/sysinfo/vip.txt
|
||||||
|
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.html
|
||||||
|
share/doc/xmame/xmame-doc.lyx
|
||||||
|
share/doc/xmame/xmame-doc.man.skel
|
||||||
|
share/doc/xmame/xmame-doc.ps
|
||||||
|
share/doc/xmame/xmame-doc.sgml
|
||||||
|
share/doc/xmame/xmame-doc.txt
|
||||||
|
share/doc/xmame/xmame.6
|
||||||
|
share/doc/xmame/xmamerc.dist
|
||||||
|
share/doc/xmame/xmess.6
|
||||||
|
share/doc/xmame/xmessrc.dist
|
||||||
|
share/xmame/cheat.dat
|
||||||
|
share/xmame/hiscore.dat
|
||||||
|
share/xmame/history.dat
|
||||||
|
share/xmame/xmamerc
|
||||||
|
share/xmess/xmessrc
|
||||||
|
@dirrm share/xmess
|
||||||
|
@dirrm share/xmame
|
||||||
|
@dirrm share/doc/xmame/sysinfo
|
||||||
|
@dirrm share/doc/xmame
|
Loading…
x
Reference in New Issue
Block a user