diff options
-rw-r--r-- | games/burgerspace/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/games/burgerspace/Makefile b/games/burgerspace/Makefile index acc821955720..c196ecf7b71a 100644 --- a/games/burgerspace/Makefile +++ b/games/burgerspace/Makefile @@ -27,8 +27,14 @@ CONFIGURE_ARGS+= --with-gengameng-prefix="${X11BASE}" MAN6= burgerspace.6 PLIST_FILES= bin/burgerspace +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +BROKEN= Does not compile on FreeBSD 4.x +.endif + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/burgerspace ${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/doc/burgerspace.6 ${PREFIX}/man/man6 -.include <bsd.port.mk> +.include <bsd.port.post.mk> |