From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 77CCF138335 for ; Fri, 13 Jul 2018 21:54:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 40652E08D1; Fri, 13 Jul 2018 21:54:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 13768E08D1 for ; Fri, 13 Jul 2018 21:54:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3C4F4335C9B for ; Fri, 13 Jul 2018 21:54:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BC38736B for ; Fri, 13 Jul 2018 21:54:03 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1531518835.c7561f991b8910d4c831b3bfb2292984a4c5ec48.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfce4-mount-plugin/ X-VCS-Repository: repo/gentoo X-VCS-Files: xfce-extra/xfce4-mount-plugin/xfce4-mount-plugin-1.1.3.ebuild X-VCS-Directories: xfce-extra/xfce4-mount-plugin/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c7561f991b8910d4c831b3bfb2292984a4c5ec48 X-VCS-Branch: master Date: Fri, 13 Jul 2018 21:54:03 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 07d1fa35-df60-4d61-ae6f-3d16fef8d47b X-Archives-Hash: 4ad19d6a81698f3698d14f9962332038 commit: c7561f991b8910d4c831b3bfb2292984a4c5ec48 Author: Michał Górny gentoo org> AuthorDate: Fri Jul 13 21:49:22 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Jul 13 21:53:55 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7561f99 xfce-extra/xfce4-mount-plugin: Add updating icon cache xfce-extra/xfce4-mount-plugin/xfce4-mount-plugin-1.1.3.ebuild | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/xfce-extra/xfce4-mount-plugin/xfce4-mount-plugin-1.1.3.ebuild b/xfce-extra/xfce4-mount-plugin/xfce4-mount-plugin-1.1.3.ebuild index de100e9e7f0..9e6b4f45b09 100644 --- a/xfce-extra/xfce4-mount-plugin/xfce4-mount-plugin-1.1.3.ebuild +++ b/xfce-extra/xfce4-mount-plugin/xfce4-mount-plugin-1.1.3.ebuild @@ -3,6 +3,8 @@ EAPI=6 +inherit gnome2-utils + DESCRIPTION="An mount plug-in for the Xfce panel" HOMEPAGE="https://goodies.xfce.org/projects/panel-plugins/xfce4-mount-plugin" SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2" @@ -23,3 +25,11 @@ src_install() { default find "${D}" -name '*.la' -delete || die } + +pkg_postinst() { + gnome2_icon_cache_update +} + +pkg_postrm() { + gnome2_icon_cache_update +}