diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2016-01-02 15:13:10 +0100 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2016-01-02 16:41:06 +0100 |
commit | cd6b8969ec32e11c022b759c13885fee15ae5005 (patch) | |
tree | 3185d47047b9a16b6dced09b89b779121567564b /eclass | |
parent | gnome2-utils.eclass: add gnome2_giomodule_cache_update function, bug #518422 (diff) | |
download | gentoo-cd6b8969ec32e11c022b759c13885fee15ae5005.tar.gz gentoo-cd6b8969ec32e11c022b759c13885fee15ae5005.tar.bz2 gentoo-cd6b8969ec32e11c022b759c13885fee15ae5005.zip |
gnome2.eclass: make use of gnome2_giomodule_cache_update, bug #518422
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/gnome2.eclass | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/eclass/gnome2.eclass b/eclass/gnome2.eclass index 000b3d65d45c..55441b9880d6 100644 --- a/eclass/gnome2.eclass +++ b/eclass/gnome2.eclass @@ -57,6 +57,10 @@ ELTCONF=${ELTCONF:-""} # to handle it properly. It will enable minimal debug with USE=-debug. # Note that this is most commonly found in configure.ac as GNOME_DEBUG_CHECK. +# @ECLASS-VARIABLE: GNOME2_ECLASS_GIO_MODULES +# @INTERNAL +# @DESCRIPTION: +# Array containing glib GIO modules if [[ ${GCONF_DEBUG} != "no" ]]; then IUSE="debug" @@ -241,6 +245,15 @@ gnome2_pkg_preinst() { gnome2_schemas_savelist gnome2_scrollkeeper_savelist gnome2_gdk_pixbuf_savelist + + local f + + GNOME2_ECLASS_GIO_MODULES=() + while IFS= read -r -d '' f; do + GNOME2_ECLASS_GIO_MODULES+=( ${f} ) + done < <(cd "${D}" && find usr/$(get_libdir)/gio/modules -type f -print0 2>/dev/null) + + export GNOME2_ECLASS_GIO_MODULES } # @FUNCTION: gnome2_pkg_postinst @@ -254,6 +267,10 @@ gnome2_pkg_postinst() { gnome2_schemas_update gnome2_scrollkeeper_update gnome2_gdk_pixbuf_update + + if [[ ${#GNOME2_ECLASS_GIO_MODULES[@]} -gt 0 ]]; then + gnome2_giomodule_cache_update + fi } # # FIXME Handle GConf schemas removal @@ -269,4 +286,8 @@ gnome2_pkg_postrm() { gnome2_icon_cache_update gnome2_schemas_update gnome2_scrollkeeper_update + + if [[ ${#GNOME2_ECLASS_GIO_MODULES[@]} -gt 0 ]]; then + gnome2_giomodule_cache_update + fi } |