diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2017-05-14 07:21:37 +0800 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2017-05-14 07:21:37 +0800 |
commit | 7e4f41c6908ce98d98c9a87bb0998ff78c715166 (patch) | |
tree | 4ae3b8a2f12ec648a3f08b6e08e43bdddbde045b /games/rubix | |
parent | aaf8b327e5095da79cd603bcd11cc3bb1af0e5b5 (diff) | |
download | freebsd-ports-gnome-7e4f41c6908ce98d98c9a87bb0998ff78c715166.tar.gz freebsd-ports-gnome-7e4f41c6908ce98d98c9a87bb0998ff78c715166.tar.zst freebsd-ports-gnome-7e4f41c6908ce98d98c9a87bb0998ff78c715166.zip |
Mark some ports failing on power64. In cases where the error message
was a stub, provide a real one.
While here, pet portlint.
Approved by: portmgr (tier-2 blanket)
Diffstat (limited to 'games/rubix')
-rw-r--r-- | games/rubix/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/games/rubix/Makefile b/games/rubix/Makefile index 5eb7ec481339..10f120011f50 100644 --- a/games/rubix/Makefile +++ b/games/rubix/Makefile @@ -11,8 +11,6 @@ MASTER_SITES= http://sed.free.fr/rubix/ \ MAINTAINER= ports@FreeBSD.org COMMENT= Another Rubik's cube game with a rather interesting interface -BROKEN_powerpc64= Does not build - USES= compiler:nestedfct gmake tar:bzip2 USE_XORG= x11 MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS} -DENGLISH" \ @@ -26,7 +24,7 @@ OPTIONS_DEFINE= DOCS .include <bsd.port.pre.mk> -.if (${ARCH} == mips || ${ARCH} == mips64) && ${COMPILER_TYPE} == gcc +.if (${ARCH} == mips || ${ARCH} == mips64 || ${ARCH} == powerpc || ${ARCH} == powerpc64) && ${COMPILER_TYPE} == gcc CFLAGS+= -fnested-functions .endif |