diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-09-29 05:45:34 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-09-29 05:45:34 +0000 |
commit | 90abb24f53e9d8c2428c70b483b38627d2bae3ae (patch) | |
tree | 039e88512c84bb0c19d7d2204a18150ecd6574ab /games/vavoom | |
parent | BROKEN: Size mismatch (diff) |
BROKEN on 5.x: Does not compile
Approved by: portmgr (self)
Notes
Notes:
svn path=/head/; revision=118494
Diffstat (limited to 'games/vavoom')
-rw-r--r-- | games/vavoom/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/games/vavoom/Makefile b/games/vavoom/Makefile index 223b70bd0036..529102fde164 100644 --- a/games/vavoom/Makefile +++ b/games/vavoom/Makefile @@ -33,6 +33,12 @@ EXTRACT_AFTER_ARGS= -d ${WRKSRC} MAKE_ARGS= "USE_AL=1" .endif +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 502126 +BROKEN= "Does not compile on FreeBSD >= 5.x" +.endif + .ifndef (WITH_OPENAL) pre-everything:: @${ECHO_CMD} "********************************************************************" @@ -73,4 +79,4 @@ post-install: @${SED} -e 's|%%PREFIX%%|${PREFIX}|; s|%%DATADIR%%|${DATADIR}|' \ <${PKGMESSAGE} -.include <bsd.port.mk> +.include <bsd.port.post.mk> |