Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-emulation/dolphin/
Date: Sat, 22 Sep 2018 17:04:46
Message-Id: 1537635870.239230b6fe0340b39e7e9cd51037eb826a009d74.slyfox@gentoo
1 commit: 239230b6fe0340b39e7e9cd51037eb826a009d74
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 22 16:34:15 2018 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 22 17:04:30 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=239230b6
7
8 games-emulation/dolphin: drop unsupported USE=sdl, bug #666558
9
10 As reported by Simon Levermann in https://bugs.gentoo.org/666558
11 SDL backend handles justicks weaker than default evdev and is
12 there only for *BSDs.
13
14 Reported-by: Simon Levermann
15 Bug: https://bugs.dolphin-emu.org/issues/11399
16 Bug: https://bugs.gentoo.org/666558
17 Package-Manager: Portage-2.3.49, Repoman-2.3.10
18
19 games-emulation/dolphin/dolphin-9999.ebuild | 5 ++---
20 1 file changed, 2 insertions(+), 3 deletions(-)
21
22 diff --git a/games-emulation/dolphin/dolphin-9999.ebuild b/games-emulation/dolphin/dolphin-9999.ebuild
23 index 811fc595d32..3294bace82d 100644
24 --- a/games-emulation/dolphin/dolphin-9999.ebuild
25 +++ b/games-emulation/dolphin/dolphin-9999.ebuild
26 @@ -22,7 +22,7 @@ HOMEPAGE="https://www.dolphin-emu.org/"
27
28 LICENSE="GPL-2"
29 SLOT="0"
30 -IUSE="alsa bluetooth discord-presence doc egl +evdev ffmpeg libav log lto profile pulseaudio +qt5 -sdl systemd upnp"
31 +IUSE="alsa bluetooth discord-presence doc egl +evdev ffmpeg libav log lto profile pulseaudio +qt5 systemd upnp"
32
33 RDEPEND="
34 dev-libs/hidapi:0=
35 @@ -58,7 +58,6 @@ RDEPEND="
36 dev-qt/qtgui:5
37 dev-qt/qtwidgets:5
38 )
39 - sdl? ( media-libs/libsdl2[haptic,joystick] )
40 systemd? ( sys-apps/systemd:0= )
41 upnp? ( net-libs/miniupnpc )
42 "
43 @@ -126,7 +125,7 @@ src_configure() {
44 -DENABLE_LTO=$(usex lto)
45 -DENABLE_PULSEAUDIO=$(usex pulseaudio)
46 -DENABLE_QT=$(usex qt5)
47 - -DENABLE_SDL=$(usex sdl)
48 + -DENABLE_SDL=OFF # not supported: #666558
49 -DFASTLOG=$(usex log)
50 -DOPROFILING=$(usex profile)
51 -DUSE_DISCORD_PRESENCE=$(usex discord-presence)