diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2013-05-16 21:55:51 +0800 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2013-05-16 21:55:51 +0800 |
commit | 14a5cc258f82e412dae27068db29a6da6317faef (patch) | |
tree | 296fb09ce560de7a9e7b4b8a720afc9ad88070a1 /games | |
parent | d26a9796a27ce61e9b9c3ca2f596350b86be3ce2 (diff) | |
download | freebsd-ports-gnome-14a5cc258f82e412dae27068db29a6da6317faef.tar.gz freebsd-ports-gnome-14a5cc258f82e412dae27068db29a6da6317faef.tar.zst freebsd-ports-gnome-14a5cc258f82e412dae27068db29a6da6317faef.zip |
- Mark broken on amd64
- Convert to new options framework
PR: ports/178636
Submitted by: Chris Petrik <c.petrik.sosa@gmail.com> (maintainer)
Diffstat (limited to 'games')
-rw-r--r-- | games/viruskiller/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/games/viruskiller/Makefile b/games/viruskiller/Makefile index 107c2b0db7b7..d82b6af30f4e 100644 --- a/games/viruskiller/Makefile +++ b/games/viruskiller/Makefile @@ -13,6 +13,8 @@ COMMENT= Arcade game that relies on quick reflexes LICENSE= GPLv2 +OPTIONS_DEFINE= DOCS + USE_SDL= mixer image ttf net USE_GMAKE= yes @@ -22,11 +24,17 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} MAKEFILE= makefile +.include <bsd.port.options.mk> + +.if ${ARCH} == "amd64" +BROKEN= Does not build with new libz +.endif + post-patch: # Remove non-free restricted files: ${RM} -f ${WRKSRC}/music/* ${WRKSRC}/sound/* -.if defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${REINPLACE_CMD} -e "s|^.*install.*DOCS.*||g" \ -e "s|^.*mkdir.*DOCDIR.*||g" \ ${WRKSRC}/makefile |