Received: by mail.netbsd.org (Postfix, from userid 605) id 1458684DEB; Sat, 13 Jun 2020 10:29:50 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 90B7484DE7 for ; Sat, 13 Jun 2020 10:29:49 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 8hxGf1wCcwfz for ; Sat, 13 Jun 2020 10:29:49 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id E3C8684D5E for ; Sat, 13 Jun 2020 10:29:48 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D29E8FB27; Sat, 13 Jun 2020 10:29:48 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1592044188173160" MIME-Version: 1.0 Date: Sat, 13 Jun 2020 10:29:48 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/emulators/dgen To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20200613102948.D29E8FB27@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1592044188173160 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sat Jun 13 10:29:48 UTC 2020 Modified Files: pkgsrc/emulators/dgen: Makefile Log Message: dgen: Avoid building cyclone, since it seems to fail on armv7. nasm is a TOOL_DEPENDS. Bump PKGREVISION To generate a diff of this commit: cvs rdiff -u -r1.31 -r1.32 pkgsrc/emulators/dgen/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1592044188173160 Content-Disposition: inline Content-Length: 909 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/emulators/dgen/Makefile diff -u pkgsrc/emulators/dgen/Makefile:1.31 pkgsrc/emulators/dgen/Makefile:1.32 --- pkgsrc/emulators/dgen/Makefile:1.31 Sat May 23 12:25:33 2020 +++ pkgsrc/emulators/dgen/Makefile Sat Jun 13 10:29:48 2020 @@ -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 .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 --_----------=_1592044188173160--