svn commit: r562111 - head/games/tome4

Mark Linimon linimon at FreeBSD.org
Wed Jan 20 06:09:11 UTC 2021


Author: linimon
Date: Wed Jan 20 06:09:10 2021
New Revision: 562111
URL: https://svnweb.freebsd.org/changeset/ports/562111

Log:
  Add stanza for riscv64 the same as aarch64 to build build.
  
  Obtained from:	maintainer

Modified:
  head/games/tome4/Makefile

Modified: head/games/tome4/Makefile
==============================================================================
--- head/games/tome4/Makefile	Wed Jan 20 05:37:25 2021	(r562110)
+++ head/games/tome4/Makefile	Wed Jan 20 06:09:10 2021	(r562111)
@@ -16,8 +16,6 @@ COMMENT=	Epic tactical turn-based roguelike adventure
 LICENSE=	GPLv3+
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-BROKEN_riscv64=		fails to build: src/luajit2/src/lj_arch.h:55:2: No support for this architecture (yet)
-
 BUILD_DEPENDS=	premake4:devel/premake4
 LIB_DEPENDS=	libvorbisfile.so:audio/libvorbis \
 		libpng.so:graphics/png
@@ -42,7 +40,7 @@ LDFLAGS_i386=	-Wl,-znotext
 
 pre-build:
 	@${REINPLACE_CMD} 's|%%LOCALBASE%%|${LOCALBASE}|' ${WRKSRC}/premake4.lua
-.if ${ARCH} == aarch64 || ${ARCH:Mpowerpc64*}
+.if ${ARCH} == aarch64 || ${ARCH:Mpowerpc64*} || ${ARCH} == riscv64
 	(cd ${WRKSRC} && premake4 --lua=default gmake)
 .else
 	(cd ${WRKSRC} && premake4 gmake)


More information about the svn-ports-all mailing list