svn commit: r434481 - head/games/linux-worldofgoo-demo
Tijl Coosemans
tijl at FreeBSD.org
Mon Feb 20 18:12:38 UTC 2017
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>
More information about the svn-ports-head
mailing list