games-emulation/dolphin: unconditionally disable llvm, bug #594940
authorSergei Trofimovich <slyfox@gentoo.org>
Sat, 28 Jul 2018 17:25:14 +0000 (18:25 +0100)
committerSergei Trofimovich <slyfox@gentoo.org>
Sat, 28 Jul 2018 17:25:28 +0000 (18:25 +0100)
llvm is used only for debug disassembly and is not detected
by cmake scripts for various reasons.

Let's sort llvm detection upstream first and restore downstream later.

Reported-by: Michał Górny
Closes: https://bugs.gentoo.org/594940
Package-Manager: Portage-2.3.43, Repoman-2.3.10

games-emulation/dolphin/dolphin-5.0.ebuild
games-emulation/dolphin/dolphin-9999.ebuild
games-emulation/dolphin/metadata.xml

index 908b571cf426cabbe04ae804b8e2ca6a1e72b253..491d92991befabdcfa906067e38b3e561f740f6b 100644 (file)
@@ -17,7 +17,9 @@ HOMEPAGE="https://www.dolphin-emu.org/"
 
 LICENSE="GPL-2"
 SLOT="0"
-IUSE="alsa ao bluetooth doc egl +evdev ffmpeg libav llvm log lto openal +pch portaudio profile pulseaudio qt5 sdl upnp +wxwidgets"
+IUSE="alsa ao bluetooth doc egl +evdev ffmpeg libav log lto openal +pch portaudio profile pulseaudio qt5 sdl upnp +wxwidgets"
+
+RESTRICT=test
 
 RDEPEND="
        >=media-libs/libsfml-2.1
@@ -44,7 +46,6 @@ RDEPEND="
                libav? ( media-video/libav:= )
                !libav? ( media-video/ffmpeg:= )
        )
-       llvm? ( sys-devel/llvm:* )
        openal? (
                media-libs/openal
                media-libs/libsoundtouch
@@ -89,9 +90,10 @@ src_prepare() {
        if use !bluetooth; then
                sed -i -e '/check_lib(BLUEZ/d' CMakeLists.txt || die
        fi
-       if use !llvm; then
-               sed -i -e '/include(FindLLVM/d' CMakeLists.txt || die
-       fi
+
+       # Unconditionally disable LLVM disassembler.
+       sed -i -e '/include(FindLLVM/d' CMakeLists.txt || die
+
        if use !openal; then
                sed -i -e '/include(FindOpenAL/d' CMakeLists.txt || die
        fi
index de76dd90ee6bbf895e69bc929242e189284c5b3d..b8b2dd91a85897b5e3bbabd56a340f74acace25e 100644 (file)
@@ -22,7 +22,7 @@ HOMEPAGE="https://www.dolphin-emu.org/"
 
 LICENSE="GPL-2"
 SLOT="0"
-IUSE="alsa ao bluetooth discord-presence doc egl +evdev ffmpeg libav llvm log lto openal portaudio profile pulseaudio +qt5 sdl systemd upnp"
+IUSE="alsa ao bluetooth discord-presence doc egl +evdev ffmpeg libav log lto openal portaudio profile pulseaudio +qt5 sdl systemd upnp"
 
 RDEPEND="
        >=media-libs/libsfml-2.1
@@ -52,7 +52,6 @@ RDEPEND="
                libav? ( media-video/libav:= )
                !libav? ( media-video/ffmpeg:= )
        )
-       llvm? ( sys-devel/llvm:* )
        openal? (
                media-libs/openal
                media-libs/libsoundtouch
@@ -89,9 +88,6 @@ src_prepare() {
        if use !bluetooth; then
                sed -i -e '/check_lib(BLUEZ/d' CMakeLists.txt || die
        fi
-       if use !llvm; then
-               sed -i -e '/include(FindLLVM/d' CMakeLists.txt || die
-       fi
        if use !openal; then
                sed -i -e '/include(FindOpenAL/d' CMakeLists.txt || die
        fi
@@ -152,6 +148,7 @@ src_configure() {
                -DOPROFILING=$(usex profile)
 
                -DENABLE_EVDEV=$(usex evdev)
+               -DENABLE_LLVM=OFF
                -DENABLE_LTO=$(usex lto)
                -DENABLE_QT=$(usex qt5)
                -DENABLE_SDL=$(usex sdl)
index 5a7e53ca6e42bf58d158e89154af25a4955112c8..34a2a16ae8ed7ecf7ff3be99686ce344e86e9f41 100644 (file)
@@ -8,7 +8,6 @@
                <flag name="discord-presence">Enables Discord Rich Presence, show the current game on Discord</flag>
                <flag name="egl">Enable EGL support</flag>
                <flag name="evdev">Enable evdev input support</flag>
-               <flag name="llvm">Enable the LLVM-based disassembler for debugger mode</flag>
                <flag name="log">Increase logging output</flag>
                <flag name="lto">Add support for link-time optimizations.</flag>
        </use>