diff options
author | acm <acm@FreeBSD.org> | 2006-11-17 18:38:40 +0000 |
---|---|---|
committer | acm <acm@FreeBSD.org> | 2006-11-17 18:38:40 +0000 |
commit | b12d88af738fadba11d94663f4c6cb91888d4dea (patch) | |
tree | 58aedab1b20f633844df023100e8f3a2267b2923 /games | |
parent | 288a4aac346cd0298a6206f0618ef7452320cf10 (diff) | |
download | FreeBSD-ports-b12d88af738fadba11d94663f4c6cb91888d4dea.zip FreeBSD-ports-b12d88af738fadba11d94663f4c6cb91888d4dea.tar.gz |
- BROKEN on 4.x. It doesn't compile with new version of devel/ode.
Repored by: kris
Diffstat (limited to 'games')
-rw-r--r-- | games/gillo/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/games/gillo/Makefile b/games/gillo/Makefile index a742632..b3e5641 100644 --- a/games/gillo/Makefile +++ b/games/gillo/Makefile @@ -27,6 +27,12 @@ WRKSRC= ${WRKDIR}/${PORTNAME} JAM?= ${LOCALBASE}/bin/jam +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +BROKEN= does not compile +.endif + post-patch: @${REINPLACE_CMD} -i '' -e 's|SDL/||g' ${WRKSRC}/src/* @${REINPLACE_CMD} -e 's|%%SDL_CFLAGS%%|`${SDL_CONFIG} --cflags`|' \ @@ -44,4 +50,4 @@ do-install: @${MKDIR} ${DATADIR} ${INSTALL_DATA} ${WRKSRC}/data/*.* ${DATADIR} -.include <bsd.port.mk> +.include <bsd.port.post.mk> |