diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-02-09 02:06:59 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-02-09 02:06:59 +0000 |
commit | 220dbfdd3858548cbf5c4638ff7645ef4ee982c4 (patch) | |
tree | 7e4a3abb626e524d285eda17b475b110d5c601c8 /games/briquolo | |
parent | 857a9477c40387cf7ce6357f77169ed31fbe9874 (diff) | |
download | ports-220dbfdd3858548cbf5c4638ff7645ef4ee982c4.tar.gz ports-220dbfdd3858548cbf5c4638ff7645ef4ee982c4.zip |
Notes
Diffstat (limited to 'games/briquolo')
-rw-r--r-- | games/briquolo/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/games/briquolo/Makefile b/games/briquolo/Makefile index 1a52535891cf..a5db995a6b05 100644 --- a/games/briquolo/Makefile +++ b/games/briquolo/Makefile @@ -27,10 +27,16 @@ CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" USE_SDL= mixer sdl +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 502000 +BROKEN= "Configure fails" +.endif + post-patch: @${FIND} ${WRKSRC} -name "*.cpp" | ${XARGS} \ ${REINPLACE_CMD} -e 's|SDL/|SDL11/|g' @${FIND} ${WRKSRC} -name "*.h" | ${XARGS} \ ${REINPLACE_CMD} -e 's|SDL/|SDL11/|g' -.include <bsd.port.mk> +.include <bsd.port.post.mk> |