svn commit: r561741 - head/emulators/mame
Piotr Kubaj
pkubaj at FreeBSD.org
Sat Jan 16 17:19:29 UTC 2021
Author: pkubaj
Date: Sat Jan 16 17:19:28 2021
New Revision: 561741
URL: https://svnweb.freebsd.org/changeset/ports/561741
Log:
emulators/mame: add support for powerpc64le
Modified:
head/emulators/mame/Makefile
Modified: head/emulators/mame/Makefile
==============================================================================
--- head/emulators/mame/Makefile Sat Jan 16 17:17:59 2021 (r561740)
+++ head/emulators/mame/Makefile Sat Jan 16 17:19:28 2021 (r561741)
@@ -10,8 +10,8 @@ COMMENT= Multi Arcade Machine Emulator
LICENSE= GPLv2
-ONLY_FOR_ARCHS= amd64 i386 powerpc64
-ONLY_FOR_ARCHS_REASON= not yet ported to any arch other than x86 and powerpc64
+ONLY_FOR_ARCHS= amd64 i386 powerpc64 powerpc64le
+ONLY_FOR_ARCHS_REASON= not yet ported to any arch other than x86 and powerpc64(le)
LIB_DEPENDS= libFLAC.so:audio/flac \
libexpat.so:textproc/expat2 \
@@ -61,7 +61,7 @@ MTARGET?= mame
.include <bsd.port.options.mk>
-.if ${ARCH} == amd64 || ${ARCH} == powerpc64
+.if ${ARCH} == amd64 || ${ARCH:Mpowerpc64*}
MAKE_ARGS+= PTR64=1
EMULATOR= ${MSUBTARGET}64
.else
More information about the svn-ports-all
mailing list