diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2003-05-18 09:55:25 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2003-05-18 09:55:25 +0000 |
commit | 9c288e873f84089ba8dcb3c1acff8ce23bd4e5e0 (patch) | |
tree | 043d479b1d60668b1d77568d010f6178e25bd6ba /games/pipenightdreams | |
parent | Fix build: (diff) |
BROKEN on 5.1: bad C++
Notes
Notes:
svn path=/head/; revision=81207
Diffstat (limited to '')
-rw-r--r-- | games/pipenightdreams/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/games/pipenightdreams/Makefile b/games/pipenightdreams/Makefile index d9302040e864..e63c29405cc8 100644 --- a/games/pipenightdreams/Makefile +++ b/games/pipenightdreams/Makefile @@ -15,6 +15,12 @@ COMMENT= A puzzle game similar to PipeMania LIB_DEPENDS= SDL_image.10:${PORTSDIR}/graphics/sdl_image +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 500113 +BROKEN= "Does not compile (bad C++ code)" +.endif + SDL_CONFIG?= ${LOCALBASE}/bin/sdl11-config GNU_CONFIGURE= yes USE_BZIP2= yes @@ -34,4 +40,4 @@ post-patch: ${REINPLACE_CMD} "s|/usr/share/games|${LOCALBASE}/share|g" \ ${WRKSRC}/src/main.cpp -.include <bsd.port.mk> +.include <bsd.port.post.mk> |