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: Mon, 03 Sep 2018 19:13:16
Message-Id: 1536001982.b019d1acd2401caea4a9566ecbca8391e763d613.slyfox@gentoo
1 commit: b019d1acd2401caea4a9566ecbca8391e763d613
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 3 19:11:03 2018 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 3 19:13:02 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b019d1ac
7
8 games-emulation/dolphin: sort mycmakeargs alphabetically
9
10 Patch by Samuel Bauer.
11
12 Bug: https://bugs.gentoo.org/561914
13 Package-Manager: Portage-2.3.48, Repoman-2.3.10
14
15 games-emulation/dolphin/dolphin-9999.ebuild | 25 +++++++++++--------------
16 1 file changed, 11 insertions(+), 14 deletions(-)
17
18 diff --git a/games-emulation/dolphin/dolphin-9999.ebuild b/games-emulation/dolphin/dolphin-9999.ebuild
19 index 2d4a8a1079c..b22a98646b7 100644
20 --- a/games-emulation/dolphin/dolphin-9999.ebuild
21 +++ b/games-emulation/dolphin/dolphin-9999.ebuild
22 @@ -115,27 +115,24 @@ src_prepare() {
23
24 src_configure() {
25 local mycmakeargs=(
26 - -DUSE_SHARED_ENET=ON
27 - -DUSE_DISCORD_PRESENCE=$(usex discord-presence)
28 - -DENCODE_FRAMEDUMPS=$(usex ffmpeg)
29 - -DFASTLOG=$(usex log)
30 - -DOPROFILING=$(usex profile)
31 -
32 + # Use ccache only when user did set FEATURES=ccache (or similar)
33 + # not when ccache binary is present in system (automagic).
34 + -DCCACHE_BIN=CCACHE_BIN-NOTFOUND
35 + -DENABLE_ALSA=$(usex alsa)
36 + -DENABLE_BLUEZ=$(usex bluetooth)
37 -DENABLE_EVDEV=$(usex evdev)
38 + -DENCODE_FRAMEDUMPS=$(usex ffmpeg)
39 -DENABLE_LLVM=OFF
40 -DENABLE_LTO=$(usex lto)
41 + -DENABLE_PULSEAUDIO=$(usex pulseaudio)
42 -DENABLE_QT=$(usex qt5)
43 -DENABLE_SDL=$(usex sdl)
44 -
45 + -DFASTLOG=$(usex log)
46 + -DOPROFILING=$(usex profile)
47 + -DUSE_DISCORD_PRESENCE=$(usex discord-presence)
48 -DUSE_EGL=$(usex egl)
49 + -DUSE_SHARED_ENET=ON
50 -DUSE_UPNP=$(usex upnp)
51 -
52 - -DENABLE_ALSA=$(usex alsa)
53 - -DENABLE_BLUEZ=$(usex bluetooth)
54 - # Use ccache only when user did set FEATURES=ccache (or similar)
55 - # not when ccache binary is present in system (automagic).
56 - -DCCACHE_BIN=CCACHE_BIN-NOTFOUND
57 - -DENABLE_PULSEAUDIO=$(usex pulseaudio)
58 )
59
60 cmake-utils_src_configure