From 6a2c8adf9eab2d622b7805a3cb7990c8c9454251 Mon Sep 17 00:00:00 2001 From: linimon Date: Thu, 21 Dec 2017 10:23:19 +0000 Subject: Try to bring some consistency to ports that have x86-specific pieces. - in general, if we think that the code is not architecture-specific, and instead just enables x86 assembler by default, those should use BROKEN rather than IGNORE. This will allow them to be attempted with TRYBROKEN. - spell i386 as x86. - spell asm as assembler. - pet portlint. These changes should have no effect on tier-1 builds. Approved by: portmgr (tier-2 blanket) --- games/supertuxkart/Makefile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'games') diff --git a/games/supertuxkart/Makefile b/games/supertuxkart/Makefile index 11cecd4be10d..81b531fc0ec1 100644 --- a/games/supertuxkart/Makefile +++ b/games/supertuxkart/Makefile @@ -20,8 +20,13 @@ LIB_DEPENDS= libvorbisfile.so:audio/libvorbis \ libpng.so:graphics/png \ libfreetype.so:print/freetype2 -ONLY_FOR_ARCHS= amd64 i386 -ONLY_FOR_ARCHS_REASON= fails to build: invokes x86 asm +BROKEN_aarch64= invokes x86 assembler +BROKEN_armv6= invokes x86 assembler +BROKEN_armv7= invokes x86 assembler +BROKEN_mips= invokes x86 assembler +BROKEN_mips64= invokes x86 assembler +BROKEN_sparc64= invokes x86 assembler +BROKEN_powerpc64= invokes x86 assembler USES= alias cmake compiler:c++11-lib dos2unix gettext \ jpeg openal:al pkgconfig tar:xz -- cgit