Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/cogl/
Date: Sun, 17 Nov 2019 17:51:55
Message-Id: 1574013081.fc115d74f4ef6895c0ae06c65ff1cd11b9981592.leio@gentoo
1 commit: fc115d74f4ef6895c0ae06c65ff1cd11b9981592
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 17 17:50:53 2019 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 17 17:51:21 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc115d74
7
8 media-libs/cogl: add missing mesa[egl] dep for USE=kms
9
10 If any EGL platform is enabled, it requires the EGL headers.
11 This includes kms-egl-platform, which also sets NEED_EGL in
12 configure.ac.
13 Remove rm -f option usage while here (it makes the `|| die`
14 useless and makes us not notice once this call isn't necessary
15 anymore).
16
17 Closes: https://bugs.gentoo.org/613728
18 Package-Manager: Portage-2.3.69, Repoman-2.3.12
19 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
20
21 media-libs/cogl/cogl-1.22.4.ebuild | 4 ++--
22 1 file changed, 2 insertions(+), 2 deletions(-)
23
24 diff --git a/media-libs/cogl/cogl-1.22.4.ebuild b/media-libs/cogl/cogl-1.22.4.ebuild
25 index 2191b69cd4a..12bd445b80f 100644
26 --- a/media-libs/cogl/cogl-1.22.4.ebuild
27 +++ b/media-libs/cogl/cogl-1.22.4.ebuild
28 @@ -36,7 +36,7 @@ COMMON_DEPEND="
29 media-libs/gst-plugins-base:1.0 )
30 introspection? ( >=dev-libs/gobject-introspection-1.34.2:= )
31 kms? (
32 - media-libs/mesa[gbm]
33 + media-libs/mesa[egl,gbm]
34 x11-libs/libdrm:= )
35 pango? ( >=x11-libs/pango-1.20.0[introspection?] )
36 wayland? (
37 @@ -114,5 +114,5 @@ src_install() {
38 gnome2_src_install
39
40 # Remove silly examples-data directory
41 - rm -rvf "${ED}/usr/share/cogl/examples-data/" || die
42 + rm -rv "${ED}/usr/share/cogl/examples-data/" || die
43 }