svn commit: r464917 - head/games/crafty
Mark Linimon
linimon at FreeBSD.org
Sun Mar 18 14:40:44 UTC 2018
Author: linimon
Date: Sun Mar 18 14:40:44 2018
New Revision: 464917
URL: https://svnweb.freebsd.org/changeset/ports/464917
Log:
Mark as broken on armvX.
Apparently the attempt to defeat the x86 assembler is insufficient.
While here, conform to newer style by unquoting and sorting ARCHs.
Approved by: portmgr (tier-2 blanket)
Modified:
head/games/crafty/Makefile
Modified: head/games/crafty/Makefile
==============================================================================
--- head/games/crafty/Makefile Sun Mar 18 14:26:57 2018 (r464916)
+++ head/games/crafty/Makefile Sun Mar 18 14:40:44 2018 (r464917)
@@ -16,6 +16,9 @@ EXTRACT_ONLY= crafty-${PORTVERSION}.zip
MAINTAINER= johans at FreeBSD.org
COMMENT= Chess program for playing and analyzing games
+BROKEN_armv6= fails to compile: invokes x86 assembler
+BROKEN_armv7= fails to compile: invokes x86 assembler
+
WRKSRC= ${WRKDIR}
USES= gmake zip
@@ -36,7 +39,7 @@ OPT= -DHASHSTATS -DTRACE -DBOOKDIR=\\\"${WITH_BOOKDIR
.include <bsd.port.pre.mk>
-.if ${ARCH} == "i386" || ${ARCH} == "amd64"
+.if ${ARCH} == amd64 || ${ARCH} == i386
OPT+= -DCPUS=4
.else
OPT+= -DCPUS=1 # disables x86 assembler
More information about the svn-ports-all
mailing list