Received: by mail.netbsd.org (Postfix, from userid 605) id 6979084DFA; Fri, 5 Jul 2019 08:27:14 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E477A84DF7 for ; Fri, 5 Jul 2019 08:27:13 +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 o_PgBWZ5qhAh for ; Fri, 5 Jul 2019 08:27:13 +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 3CD1084C85 for ; Fri, 5 Jul 2019 08:27:13 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2C16CFBF4; Fri, 5 Jul 2019 08:27:13 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_156231523379020" MIME-Version: 1.0 Date: Fri, 5 Jul 2019 08:27:13 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/emulators/dolphin-emu To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20190705082713.2C16CFBF4@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. --_----------=_156231523379020 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Fri Jul 5 08:27:13 UTC 2019 Modified Files: pkgsrc/emulators/dolphin-emu: Makefile Log Message: dolphin-emu: Requires std::make_unique To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/emulators/dolphin-emu/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_156231523379020 Content-Disposition: inline Content-Length: 1275 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/emulators/dolphin-emu/Makefile diff -u pkgsrc/emulators/dolphin-emu/Makefile:1.6 pkgsrc/emulators/dolphin-emu/Makefile:1.7 --- pkgsrc/emulators/dolphin-emu/Makefile:1.6 Mon Jul 1 04:08:08 2019 +++ pkgsrc/emulators/dolphin-emu/Makefile Fri Jul 5 08:27:12 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2019/07/01 04:08:08 ryoon Exp $ +# $NetBSD: Makefile,v 1.7 2019/07/05 08:27:12 nia Exp $ DISTNAME= dolphin-emu-5.0 PKGREVISION= 4 @@ -15,7 +15,10 @@ LICENSE= gnu-gpl-v2 EXTRACT_USING= bsdtar USE_TOOLS+= msgfmt msgmerge pkg-config USE_CMAKE= yes -USE_LANGUAGES= c c++ +USE_LANGUAGES= c c++14 + +# std::make_unique +GCC_REQD+= 4.9 # Since SFML is not available in pkgsrc, make sure the included version # is always used. @@ -25,7 +28,10 @@ CMAKE_ARGS+= -DPKGMANDIR=${PKGMANDIR} .include "../../mk/bsd.prefs.mk" +# Claims to only support little endian architectures. ONLY_FOR_PLATFORM= ${LITTLEENDIANPLATFORMS} + +# No support in the code. BROKEN_ON_PLATFORM+= SunOS-*-* .if ${MACHINE_ARCH} != "x86_64" && ${MACHINE_ARCH} != "aarch64" @@ -37,6 +43,7 @@ CMAKE_ARGS.Linux+= -DENABLE_EVDEV=0 BUILDLINK_TRANSFORM+= rm:-ldl +# JIT NOT_PAX_MPROTECT_SAFE+= bin/dolphin-emu NOT_PAX_MPROTECT_SAFE+= bin/dolphin-emu-nogui --_----------=_156231523379020--