commit:     b019d1acd2401caea4a9566ecbca8391e763d613
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Mon Sep  3 19:11:03 2018 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Mon Sep  3 19:13:02 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b019d1ac

games-emulation/dolphin: sort mycmakeargs alphabetically

Patch by  Samuel Bauer.

Bug: https://bugs.gentoo.org/561914
Package-Manager: Portage-2.3.48, Repoman-2.3.10

 games-emulation/dolphin/dolphin-9999.ebuild | 25 +++++++++++--------------
 1 file changed, 11 insertions(+), 14 deletions(-)

diff --git a/games-emulation/dolphin/dolphin-9999.ebuild 
b/games-emulation/dolphin/dolphin-9999.ebuild
index 2d4a8a1079c..b22a98646b7 100644
--- a/games-emulation/dolphin/dolphin-9999.ebuild
+++ b/games-emulation/dolphin/dolphin-9999.ebuild
@@ -115,27 +115,24 @@ src_prepare() {
 
 src_configure() {
        local mycmakeargs=(
-               -DUSE_SHARED_ENET=ON
-               -DUSE_DISCORD_PRESENCE=$(usex discord-presence)
-               -DENCODE_FRAMEDUMPS=$(usex ffmpeg)
-               -DFASTLOG=$(usex log)
-               -DOPROFILING=$(usex profile)
-
+               # Use ccache only when user did set FEATURES=ccache (or similar)
+               # not when ccache binary is present in system (automagic).
+               -DCCACHE_BIN=CCACHE_BIN-NOTFOUND
+               -DENABLE_ALSA=$(usex alsa)
+               -DENABLE_BLUEZ=$(usex bluetooth)
                -DENABLE_EVDEV=$(usex evdev)
+               -DENCODE_FRAMEDUMPS=$(usex ffmpeg)
                -DENABLE_LLVM=OFF
                -DENABLE_LTO=$(usex lto)
+               -DENABLE_PULSEAUDIO=$(usex pulseaudio)
                -DENABLE_QT=$(usex qt5)
                -DENABLE_SDL=$(usex sdl)
-
+               -DFASTLOG=$(usex log)
+               -DOPROFILING=$(usex profile)
+               -DUSE_DISCORD_PRESENCE=$(usex discord-presence)
                -DUSE_EGL=$(usex egl)
+               -DUSE_SHARED_ENET=ON
                -DUSE_UPNP=$(usex upnp)
-
-               -DENABLE_ALSA=$(usex alsa)
-               -DENABLE_BLUEZ=$(usex bluetooth)
-               # Use ccache only when user did set FEATURES=ccache (or similar)
-               # not when ccache binary is present in system (automagic).
-               -DCCACHE_BIN=CCACHE_BIN-NOTFOUND
-               -DENABLE_PULSEAUDIO=$(usex pulseaudio)
        )
 
        cmake-utils_src_configure

Reply via email to