diff options
author | kris <kris@FreeBSD.org> | 2004-02-09 10:06:59 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-02-09 10:06:59 +0800 |
commit | ec23d82f5eef65372ba7d01e9c03315e4f36924d (patch) | |
tree | 4875b218bda9e4a859ec730b52a2390ab352d0cc /games/briquolo | |
parent | 3133c6dc0ee5392161d2ff75cca6772552c191d9 (diff) | |
download | freebsd-ports-gnome-ec23d82f5eef65372ba7d01e9c03315e4f36924d.tar.gz freebsd-ports-gnome-ec23d82f5eef65372ba7d01e9c03315e4f36924d.tar.zst freebsd-ports-gnome-ec23d82f5eef65372ba7d01e9c03315e4f36924d.zip |
BROKEN on 5.x: configure fails
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> |