From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A127D1582EF for ; Wed, 12 Feb 2025 02:18:00 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 906AF3430CA for ; Wed, 12 Feb 2025 02:18:00 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 8FB5311042D; Wed, 12 Feb 2025 02:17:59 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 82D8411042D for ; Wed, 12 Feb 2025 02:17:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 396BD3430BB for ; Wed, 12 Feb 2025 02:17:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 81CCE1ACB for ; Wed, 12 Feb 2025 02:17:57 +0000 (UTC) From: "Michael Orlitzky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" Message-ID: <1739325899.2176ef7f525af21761901c7785d58eaff48dd970.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-emulation/rmg/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-emulation/rmg/metadata.xml games-emulation/rmg/rmg-9999.ebuild X-VCS-Directories: games-emulation/rmg/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: 2176ef7f525af21761901c7785d58eaff48dd970 X-VCS-Branch: master Date: Wed, 12 Feb 2025 02:17:57 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 45d80090-4bfc-4195-8750-95b3207cdfff X-Archives-Hash: b66319b22393a90fec1b647e73d61a2a commit: 2176ef7f525af21761901c7785d58eaff48dd970 Author: orbea riseup net> AuthorDate: Mon Dec 23 16:22:35 2024 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Wed Feb 12 02:04:59 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2176ef7f games-emulation/rmg: add netplay USE flag Signed-off-by: orbea riseup.net> Signed-off-by: Michael Orlitzky gentoo.org> games-emulation/rmg/metadata.xml | 3 ++- games-emulation/rmg/rmg-9999.ebuild | 9 +++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/games-emulation/rmg/metadata.xml b/games-emulation/rmg/metadata.xml index bbbd1acac716..e951cf4242ef 100644 --- a/games-emulation/rmg/metadata.xml +++ b/games-emulation/rmg/metadata.xml @@ -10,9 +10,10 @@ Proxy Maintainers + Enable the mupen64plus-video-angrylion-plus XMAME licensed plugin Enable Discord RPC support Enable the new dynarec for the mupen64plus-core plugin - Enable the mupen64plus-video-angrylion-plus XMAME licensed plugin + Enable Netplay Enable the mupen64plus-input-gca rust plugin diff --git a/games-emulation/rmg/rmg-9999.ebuild b/games-emulation/rmg/rmg-9999.ebuild index 090054fff76d..83eaf85c4da2 100644 --- a/games-emulation/rmg/rmg-9999.ebuild +++ b/games-emulation/rmg/rmg-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 2024 Gentoo Authors +# Copyright 2024-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -52,7 +52,7 @@ LICENSE=" rust-plugin? ( ISC Unicode-DFS-2016 ) " SLOT="0" -IUSE="angrylion-plugin discord dynarec rust-plugin" +IUSE="angrylion-plugin discord dynarec netplay rust-plugin" DEPEND=" dev-libs/hidapi @@ -65,6 +65,10 @@ DEPEND=" media-libs/speexdsp sys-libs/zlib[minizip(+)] virtual/opengl + netplay? ( + dev-qt/qtwebsockets:6 + media-libs/sdl2-net + ) rust-plugin? ( dev-libs/libusb:1 ) " RDEPEND="${DEPEND}" @@ -124,6 +128,7 @@ src_configure() { local mycmakeargs=( -DAPPIMAGE_UPDATER=OFF -DDISCORD_RPC=$(usex discord) + -DNETPLAY=$(usex netplay) -DNO_ASM=$(usex dynarec OFF ON) -DNO_RUST=$(usex rust-plugin OFF ON) -DPORTABLE_INSTALL=OFF