Received: by mail.netbsd.org (Postfix, from userid 605) id A8A5784E3D; Wed, 8 Jan 2020 23:40:43 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3117E84E3C for ; Wed, 8 Jan 2020 23:40:43 +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 1edi40KxFNYL for ; Wed, 8 Jan 2020 23:40:42 +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 AFA9E84D6D for ; Wed, 8 Jan 2020 23:40:42 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A2E8BFBF4; Wed, 8 Jan 2020 23:40:42 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1578526842292650" MIME-Version: 1.0 Date: Wed, 8 Jan 2020 23:40:42 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/emulators/retroarch To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20200108234042.A2E8BFBF4@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. --_----------=_1578526842292650 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Wed Jan 8 23:40:42 UTC 2020 Modified Files: pkgsrc/emulators/retroarch: Makefile options.mk Log Message: retroarch: Disable for wayland until further work is done To generate a diff of this commit: cvs rdiff -u -r1.27 -r1.28 pkgsrc/emulators/retroarch/Makefile cvs rdiff -u -r1.12 -r1.13 pkgsrc/emulators/retroarch/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1578526842292650 Content-Disposition: inline Content-Length: 1589 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/emulators/retroarch/Makefile diff -u pkgsrc/emulators/retroarch/Makefile:1.27 pkgsrc/emulators/retroarch/Makefile:1.28 --- pkgsrc/emulators/retroarch/Makefile:1.27 Wed Sep 18 14:17:10 2019 +++ pkgsrc/emulators/retroarch/Makefile Wed Jan 8 23:40:42 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.27 2019/09/18 14:17:10 ryoon Exp $ +# $NetBSD: Makefile,v 1.28 2020/01/08 23:40:42 nia Exp $ PKGNAME= retroarch-${RETROARCH_VERSION} DISTNAME= RetroArch-${RETROARCH_VERSION} @@ -26,6 +26,7 @@ CONFIGURE_ARGS+= --disable-builtinminiup CONFIGURE_ARGS+= --disable-builtinzlib CONFIGURE_ARGS+= --disable-builtinflac CONFIGURE_ARGS+= --disable-discord +CONFIGURE_ARGS+= --disable-wayland # necessity for loading cores, might as well fail early without it CONFIGURE_ARGS+= --enable-dylib Index: pkgsrc/emulators/retroarch/options.mk diff -u pkgsrc/emulators/retroarch/options.mk:1.12 pkgsrc/emulators/retroarch/options.mk:1.13 --- pkgsrc/emulators/retroarch/options.mk:1.12 Fri May 31 18:11:51 2019 +++ pkgsrc/emulators/retroarch/options.mk Wed Jan 8 23:40:42 2020 @@ -1,6 +1,4 @@ -# $NetBSD: options.mk,v 1.12 2019/05/31 18:11:51 maya Exp $ - -.include "../../mk/bsd.fast.prefs.mk" +# $NetBSD: options.mk,v 1.13 2020/01/08 23:40:42 nia Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.retroarch @@ -8,6 +6,8 @@ PKG_SUPPORTED_OPTIONS+= libdrm sdl2 six PKG_SUPPORTED_OPTIONS+= ffmpeg freetype mbedtls PKG_SUPPORTED_OPTIONS+= alsa jack openal pulseaudio +.include "../../mk/bsd.fast.prefs.mk" + .if ${OPSYS} == "Linux" PKG_SUPPORTED_OPTIONS+= udev .endif --_----------=_1578526842292650--