diff options
author | Marty E. Plummer <hanetzer@startmail.com> | 2019-01-01 16:19:13 -0600 |
---|---|---|
committer | Mart Raudsepp <leio@gentoo.org> | 2019-02-11 19:13:56 +0200 |
commit | 0d3868010666fe2ce95c307028b42d401da73d67 (patch) | |
tree | 1e2f6d6789a951fdc5c2e5e9c8ebfd17fc7bf460 /eclass/gnome2.eclass | |
parent | gnome2-utils: move icon functions into xdg-utils (diff) | |
download | gentoo-0d3868010666fe2ce95c307028b42d401da73d67.tar.gz gentoo-0d3868010666fe2ce95c307028b42d401da73d67.tar.bz2 gentoo-0d3868010666fe2ce95c307028b42d401da73d67.zip |
gnome2.eclass: move icon handling code to xdg.eclass
Package-Manager: Portage-2.3.51, Repoman 2.3.11
Signed-off-by: Marty E. Plummer <hanetzer@startmail.com>
Signed-off-by: Mart Raudsepp <leio@gentoo.org>
Diffstat (limited to 'eclass/gnome2.eclass')
-rw-r--r-- | eclass/gnome2.eclass | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/eclass/gnome2.eclass b/eclass/gnome2.eclass index f741a041c27a..d19bd0b9ac69 100644 --- a/eclass/gnome2.eclass +++ b/eclass/gnome2.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: gnome2.eclass @@ -316,7 +316,6 @@ gnome2_src_install() { gnome2_pkg_preinst() { xdg_pkg_preinst gnome2_gconf_savelist - gnome2_icon_savelist gnome2_schemas_savelist gnome2_scrollkeeper_savelist gnome2_gdk_pixbuf_savelist @@ -338,9 +337,6 @@ gnome2_pkg_preinst() { gnome2_pkg_postinst() { xdg_pkg_postinst gnome2_gconf_install - if [[ -n ${GNOME2_ECLASS_ICONS} ]]; then - gnome2_icon_cache_update - fi if [[ -n ${GNOME2_ECLASS_GLIB_SCHEMAS} ]]; then gnome2_schemas_update fi @@ -362,9 +358,6 @@ gnome2_pkg_postinst() { # Handle scrollkeeper, GSettings, Icons, desktop and mime database updates. gnome2_pkg_postrm() { xdg_pkg_postrm - if [[ -n ${GNOME2_ECLASS_ICONS} ]]; then - gnome2_icon_cache_update - fi if [[ -n ${GNOME2_ECLASS_GLIB_SCHEMAS} ]]; then gnome2_schemas_update fi |