summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2022-02-08 08:18:13 +0100
committerLars Wendler <polynomial-c@gentoo.org>2022-02-08 08:57:03 +0100
commit6b043712b57faf0969f105d53b7683f8d827a532 (patch)
tree6b5ba8cd78492b31f429a7babf4fe09fc291fb01
parentsci-mathematics/cvc4: remove unused CMake variables (diff)
downloadgentoo-6b043712b57faf0969f105d53b7683f8d827a532.tar.gz
gentoo-6b043712b57faf0969f105d53b7683f8d827a532.tar.bz2
gentoo-6b043712b57faf0969f105d53b7683f8d827a532.zip
media-sound/mumble: Fix compilation with live ebuild
Closes: https://bugs.gentoo.org/832869 Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
-rw-r--r--media-sound/mumble/mumble-9999.ebuild7
1 files changed, 5 insertions, 2 deletions
diff --git a/media-sound/mumble/mumble-9999.ebuild b/media-sound/mumble/mumble-9999.ebuild
index 183ef2b659e8..0f0d04d692c3 100644
--- a/media-sound/mumble/mumble-9999.ebuild
+++ b/media-sound/mumble/mumble-9999.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://wiki.mumble.info"
if [[ "${PV}" == 9999 ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/mumble-voip/mumble.git"
- EGIT_SUBMODULES=( '-*' celt-0.7.0-src celt-0.11.0-src themes/Mumble 3rdparty/rnnoise-src 3rdparty/FindPythonInterpreter )
+ EGIT_SUBMODULES=( '-*' celt-0.7.0-src celt-0.11.0-src themes/Mumble 3rdparty/rnnoise-src 3rdparty/FindPythonInterpreter 3rdparty/tracy )
else
if [[ "${PV}" == *_pre* ]] ; then
SRC_URI="https://dev.gentoo.org/~polynomial-c/dist/${P}.tar.xz"
@@ -68,6 +68,8 @@ BDEPEND="
"
src_prepare() {
+ sed '/TRACY_ON_DEMAND/s@ ON @ OFF @' -i src/CMakeLists.txt || die
+
# required because of xdg.eclass also providing src_prepare
cmake_src_prepare
}
@@ -76,7 +78,6 @@ src_configure() {
local mycmakeargs=(
-Dalsa="$(usex alsa)"
- -Dtests="$(usex test)"
-Dbundled-celt="ON"
-Dbundled-opus="OFF"
-Dbundled-speex="OFF"
@@ -91,6 +92,8 @@ src_configure() {
-Drnnoise="$(usex rnnoise)"
-Dserver="OFF"
-Dspeechd="$(usex speech)"
+ -Dtests="$(usex test)"
+ -Dtracy="OFF"
-Dtranslations="$(usex nls)"
-Dupdate="OFF"
-Dwarnings-as-errors="OFF"