Date: Mon, 20 Feb 2017 18:12:37 +0000 (UTC) From: Tijl Coosemans <tijl@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r434481 - head/games/linux-worldofgoo-demo Message-ID: <201702201812.v1KICbXd016110@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tijl Date: Mon Feb 20 18:12:36 2017 New Revision: 434481 URL: https://svnweb.freebsd.org/changeset/ports/434481 Log: Remove unnecessary mikmod dependency. Test LINUX_ARCH instead of ARCH. Modified: head/games/linux-worldofgoo-demo/Makefile Modified: head/games/linux-worldofgoo-demo/Makefile ============================================================================== --- head/games/linux-worldofgoo-demo/Makefile Mon Feb 20 18:00:18 2017 (r434480) +++ head/games/linux-worldofgoo-demo/Makefile Mon Feb 20 18:12:36 2017 (r434481) @@ -15,7 +15,7 @@ COMMENT= Demo version of incredible phys ONLY_FOR_ARCHS= i386 amd64 USES= linux -USE_LINUX= dri libvorbis mikmod sdl12 sdlmixer +USE_LINUX= dri libvorbis sdl12 sdlmixer NO_BUILD= yes WRKSRC= ${WRKDIR}/WorldOfGooDemo DATADIR= ${PREFIX}/share/WorldOfGoo @@ -23,9 +23,9 @@ DOCSDIR= ${PREFIX}/share/doc/WorldOfGoo OPTIONS_DEFINE= DOCS -.include <bsd.port.options.mk> +.include <bsd.port.pre.mk> -.if ${ARCH} == "i386" +.if ${LINUX_ARCH} == "i386" TARGET_BIN= WorldOfGoo.bin32 .else TARGET_BIN= WorldOfGoo.bin64 @@ -54,4 +54,4 @@ do-install: ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201702201812.v1KICbXd016110>