svn commit: r318316 - head/games/viruskiller
Bryan Drewery
bdrewery at FreeBSD.org
Thu May 16 13:55:51 UTC 2013
Author: bdrewery
Date: Thu May 16 13:55:51 2013
New Revision: 318316
URL: http://svnweb.freebsd.org/changeset/ports/318316
Log:
- Mark broken on amd64
- Convert to new options framework
PR: ports/178636
Submitted by: Chris Petrik <c.petrik.sosa at gmail.com> (maintainer)
Modified:
head/games/viruskiller/Makefile
Modified: head/games/viruskiller/Makefile
==============================================================================
--- head/games/viruskiller/Makefile Thu May 16 13:53:13 2013 (r318315)
+++ head/games/viruskiller/Makefile Thu May 16 13:55:51 2013 (r318316)
@@ -13,6 +13,8 @@ COMMENT= Arcade game that relies on quic
LICENSE= GPLv2
+OPTIONS_DEFINE= DOCS
+
USE_SDL= mixer image ttf net
USE_GMAKE= yes
@@ -22,11 +24,17 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVER
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
More information about the svn-ports-all
mailing list