From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1504254-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 72152158004 for <garchives@archives.gentoo.org>; Wed, 5 Apr 2023 02:41:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B874DE0849; Wed, 5 Apr 2023 02:41:33 +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 pigeon.gentoo.org (Postfix) with ESMTPS id 9ED21E0849 for <gentoo-commits@lists.gentoo.org>; Wed, 5 Apr 2023 02:41:33 +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 9AD59340CEA for <gentoo-commits@lists.gentoo.org>; Wed, 5 Apr 2023 02:41:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 48D9599A for <gentoo-commits@lists.gentoo.org>; Wed, 5 Apr 2023 02:41:30 +0000 (UTC) From: "Maciej Barć" <xgqt@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" <xgqt@gentoo.org> Message-ID: <1680662423.bdec9ff75969207c31ce201a5dbc709fd1fe7a8a.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-emulation/melonds/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-emulation/melonds/melonds-9999.ebuild X-VCS-Directories: games-emulation/melonds/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: bdec9ff75969207c31ce201a5dbc709fd1fe7a8a X-VCS-Branch: master Date: Wed, 5 Apr 2023 02:41:30 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8809b02b-a813-4947-b7b4-c8f39b88cca3 X-Archives-Hash: e56cb2f1887a09fe938d4ece766619da commit: bdec9ff75969207c31ce201a5dbc709fd1fe7a8a Author: dakrk <dark <AT> darkok <DOT> xyz> AuthorDate: Wed Apr 5 01:59:11 2023 +0000 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org> CommitDate: Wed Apr 5 02:40:23 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdec9ff7 games-emulation/melonds: add wayland USE flag Signed-off-by: dakrk <dark <AT> darkok.xyz> Closes: https://github.com/gentoo/gentoo/pull/30481 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org> games-emulation/melonds/melonds-9999.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/games-emulation/melonds/melonds-9999.ebuild b/games-emulation/melonds/melonds-9999.ebuild index d68ba29eb6b8..3bf0d22f5d0e 100644 --- a/games-emulation/melonds/melonds-9999.ebuild +++ b/games-emulation/melonds/melonds-9999.ebuild @@ -22,13 +22,12 @@ else KEYWORDS="~amd64" fi -IUSE="+jit +opengl" +IUSE="+jit +opengl wayland" LICENSE="BSD-2 GPL-2 GPL-3 Unlicense" SLOT="0" RDEPEND=" app-arch/libarchive - dev-libs/wayland dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 @@ -37,9 +36,10 @@ RDEPEND=" media-libs/libsdl2[sound,video] net-libs/libpcap net-libs/libslirp + wayland? ( dev-libs/wayland ) " DEPEND="${RDEPEND}" -BDEPEND="kde-frameworks/extra-cmake-modules:5" +BDEPEND="wayland? ( kde-frameworks/extra-cmake-modules:5 )" # used for JIT recompiler QA_EXECSTACK="usr/bin/melonDS" @@ -65,6 +65,7 @@ src_configure() { -DBUILD_SHARED_LIBS=OFF -DENABLE_JIT=$(usex jit) -DENABLE_OGLRENDERER=$(usex opengl) + -DENABLE_WAYLAND=$(usex wayland) ) cmake_src_configure }