diff options
author | Bryan Drewery <bdrewery@FreeBSD.org> | 2013-05-16 13:55:51 +0000 |
---|---|---|
committer | Bryan Drewery <bdrewery@FreeBSD.org> | 2013-05-16 13:55:51 +0000 |
commit | 46e7ac5fc76d408bfa1878caa001c2a5ae3430bc (patch) | |
tree | 296fb09ce560de7a9e7b4b8a720afc9ad88070a1 /games | |
parent | - Update to 0.6.0 (diff) |
- Mark broken on amd64
- Convert to new options framework
PR: ports/178636
Submitted by: Chris Petrik <c.petrik.sosa@gmail.com> (maintainer)
Notes
Notes:
svn path=/head/; revision=318316
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 |