Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gui-libs/gtk/
Date: Sat, 11 Sep 2021 13:16:02
Message-Id: 1631366052.2491ef999d22a19b61a466c5d8df8542eb516435.leio@gentoo
1 commit: 2491ef999d22a19b61a466c5d8df8542eb516435
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 11 13:13:56 2021 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 11 13:14:12 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2491ef99
7
8 gui-libs/gtk: fix missing icon cache update with USE=examples
9
10 xdg.eclass was already used, but the phases were overridden without
11 chaining up to them for the eclass to just take care of it with
12 the code that automatically checks if any icons are installed.
13
14 Package-Manager: Portage-3.0.20, Repoman-3.0.2
15 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
16
17 gui-libs/gtk/gtk-4.4.0.ebuild | 3 +++
18 1 file changed, 3 insertions(+)
19
20 diff --git a/gui-libs/gtk/gtk-4.4.0.ebuild b/gui-libs/gtk/gtk-4.4.0.ebuild
21 index f0a65fdf2fe..aaac1d34fc3 100644
22 --- a/gui-libs/gtk/gtk-4.4.0.ebuild
23 +++ b/gui-libs/gtk/gtk-4.4.0.ebuild
24 @@ -176,10 +176,12 @@ src_install() {
25 }
26
27 pkg_preinst() {
28 + xdg_pkg_preinst
29 gnome2_schemas_savelist
30 }
31
32 pkg_postinst() {
33 + xdg_pkg_postinst
34 gnome2_schemas_update
35
36 if ! has_version "app-text/evince"; then
37 @@ -190,5 +192,6 @@ pkg_postinst() {
38 }
39
40 pkg_postrm() {
41 + xdg_pkg_postrm
42 gnome2_schemas_update
43 }