From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7B51D138334 for ; Sat, 22 Sep 2018 17:04:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 39116E0824; Sat, 22 Sep 2018 17:04:44 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0C9D6E0824 for ; Sat, 22 Sep 2018 17:04:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 30BEB335C8C for ; Sat, 22 Sep 2018 17:04:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 545963DD for ; Sat, 22 Sep 2018 17:04:39 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1537635870.239230b6fe0340b39e7e9cd51037eb826a009d74.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-emulation/dolphin/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-emulation/dolphin/dolphin-9999.ebuild X-VCS-Directories: games-emulation/dolphin/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 239230b6fe0340b39e7e9cd51037eb826a009d74 X-VCS-Branch: master Date: Sat, 22 Sep 2018 17:04:39 +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-Archives-Salt: e6f0a8e5-97b7-475a-9144-2cc28b1ed15e X-Archives-Hash: 34a9501dfb68a8e92fc618ac796e6102 commit: 239230b6fe0340b39e7e9cd51037eb826a009d74 Author: Sergei Trofimovich gentoo org> AuthorDate: Sat Sep 22 16:34:15 2018 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Sat Sep 22 17:04:30 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=239230b6 games-emulation/dolphin: drop unsupported USE=sdl, bug #666558 As reported by Simon Levermann in https://bugs.gentoo.org/666558 SDL backend handles justicks weaker than default evdev and is there only for *BSDs. Reported-by: Simon Levermann Bug: https://bugs.dolphin-emu.org/issues/11399 Bug: https://bugs.gentoo.org/666558 Package-Manager: Portage-2.3.49, Repoman-2.3.10 games-emulation/dolphin/dolphin-9999.ebuild | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/games-emulation/dolphin/dolphin-9999.ebuild b/games-emulation/dolphin/dolphin-9999.ebuild index 811fc595d32..3294bace82d 100644 --- a/games-emulation/dolphin/dolphin-9999.ebuild +++ b/games-emulation/dolphin/dolphin-9999.ebuild @@ -22,7 +22,7 @@ HOMEPAGE="https://www.dolphin-emu.org/" LICENSE="GPL-2" SLOT="0" -IUSE="alsa bluetooth discord-presence doc egl +evdev ffmpeg libav log lto profile pulseaudio +qt5 -sdl systemd upnp" +IUSE="alsa bluetooth discord-presence doc egl +evdev ffmpeg libav log lto profile pulseaudio +qt5 systemd upnp" RDEPEND=" dev-libs/hidapi:0= @@ -58,7 +58,6 @@ RDEPEND=" dev-qt/qtgui:5 dev-qt/qtwidgets:5 ) - sdl? ( media-libs/libsdl2[haptic,joystick] ) systemd? ( sys-apps/systemd:0= ) upnp? ( net-libs/miniupnpc ) " @@ -126,7 +125,7 @@ src_configure() { -DENABLE_LTO=$(usex lto) -DENABLE_PULSEAUDIO=$(usex pulseaudio) -DENABLE_QT=$(usex qt5) - -DENABLE_SDL=$(usex sdl) + -DENABLE_SDL=OFF # not supported: #666558 -DFASTLOG=$(usex log) -DOPROFILING=$(usex profile) -DUSE_DISCORD_PRESENCE=$(usex discord-presence)