commit: 2491ef999d22a19b61a466c5d8df8542eb516435
Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 11 13:13:56 2021 +0000
Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Sat Sep 11 13:14:12 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2491ef99
gui-libs/gtk: fix missing icon cache update with USE=examples
xdg.eclass was already used, but the phases were overridden without
chaining up to them for the eclass to just take care of it with
the code that automatically checks if any icons are installed.
Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
gui-libs/gtk/gtk-4.4.0.ebuild | 3 +++
1 file changed, 3 insertions(+)
diff --git a/gui-libs/gtk/gtk-4.4.0.ebuild b/gui-libs/gtk/gtk-4.4.0.ebuild
index f0a65fdf2fe..aaac1d34fc3 100644
--- a/gui-libs/gtk/gtk-4.4.0.ebuild
+++ b/gui-libs/gtk/gtk-4.4.0.ebuild
@@ -176,10 +176,12 @@ src_install() {
}
pkg_preinst() {
+ xdg_pkg_preinst
gnome2_schemas_savelist
}
pkg_postinst() {
+ xdg_pkg_postinst
gnome2_schemas_update
if ! has_version "app-text/evince"; then
@@ -190,5 +192,6 @@ pkg_postinst() {
}
pkg_postrm() {
+ xdg_pkg_postrm
gnome2_schemas_update
}