Gentoo Archives: gentoo-commits

From: Ionen Wolkens <ionen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-kids/gmult/, games-kids/gmult/files/
Date: Mon, 28 Mar 2022 04:21:01
Message-Id: 1648441230.19102942b5d6049be39126e08436fd9e49dbc8e1.ionen@gentoo
1 commit: 19102942b5d6049be39126e08436fd9e49dbc8e1
2 Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
3 AuthorDate: Mon Mar 28 04:15:03 2022 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 28 04:20:30 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19102942
7
8 games-kids/gmult: fix build with meson-0.61.4
9
10 meson-0.61.4's gnome module now checks that gtk4-update-icon-cache is
11 available if updating cache is requested (was ignored with <=0.61.3),
12 simply skip given this should be handled by xdg.eclass either way.
13
14 Closes: https://bugs.gentoo.org/836294
15 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
16
17 games-kids/gmult/files/gmult-10.0-no-icon-cache.patch | 8 ++++++++
18 games-kids/gmult/gmult-10.0.ebuild | 4 ++++
19 2 files changed, 12 insertions(+)
20
21 diff --git a/games-kids/gmult/files/gmult-10.0-no-icon-cache.patch b/games-kids/gmult/files/gmult-10.0-no-icon-cache.patch
22 new file mode 100644
23 index 000000000000..2a355c17e228
24 --- /dev/null
25 +++ b/games-kids/gmult/files/gmult-10.0-no-icon-cache.patch
26 @@ -0,0 +1,8 @@
27 +https://bugs.gentoo.org/836294
28 +--- a/data/meson.build
29 ++++ b/data/meson.build
30 +@@ -56,3 +56,3 @@
31 + gnome.post_install(
32 +- gtk_update_icon_cache: true,
33 ++ gtk_update_icon_cache: false,
34 + )
35
36 diff --git a/games-kids/gmult/gmult-10.0.ebuild b/games-kids/gmult/gmult-10.0.ebuild
37 index 6df28b33de33..b0c8fcd25418 100644
38 --- a/games-kids/gmult/gmult-10.0.ebuild
39 +++ b/games-kids/gmult/gmult-10.0.ebuild
40 @@ -26,6 +26,10 @@ BDEPEND="
41 $(vala_depend)
42 sys-devel/gettext"
43
44 +PATCHES=(
45 + "${FILESDIR}"/${PN}-10.0-no-icon-cache.patch
46 +)
47 +
48 DOCS=( NEWS.md README.md )
49
50 src_configure() {