XMAME GUI is an SDLMAME frontend that has been written using Java.
It has the following features: - Preview Screenshot. - Game List built from available ROMs. - ROM status verification. - Capture window for XMAME output detail. - Random Game feature to start a random (working) game. WWW: http://www.parallelrealities.co.uk/xmamegui.php
This commit is contained in:
parent
dd3e84085a
commit
23aa27562b
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=186177
6 changed files with 73 additions and 0 deletions
|
@ -157,6 +157,7 @@
|
|||
SUBDIR += xgs
|
||||
SUBDIR += xhomer
|
||||
SUBDIR += xmame
|
||||
SUBDIR += xmamegui
|
||||
SUBDIR += xmess
|
||||
SUBDIR += xsystem35
|
||||
SUBDIR += xzx
|
||||
|
|
40
emulators/xmamegui/Makefile
Normal file
40
emulators/xmamegui/Makefile
Normal file
|
@ -0,0 +1,40 @@
|
|||
# New ports collection makefile for: xmamegui
|
||||
# Date created: 2007-02-25
|
||||
# Whom: alepulver
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= xmamegui
|
||||
DISTVERSION= 0.9-1
|
||||
CATEGORIES= emulators java
|
||||
MASTER_SITES= http://www.parallelrealities.co.uk/download.php?type=zip&file=
|
||||
|
||||
MAINTAINER= alepulver@FreeBSD.org
|
||||
COMMENT= SDLMAME frontend that has been written using Java
|
||||
|
||||
FETCH_BEFORE_ARGS+= -o ${DISTNAME}${EXTRACT_SUFX}
|
||||
|
||||
USE_JAVA= yes
|
||||
JAVA_VERSION= 1.5+
|
||||
NO_WRKSUBDIR= yes
|
||||
|
||||
DATADIR= ${JAVASHAREDIR}/${PORTNAME}
|
||||
|
||||
do-build:
|
||||
@(${ECHO_CMD} "#!${SH}"; \
|
||||
${ECHO_CMD} 'exec ${JAVA} -jar ${DATADIR}/${PORTNAME}.jar "$$@"') \
|
||||
> ${WRKSRC}/${PORTNAME}
|
||||
|
||||
do-install:
|
||||
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
||||
${MKDIR} ${DATADIR}/lib
|
||||
${INSTALL_DATA} ${WRKSRC}/XMAMEGUI.jar ${DATADIR}/${PORTNAME}.jar
|
||||
${INSTALL_DATA} ${WRKSRC}/lib/*.jar ${DATADIR}/lib
|
||||
|
||||
post-install:
|
||||
@${ECHO_CMD}
|
||||
@${CAT} ${PKGMESSAGE}
|
||||
@${ECHO_CMD}
|
||||
|
||||
.include <bsd.port.mk>
|
3
emulators/xmamegui/distinfo
Normal file
3
emulators/xmamegui/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
MD5 (xmamegui-0.9-1.tar.gz) = 55c027aa68eaf20bcaf18f6133bcda58
|
||||
SHA256 (xmamegui-0.9-1.tar.gz) = fcae155072d1fe6a72ded4eca04dd872106091c9d48b6b858642027404d86356
|
||||
SIZE (xmamegui-0.9-1.tar.gz) = 4781973
|
11
emulators/xmamegui/pkg-descr
Normal file
11
emulators/xmamegui/pkg-descr
Normal file
|
@ -0,0 +1,11 @@
|
|||
XMAME GUI is an SDLMAME frontend that has been written using Java.
|
||||
|
||||
It has the following features:
|
||||
|
||||
- Preview Screenshot.
|
||||
- Game List built from available ROMs.
|
||||
- ROM status verification.
|
||||
- Capture window for XMAME output detail.
|
||||
- Random Game feature to start a random (working) game.
|
||||
|
||||
WWW: http://www.parallelrealities.co.uk/xmamegui.php
|
10
emulators/xmamegui/pkg-message
Normal file
10
emulators/xmamegui/pkg-message
Normal file
|
@ -0,0 +1,10 @@
|
|||
==============================================================================
|
||||
|
||||
XMAMEGUI has been installed.
|
||||
|
||||
When you start it and asks for the "Screenshot Path" directory make sure it is
|
||||
writable by you, since by default it will automatically download game preview
|
||||
images to there. For example "~/.parallelrealities/xmamegui/prv" could be used
|
||||
(note that it has to be created manually).
|
||||
|
||||
==============================================================================
|
8
emulators/xmamegui/pkg-plist
Normal file
8
emulators/xmamegui/pkg-plist
Normal file
|
@ -0,0 +1,8 @@
|
|||
bin/xmamegui
|
||||
%%DATADIR%%/lib/xalan.jar
|
||||
%%DATADIR%%/lib/xerces.jar
|
||||
%%DATADIR%%/lib/xercesImpl.jar
|
||||
%%DATADIR%%/lib/xml-apis.jar
|
||||
%%DATADIR%%/xmamegui.jar
|
||||
@dirrm %%DATADIR%%/lib
|
||||
@dirrm %%DATADIR%%
|
Loading…
Reference in a new issue