Received: by mail.netbsd.org (Postfix, from userid 605) id 10E2F85035; Sat, 11 Aug 2018 13:53:27 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2ED1085031 for ; Sat, 11 Aug 2018 13:53:26 +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 33w0gkg8pbnt for ; Sat, 11 Aug 2018 13:53:25 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 7C92A84F13 for ; Sat, 11 Aug 2018 13:53:25 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 75328FBEC; Sat, 11 Aug 2018 13:53:25 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1533995605251060" MIME-Version: 1.0 Date: Sat, 11 Aug 2018 13:53:25 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/emulators/libretro-mupen64plus To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20180811135325.75328FBEC@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. --_----------=_1533995605251060 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sat Aug 11 13:53:25 UTC 2018 Modified Files: pkgsrc/emulators/libretro-mupen64plus: options.mk Log Message: libretro-mupen64plus: Align variables to silence pkglint. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 pkgsrc/emulators/libretro-mupen64plus/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1533995605251060 Content-Disposition: inline Content-Length: 1583 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/emulators/libretro-mupen64plus/options.mk diff -u pkgsrc/emulators/libretro-mupen64plus/options.mk:1.4 pkgsrc/emulators/libretro-mupen64plus/options.mk:1.5 --- pkgsrc/emulators/libretro-mupen64plus/options.mk:1.4 Thu Feb 5 21:02:37 2015 +++ pkgsrc/emulators/libretro-mupen64plus/options.mk Sat Aug 11 13:53:25 2018 @@ -1,6 +1,6 @@ -# $NetBSD: options.mk,v 1.4 2015/02/05 21:02:37 wiz Exp $ +# $NetBSD: options.mk,v 1.5 2018/08/11 13:53:25 nia Exp $ -PKG_OPTIONS_VAR= PKG_OPTIONS.libretro-mupen64plus +PKG_OPTIONS_VAR= PKG_OPTIONS.libretro-mupen64plus PKG_OPTIONS_REQUIRED_GROUPS= graphics PKG_OPTIONS_GROUP.graphics= opengl @@ -8,19 +8,19 @@ PKG_OPTIONS_GROUP.graphics= opengl .if !empty(MACHINE_ARCH:M*arm*) PKG_OPTIONS_GROUP.graphics+= rpi -PKG_SUPPORTED_OPTIONS+= dynarec -PKG_SUGGESTED_OPTIONS+= rpi dynarec -MUPEN64_DYNAREC_ARCH= arm +PKG_SUPPORTED_OPTIONS+= dynarec +PKG_SUGGESTED_OPTIONS+= rpi dynarec +MUPEN64_DYNAREC_ARCH= arm .elif !empty(MACHINE_ARCH:Mi386) -PKG_SUPPORTED_OPTIONS+= dynarec -PKG_SUGGESTED_OPTIONS+= dynarec opengl -MUPEN64_DYNAREC_ARCH= x86 +PKG_SUPPORTED_OPTIONS+= dynarec +PKG_SUGGESTED_OPTIONS+= dynarec opengl +MUPEN64_DYNAREC_ARCH= x86 .elif !empty(MACHINE_ARCH:Mx86_64) -PKG_SUPPORTED_OPTIONS+= dynarec -PKG_SUGGESTED_OPTIONS+= dynarec opengl -MUPEN64_DYNAREC_ARCH= x86_64 +PKG_SUPPORTED_OPTIONS+= dynarec +PKG_SUGGESTED_OPTIONS+= dynarec opengl +MUPEN64_DYNAREC_ARCH= x86_64 .else -PKG_SUGGESTED_OPTIONS+= opengl +PKG_SUGGESTED_OPTIONS+= opengl .endif .include "../../mk/bsd.options.mk" --_----------=_1533995605251060--