summaryrefslogtreecommitdiff
path: root/emulators/dgen
diff options
context:
space:
mode:
authornia <nia@pkgsrc.org>2020-06-13 10:29:48 +0000
committernia <nia@pkgsrc.org>2020-06-13 10:29:48 +0000
commit65eea0570a58deac2da33c23166cd998abd88e4e (patch)
tree9160099eb84dc607726e28fdda92a74e6876979c /emulators/dgen
parente5ddba39352b9c8f4e1f4672420e15063bc2b0ce (diff)
downloadpkgsrc-65eea0570a58deac2da33c23166cd998abd88e4e.tar.gz
dgen: Avoid building cyclone, since it seems to fail on armv7.
nasm is a TOOL_DEPENDS. Bump PKGREVISION
Diffstat (limited to 'emulators/dgen')
-rw-r--r--emulators/dgen/Makefile11
1 files changed, 5 insertions, 6 deletions
diff --git a/emulators/dgen/Makefile b/emulators/dgen/Makefile
index fc9ecd64257..3cb57856eb4 100644
--- a/emulators/dgen/Makefile
+++ b/emulators/dgen/Makefile
@@ -1,7 +1,8 @@
-# $NetBSD: Makefile,v 1.31 2020/05/23 12:25:33 rillig Exp $
+# $NetBSD: Makefile,v 1.32 2020/06/13 10:29:48 nia Exp $
#
DISTNAME= dgen-sdl-1.33
+PKGREVISION= 1
CATEGORIES= emulators
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=dgen/}
@@ -12,13 +13,11 @@ COMMENT= Genesis/Megadrive emulator for Unix platforms
.include "../../mk/bsd.prefs.mk"
.if ${MACHINE_ARCH} == "i386"
-DEPENDS+= nasm-[0-9]*:../../devel/nasm
+TOOL_DEPENDS+= nasm-[0-9]*:../../devel/nasm
.endif
-PLIST_VARS+= arm
-
-.if ${MACHINE_CPU:U} == "arm"
-PLIST.arm= yes
+.if !empty(MACHINE_ARCH:Mearm*)
+CONFIGURE_ARGS+= --without-cyclone
.endif
USE_LANGUAGES= c c++03