Gentoo Archives: gentoo-commits

From: Marek Szuba <marecki@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/zam-plugins/
Date: Mon, 19 Jul 2021 09:56:54
Message-Id: 1626688603.2a70223fc9ae8009b516d802d3867d007d199409.marecki@gentoo
1 commit: 2a70223fc9ae8009b516d802d3867d007d199409
2 Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 19 09:49:16 2021 +0000
4 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 19 09:56:43 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a70223f
7
8 media-plugins/zam-plugins: make USE=-opengl more thorough
9
10 It would appear that in order to fully disable UI support in DPF one
11 must explicitly ignore results of autodetection of ALL libraries
12 involved.
13
14 Closes: https://bugs.gentoo.org/802882
15 Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
16
17 media-plugins/zam-plugins/zam-plugins-3.14.ebuild | 6 ++++++
18 1 file changed, 6 insertions(+)
19
20 diff --git a/media-plugins/zam-plugins/zam-plugins-3.14.ebuild b/media-plugins/zam-plugins/zam-plugins-3.14.ebuild
21 index 90423a2f5c2..f3d77dcc5a7 100644
22 --- a/media-plugins/zam-plugins/zam-plugins-3.14.ebuild
23 +++ b/media-plugins/zam-plugins/zam-plugins-3.14.ebuild
24 @@ -46,7 +46,10 @@ src_compile() {
25 emake PREFIX=/usr LIBDIR=$(get_libdir) VERBOSE=true \
26 BASE_OPTS="" SKIP_STRIPPING=true \
27 HAVE_ZITA_CONVOLVER=true \
28 + HAVE_CAIRO=$(usex opengl true false) \
29 HAVE_DGL=$(usex opengl true false) \
30 + HAVE_OPENGL=$(usex opengl true false) \
31 + UI_TYPE=$(usex opengl "opengl" "none") \
32 HAVE_JACK=$(usex jack true false)
33 }
34
35 @@ -54,7 +57,10 @@ src_install() {
36 emake PREFIX=/usr LIBDIR=$(get_libdir) VERBOSE=true \
37 BASE_OPTS="" SKIP_STRIPPING=true \
38 HAVE_ZITA_CONVOLVER=true \
39 + HAVE_CAIRO=$(usex opengl true false) \
40 HAVE_DGL=$(usex opengl true false) \
41 + HAVE_OPENGL=$(usex opengl true false) \
42 + UI_TYPE=$(usex opengl "opengl" "none") \
43 HAVE_JACK=$(usex jack true false) \
44 DESTDIR="${ED}" install
45 }