freebsd-ports/games/redorblack/Makefile
Mark Linimon aff42c7199 Mark ports broken on mips64 that are already broken on powerpc64. In
most cases, the failure mode is the same.  Also, mark them broken on
mips when necessary.

While here, pet portlint.

Approved by:	portmgr (tier-2 blanket)
2018-07-02 04:00:29 +00:00

26 lines
721 B
Makefile

# Created by: buratello@easy.com
# $FreeBSD$
PORTNAME= redorblack
PORTVERSION= 1.0
CATEGORIES= games
MASTER_SITES= SF/redorb/
MAINTAINER= buratello@easy.com
COMMENT= Simple card game to test fortune and probability theory
LICENSE= BSD2CLAUSE
BROKEN_mips= fails to compile: deckClass.h: error: random: No such file or directory
BROKEN_mips64= fails to compile: deckClass.h: error: random: No such file or directory
BROKEN_powerpc64= fails to compile: deckClass.h: error: random: No such file or directory
PLIST_FILES= bin/redorblack
do-build:
${CXX} ${CXXFLAGS} -o ${WRKSRC}/redorblack ${WRKSRC}/redorblack.c
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/redorblack ${STAGEDIR}${PREFIX}/bin/
.include <bsd.port.mk>