diff options
author | pav <pav@FreeBSD.org> | 2009-05-30 04:42:04 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2009-05-30 04:42:04 +0800 |
commit | 9b13efa3ce89ea7b7ae9a25b1cdba2abb73412a6 (patch) | |
tree | 35293ba06f7a2f8e2e2fe1bb510c9f194846dcd5 /games/euchre | |
parent | e646ce2a4d5cd9a8befc2d8f8c8e125b04fce5c3 (diff) | |
download | freebsd-ports-gnome-9b13efa3ce89ea7b7ae9a25b1cdba2abb73412a6.tar.gz freebsd-ports-gnome-9b13efa3ce89ea7b7ae9a25b1cdba2abb73412a6.tar.zst freebsd-ports-gnome-9b13efa3ce89ea7b7ae9a25b1cdba2abb73412a6.zip |
- Mark BROKEN on amd64/6: does not compile
Reported by: pointyhat
Diffstat (limited to 'games/euchre')
-rw-r--r-- | games/euchre/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/games/euchre/Makefile b/games/euchre/Makefile index 0d06aecec8cf..48d88ef74e7d 100644 --- a/games/euchre/Makefile +++ b/games/euchre/Makefile @@ -20,9 +20,15 @@ USE_GNOME= gtk12 CFLAGS+= -include "${FILESDIR}/std-namespace.h" -Werror MAKE_JOBS_SAFE= yes +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 700000 && ${ARCH} == "amd64" +BROKEN= does not compile +.endif + post-patch: ${REINPLACE_CMD} 's,char,const char,' \ ${WRKSRC}/src/pixmaps/*.xpm \ ${WRKSRC}/src/pixmaps/pixmaps.?pp -.include <bsd.port.mk> +.include <bsd.port.post.mk> |