8fcef35e77
0.106: - Everything from MAME 0.106 and MESS 0.106 - Fixed a link error for messtest. (Arnaud G. Gibert) - Fixed an alignment bug in the OpenGL driver which caused Defender, and possibly other 16bpp games, to be skewed. - The mouse is no longer automatically grabbed in fullscreen mode. Bugzilla bug 877. - Replaced fuzzy game name comparison with the method used by MAME for Windows, which lists approximate matches when an exact match isn't found. - A BadMatch error should no longer occur for the OpenGL target in some cases, such as when 16bpp mode is used with recent releases of the binary NVIDIA driver. 0.105: - Everything from MAME 0.105 and MESS 0.105. - Fixed "-frames_to_run/-ftr" so that it works the same as on Windows. - Fixed a memory leak in the plugin manager shutdown found by Valgrind. Bugzilla bug 850. - The output of "-listroms (-lr)" now shows the correct driver name when it's run for all ROMs. - Fixed a potential buffer overflow in the standard joystick driver. Bugzill bug 821. (Pierre Riteau)
117 lines
3.4 KiB
Makefile
117 lines
3.4 KiB
Makefile
# $NetBSD: Makefile,v 1.146 2006/06/15 11:40:00 dillo Exp $
|
|
#
|
|
|
|
DISTNAME= xmame-0.106
|
|
CATEGORIES= emulators games x11
|
|
MASTER_SITES= http://x.mame.net/download/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= kristerw@NetBSD.org
|
|
HOMEPAGE= http://x.mame.net/
|
|
COMMENT= X11 emulator for old arcade machines
|
|
|
|
RESTRICTED= selling is not allowed
|
|
NO_SRC_ON_CDROM= ${RESTRICTED}
|
|
NO_BIN_ON_CDROM= ${RESTRICTED}
|
|
|
|
USE_TOOLS+= gmake
|
|
MAKEFILE= makefile.unix
|
|
TARGET= ${PKGBASE}
|
|
UNLIMIT_RESOURCES= datasize
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
.include "options.mk"
|
|
|
|
ROMPATH= ${PREFIX}/share/${TARGET}
|
|
SPOOLDIR= ${VARBASE}/games/${TARGET}
|
|
|
|
MAKE_FLAGS+= TARGET="${TARGET:S/x//}"
|
|
MAKE_FLAGS+= X11INC= X11LIB=
|
|
|
|
# Network support is broken since xmame-0.85
|
|
#MAKE_FLAGS+= XMAME_NET=1
|
|
|
|
# Determine which CPU-specific code to use.
|
|
.for MARCH in alpha m68k i386 ia64 mips
|
|
MAME_CPU.${MARCH}?= ${MARCH}
|
|
.endfor
|
|
MAME_CPU.x86_64?= amd64
|
|
.if !defined(MAME_CPU.${MACHINE_ARCH})
|
|
. include "../../mk/endian.mk"
|
|
_MAME_CPU.big-endian= risc
|
|
_MAME_CPU.little-endian= risc_lsb
|
|
_MAME_CPU.unknown-endian= risc # assume unknown == big
|
|
MAME_CPU.${MACHINE_ARCH}?= ${_MAME_CPU.${MACHINE_ENDIAN}-endian}
|
|
.endif
|
|
|
|
# Determine which operating system defaults to use.
|
|
MAME_ARCH.NetBSD?= netbsd
|
|
MAME_ARCH.Linux?= linux
|
|
MAME_ARCH.SunOS?= solaris
|
|
MAME_ARCH.DragonFly?= dragonfly
|
|
.if !defined(MAME_ARCH.${OPSYS})
|
|
MAME_ARCH.${OPSYS}?= generic
|
|
.endif
|
|
|
|
MAKE_FLAGS+= DISPLAY_METHOD=${MAME_DISP_METHOD:Q}
|
|
MAKE_FLAGS+= MY_CPU="${MAME_CPU.${MACHINE_ARCH}}"
|
|
MAKE_FLAGS+= ARCH="${MAME_ARCH.${OPSYS}}"
|
|
|
|
.if exists(${X11BASE}/include/X11/extensions/xf86dga.h)
|
|
MAKE_FLAGS+= X11_DGA=1
|
|
.endif
|
|
.if exists(${X11BASE}/include/X11/extensions/Xv.h)
|
|
MAKE_FLAGS+= X11_XV=1
|
|
.endif
|
|
|
|
# If supported, add appropriate definitions to build joystick drivers.
|
|
.if exists(/usr/include/machine/joystick.h) || \
|
|
exists(/usr/include/linux/joystick.h)
|
|
MAKE_FLAGS+= JOY_STANDARD=1
|
|
.endif
|
|
.if ${OPSYS} == "NetBSD"
|
|
. if exists(/usr/lib/libusb.a) || exists(/usr/lib/libusbhid.a)
|
|
MAKE_FLAGS+= JOY_USB=1
|
|
. endif
|
|
.endif
|
|
|
|
OWN_DIRS= ${SPOOLDIR}
|
|
INSTALLATION_DIRS= bin man/man6
|
|
|
|
post-configure:
|
|
cd ${WRKSRC}/doc; \
|
|
${SED} -e "s|@ROMPATH@|${ROMPATH}|g" \
|
|
-e "s|@SPOOLDIR@|${SPOOLDIR}|g" \
|
|
${TARGET}rc.dist > ${TARGET}rc
|
|
.if !empty(MAKE_FLAGS:M*USB*)
|
|
${LN} -fs /usr/include/usb.h ${BUILDLINK_DIR}/include
|
|
for FILE in /usr/lib/libusb*; do \
|
|
${LN} -fs $$FILE ${BUILDLINK_DIR}/lib; \
|
|
done
|
|
.endif
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${TARGET}.${MAME_DISP_METHOD} \
|
|
${PREFIX}/bin/${TARGET}
|
|
${INSTALL_PROGRAM} ${WRKSRC}/romcmp ${PREFIX}/bin/romcmp
|
|
${INSTALL_PROGRAM} ${WRKSRC}/chdman ${PREFIX}/bin/chdman
|
|
${INSTALL_PROGRAM} ${WRKSRC}/xml2info ${PREFIX}/bin/xml2info
|
|
${INSTALL_MAN} ${WRKSRC}/doc/${TARGET}.6 \
|
|
${PREFIX}/man/man6/${TARGET}.6
|
|
${INSTALL_DATA_DIR} ${ROMPATH}
|
|
${INSTALL_DATA} ${WRKSRC}/doc/${TARGET}rc ${ROMPATH}/${TARGET}rc
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/html/xmame/
|
|
${INSTALL_DATA} ${WRKSRC}/doc/*.html ${PREFIX}/share/doc/html/xmame/
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/xmame
|
|
${INSTALL_DATA} ${WRKSRC}/doc/xmame-doc.txt ${PREFIX}/share/doc/xmame
|
|
|
|
# Pragma once is not needed, and case warnings/errors on gcc
|
|
SUBST_CLASSES+= pragma
|
|
SUBST_STAGE.pragma= pre-configure
|
|
SUBST_FILES.pragma= src/*.h src/*/*.h
|
|
SUBST_SED.pragma= -e "s|\#pragma once||g"
|
|
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../textproc/expat/buildlink3.mk"
|
|
.include "../../mk/x11.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|