1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00

Remove unnecessary mikmod dependency.

Test LINUX_ARCH instead of ARCH.
This commit is contained in:
Tijl Coosemans 2017-02-20 18:12:36 +00:00
parent ec1e5afce0
commit e007622e35
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=434481

View File

@ -15,7 +15,7 @@ COMMENT= Demo version of incredible physics based puzzle/construction game
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>