diff options
author | Mart Raudsepp <leio@gentoo.org> | 2019-03-02 15:20:12 +0200 |
---|---|---|
committer | Mart Raudsepp <leio@gentoo.org> | 2019-03-02 16:27:30 +0200 |
commit | bfe362090d670f94ca20047888d579cae9c2cb7d (patch) | |
tree | a0abb857bf07cc2b3d48ee22547ba9e3e24a9c94 /gnome-base/gnome-session | |
parent | gnome-base/gnome-keyring: fix gettext minimum dep (diff) | |
download | gentoo-bfe362090d670f94ca20047888d579cae9c2cb7d.tar.gz gentoo-bfe362090d670f94ca20047888d579cae9c2cb7d.tar.bz2 gentoo-bfe362090d670f94ca20047888d579cae9c2cb7d.zip |
gnome-base/gnome-session-3.28: add missed gnome2_schemas_update calls
No revbump as any other gtk package install/upgrade will fix it up too,
and a gnome-session-3.30 bump isn't far out either.
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Mart Raudsepp <leio@gentoo.org>
Diffstat (limited to 'gnome-base/gnome-session')
-rw-r--r-- | gnome-base/gnome-session/gnome-session-3.28.1.ebuild | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gnome-base/gnome-session/gnome-session-3.28.1.ebuild b/gnome-base/gnome-session/gnome-session-3.28.1.ebuild index dd524fae1e3e..8674fec66da3 100644 --- a/gnome-base/gnome-session/gnome-session-3.28.1.ebuild +++ b/gnome-base/gnome-session/gnome-session-3.28.1.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=6 -inherit gnome.org meson xdg +inherit gnome.org gnome2-utils meson xdg DESCRIPTION="Gnome session manager" HOMEPAGE="https://gitlab.gnome.org/GNOME/gnome-session" @@ -101,6 +101,7 @@ src_install() { pkg_postinst() { xdg_pkg_postinst + gnome2_schemas_update if ! has_version gnome-base/gdm && ! has_version x11-misc/sddm; then ewarn "If you use a custom .xinitrc for your X session," @@ -112,3 +113,8 @@ pkg_postinst() { ewarn "gnome-session won't be able to correctly track and manage your session." fi } + +pkg_postrm() { + xdg_pkg_postinst + gnome2_schemas_update +} |