diff options
author | ben <ben@pkgsrc.org> | 2006-03-18 13:28:53 +0000 |
---|---|---|
committer | ben <ben@pkgsrc.org> | 2006-03-18 13:28:53 +0000 |
commit | f5addfa77f40d3a2dc000af08df8180b4065d5bb (patch) | |
tree | 9ca323aef3736971348d652214d9a3725f3836db /emulators | |
parent | 967c38c9096aed0ef55956f826c3f869d6bf8482 (diff) | |
download | pkgsrc-f5addfa77f40d3a2dc000af08df8180b4065d5bb.tar.gz |
Only depend on nasm for the i386 build. Addresses PR#33084
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/snes9x/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/emulators/snes9x/Makefile b/emulators/snes9x/Makefile index 6ce14971644..742cfa35ee3 100644 --- a/emulators/snes9x/Makefile +++ b/emulators/snes9x/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.33 2006/03/09 21:04:43 jlam Exp $ +# $NetBSD: Makefile,v 1.34 2006/03/18 13:28:53 ben Exp $ DISTNAME= s9xs139 PKGNAME= snes9x-1.39 @@ -7,12 +7,10 @@ CATEGORIES= emulators MASTER_SITES= http://www.snes9x.com/zips/ EXTRACT_SUFX= .zip -MAINTAINER= jmcneill@NetBSD.org +MAINTAINER= ben@NetBSD.org HOMEPAGE= http://www.snes9x.com/ COMMENT= Super Nintendo Entertainment System (SNES) emulator -BUILD_DEPENDS+= nasm>=0.98:../../devel/nasm - WRKSRC= ${WRKDIR}/release USE_TOOLS+= gmake PTHREAD_OPTS+= require @@ -34,6 +32,7 @@ do-install: PKG_OPTIONS_VAR= PKG_OPTIONS.snes9x .if ${MACHINE_ARCH} == "i386" +BUILD_DEPENDS+= nasm>=0.98:../../devel/nasm PKG_SUPPORTED_OPTIONS= mmx .endif @@ -67,6 +66,7 @@ MAKE_ENV+= USBHID_H=1 .endif .endif +.include "../../devel/zlib/buildlink3.mk" .include "../../mk/oss.buildlink3.mk" .include "../../mk/pthread.buildlink3.mk" .include "../../mk/x11.buildlink3.mk" |