mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-21 04:06:46 +00:00
da3162c7c9
Per discussion with bapt on helping pkg handle the changing of these deps and avoiding impossible upgrade senarios. PR: 246767 Reviewed by: manu, bapt Approved by: x11 Differential Revision: https://reviews.freebsd.org/D30824
129 lines
4.0 KiB
Makefile
129 lines
4.0 KiB
Makefile
# Created by: alepulver
|
|
|
|
PORTNAME?= mame
|
|
PORTVERSION= 0.226
|
|
PORTREVISION= 1
|
|
CATEGORIES= emulators
|
|
|
|
MAINTAINER= manu@FreeBSD.org
|
|
COMMENT= Multi Arcade Machine Emulator
|
|
|
|
LICENSE= GPLv2
|
|
|
|
ONLY_FOR_ARCHS= amd64 armv7 i386 powerpc powerpc64 powerpc64le
|
|
ONLY_FOR_ARCHS_REASON= not yet ported to any arch other than armv7, x86 and powerpc*
|
|
|
|
LIB_DEPENDS= libFLAC.so:audio/flac \
|
|
libexpat.so:textproc/expat2 \
|
|
libfontconfig.so:x11-fonts/fontconfig \
|
|
libfreetype.so:print/freetype2 \
|
|
libpugixml.so:textproc/pugixml
|
|
RUN_DEPENDS= liberation-fonts-ttf>=0:x11-fonts/liberation-fonts-ttf
|
|
|
|
USES= compiler:c++14-lang gl gmake jpeg localbase pkgconfig \
|
|
python:3.7,build qt:5 sdl shebangfix xorg
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= mamedev
|
|
GH_PROJECT= mame # explicit (master port)
|
|
GH_TAGNAME= mame${PORTVERSION:S/.//}
|
|
USE_GL= gl
|
|
USE_QT= buildtools core gui qmake_build widgets
|
|
USE_SDL= sdl2 ttf2
|
|
USE_XORG= x11 xext xi xinerama xrender
|
|
|
|
SHEBANG_FILES= src/devices/cpu/m6502/m6502make.py \
|
|
src/devices/cpu/m6809/m6809make.py \
|
|
src/devices/cpu/mcs96/mcs96make.py \
|
|
src/devices/cpu/tms57002/tmsmake.py
|
|
|
|
MAKEFILE= makefile
|
|
MAKE_ARGS= TARGETOS=freebsd VERBOSE=1 TOOLS=1 USE_SYSTEM_LIB_PUGIXML=1
|
|
MAKE_ENV= NOWERROR=1 USE_NETWORK=1 \
|
|
LD="${CXX}" PYTHON="${PYTHON_CMD}" \
|
|
OPT_FLAGS="${CXXFLAGS}" GCC_LDFLAGS="${LDFLAGS}" \
|
|
TARGET="${MTARGET}" SUBTARGET="${MSUBTARGET}" FULLNAME="mame" SDL_NETWORK="pcap"
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
SUB_FILES= pkg-message target.ini
|
|
SUB_LIST= MTARGET=${MTARGET} MSUBTARGET=${MSUBTARGET}
|
|
|
|
PORTDOCS= *
|
|
PORTEXAMPLES= ${MSUBTARGET}.ini
|
|
|
|
OPTIONS_DEFINE= DEBUG DOCS EXAMPLES
|
|
|
|
DEBUG_MAKE_ENV= DEBUG=1
|
|
|
|
GENIE= ${WRKSRC}/3rdparty/genie
|
|
MSUBTARGET?= mame
|
|
MTARGET?= mame
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${ARCH} == amd64 || ${ARCH:Mpowerpc64*}
|
|
MAKE_ARGS+= PTR64=1
|
|
EMULATOR= ${MSUBTARGET}64
|
|
.else
|
|
EMULATOR= ${MSUBTARGET}
|
|
.endif
|
|
PLIST_SUB+= EMULATOR=${EMULATOR}
|
|
|
|
post-patch:
|
|
@${RM} ${WRKSRC}/3rdparty/bx/include/compat/freebsd/dirent.h
|
|
@${RM} ${WRKSRC}/3rdparty/bx/include/compat/freebsd/signal.h
|
|
@${MV} ${GENIE}/build/gmake.freebsd ${GENIE}/build/gmake.bsd
|
|
@${REINPLACE_CMD} -e \
|
|
's|^\(CC \)|#\1| ; \
|
|
s|^\(CXX \)|#\1| ; \
|
|
s|^\(CXX:\)|#\1| ; \
|
|
s|^\(LD \)|#\1| ; \
|
|
s|^\(PYTHON \)|#\1| ; \
|
|
s| .(ARCH)|| ; \
|
|
s|FreeBSD|${OPSYS}|g' \
|
|
${WRKSRC}/makefile \
|
|
${GENIE}/build/gmake.bsd/genie.make
|
|
@${REINPLACE_CMD} -e 's|gcc|cc|; s|g++|c++|' \
|
|
${GENIE}/src/tools/gcc.lua \
|
|
${GENIE}/src/tools/snc.lua \
|
|
${GENIE}/tests/test_gmake_cpp.lua
|
|
@${REINPLACE_CMD} -e 's|= \"gcc|= \"cc|; s|= \"g++|= \"c++|' \
|
|
-e "s|'CXX =|'#CXX =|; s|'CC =|'#CC =|; s| .(ARCH)| |g" \
|
|
${GENIE}/src/host/scripts.c
|
|
# we can't fix two types of python shebangs, so do these manually
|
|
@${REINPLACE_CMD} -i "" -e "s|/usr/bin/env python|${PYTHON_CMD}|" \
|
|
${WRKSRC}/scripts/build/png*.py
|
|
@${REINPLACE_CMD} -e 's|"python"|"${PYTHON_CMD}"|' \
|
|
${WRKSRC}/scripts/genie.lua
|
|
@${GREP} -rl '"png.h"' ${WRKSRC}/src | ${XARGS} ${REINPLACE_CMD} \
|
|
-e 's|"png.h"|"localpng.h"|'
|
|
@${REINPLACE_CMD} -e 's|"util/png.h"|"util/localpng.h"|' \
|
|
${WRKSRC}/src/frontend/mame/ui/icorender.cpp
|
|
@${MV} ${WRKSRC}/src/lib/util/png.h ${WRKSRC}/src/lib/util/localpng.h
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${DATADIR} \
|
|
${STAGEDIR}${DOCSDIR} \
|
|
${STAGEDIR}${EXAMPLESDIR} \
|
|
${STAGEDIR}${PREFIX}/libexec/${MSUBTARGET}
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${EMULATOR} ${STAGEDIR}${PREFIX}/bin
|
|
.if ${MSUBTARGET:Mmame}
|
|
(cd ${WRKSRC} && \
|
|
${INSTALL_PROGRAM} chdman jedutil ldresample ldverify \
|
|
romcmp unidasm \
|
|
${STAGEDIR}${PREFIX}/libexec/mame)
|
|
.endif
|
|
.if ${MSUBTARGET:Mmess}
|
|
(cd ${WRKSRC} && ${INSTALL_PROGRAM} castool chdman floptool imgtool jedutil \
|
|
ldresample ldverify nltool nlwav pngcmp regrep romcmp split \
|
|
srcclean unidasm \
|
|
${STAGEDIR}${PREFIX}/libexec/mess)
|
|
.endif
|
|
(cd ${WRKSRC} && ${COPYTREE_SHARE} artwork ${STAGEDIR}${DATADIR})
|
|
(cd ${WRKSRC} && ${COPYTREE_SHARE} hash ${STAGEDIR}${DATADIR})
|
|
(cd ${WRKSRC} && ${COPYTREE_SHARE} docs ${STAGEDIR}${DOCSDIR})
|
|
${INSTALL_DATA} ${WRKDIR}/target.ini \
|
|
${STAGEDIR}${EXAMPLESDIR}/${MSUBTARGET}.ini
|
|
|
|
.include <bsd.port.mk>
|