diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2018-09-22 17:34:15 +0100 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2018-09-22 18:04:30 +0100 |
commit | 239230b6fe0340b39e7e9cd51037eb826a009d74 (patch) | |
tree | f588f45799048e7c5e1b177354f168c322f715af /games-emulation | |
parent | sys-apps/openrc: Stable 0.38.2 on amd64 for bug #658854 (diff) | |
download | gentoo-239230b6fe0340b39e7e9cd51037eb826a009d74.tar.gz gentoo-239230b6fe0340b39e7e9cd51037eb826a009d74.tar.bz2 gentoo-239230b6fe0340b39e7e9cd51037eb826a009d74.zip |
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
Diffstat (limited to 'games-emulation')
-rw-r--r-- | games-emulation/dolphin/dolphin-9999.ebuild | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/games-emulation/dolphin/dolphin-9999.ebuild b/games-emulation/dolphin/dolphin-9999.ebuild index 811fc595d328..3294bace82d7 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) |