diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2007-09-06 09:06:50 +0800 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2007-09-06 09:06:50 +0800 |
commit | b9370de1b38da5c375edf94c32c63502664bc0d1 (patch) | |
tree | e2b2f1f27d944faabfb922223135fa633dada484 /games | |
parent | f41b2bda4c12a16007af9516f770dd2b74b3c64e (diff) | |
download | freebsd-ports-gnome-b9370de1b38da5c375edf94c32c63502664bc0d1.tar.gz freebsd-ports-gnome-b9370de1b38da5c375edf94c32c63502664bc0d1.tar.zst freebsd-ports-gnome-b9370de1b38da5c375edf94c32c63502664bc0d1.zip |
[MAINTAINER] games/flobopuyo: mark BROKEN on amd64/CURRENT
Doesn't build on amd64 7.
Reported by: pointyhat via kris
PR: ports/116092
Submitted by: Dmitry Marakasov <amdmi3@amdmi3.ru>
Diffstat (limited to 'games')
-rw-r--r-- | games/flobopuyo/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/games/flobopuyo/Makefile b/games/flobopuyo/Makefile index 78b9841cc391..db4d897d7e4e 100644 --- a/games/flobopuyo/Makefile +++ b/games/flobopuyo/Makefile @@ -19,7 +19,12 @@ COMMENT= Clone of the famous PuyoPuyo USE_BISON= yes USE_GMAKE= yes USE_SDL= sdl mixer image -USE_GCC= 3.4+ + +.include <bsd.port.pre.mk> + +.if ${ARCH} == "amd64" && ${OSVERSION} >= 700000 +BROKEN= Doesn't build +.endif post-patch: @${REINPLACE_CMD} -e 's|sdl-config|${SDL_CONFIG}|' ${WRKSRC}/Makefile @@ -29,4 +34,4 @@ post-patch: @${REINPLACE_CMD} -e 's|^INSTALL_DATADIR=.*$$|INSTALL_DATADIR=${DATADIR}|' ${WRKSRC}/Makefile @${REINPLACE_CMD} -e 's|^INSTALL_BINDIR=.*$$|INSTALL_BINDIR=${PREFIX}/bin|' ${WRKSRC}/Makefile -.include <bsd.port.mk> +.include <bsd.port.post.mk> |