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 25EAF1396D0 for ; Sat, 9 Sep 2017 12:17:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5D7B91FC074; Sat, 9 Sep 2017 12:17:09 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 3A5241FC074 for ; Sat, 9 Sep 2017 12:17:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 DD7BA33C770 for ; Sat, 9 Sep 2017 12:17:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 50DD79063 for ; Sat, 9 Sep 2017 12:17:06 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1504959414.1366e05bec2732e7a69a747e4bb2ea006ff3d2b3.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/cmake/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/cmake/cmake-3.9.2.ebuild X-VCS-Directories: dev-util/cmake/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 1366e05bec2732e7a69a747e4bb2ea006ff3d2b3 X-VCS-Branch: master Date: Sat, 9 Sep 2017 12:17:06 +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: 856bbf82-f9fa-4f67-a23a-612c27892bab X-Archives-Hash: 9c50f5c7645dd6bc690b9b87bc089b22 commit: 1366e05bec2732e7a69a747e4bb2ea006ff3d2b3 Author: Michael Palimaka gentoo org> AuthorDate: Sat Sep 9 12:16:22 2017 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Sat Sep 9 12:16:54 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1366e05b dev-util/cmake: update icon/desktop mime/mimeinfo caches Closes: https://bugs.gentoo.org/630462 Package-Manager: Portage-2.3.6, Repoman-2.3.3 dev-util/cmake/cmake-3.9.2.ebuild | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/dev-util/cmake/cmake-3.9.2.ebuild b/dev-util/cmake/cmake-3.9.2.ebuild index 5aa69e31bfc..768050931d4 100644 --- a/dev-util/cmake/cmake-3.9.2.ebuild +++ b/dev-util/cmake/cmake-3.9.2.ebuild @@ -5,7 +5,7 @@ EAPI=6 CMAKE_MAKEFILE_GENERATOR="emake" CMAKE_REMOVE_MODULES="no" -inherit bash-completion-r1 elisp-common toolchain-funcs eutils versionator cmake-utils virtualx flag-o-matic +inherit bash-completion-r1 elisp-common eutils flag-o-matic gnome2-utils toolchain-funcs versionator virtualx xdg-utils cmake-utils MY_P="${P/_/-}" @@ -198,8 +198,18 @@ src_install() { pkg_postinst() { use emacs && elisp-site-regen + if use qt5; then + gnome2_icon_cache_update + xdg_desktop_database_update + xdg_mimeinfo_database_update + fi } pkg_postrm() { use emacs && elisp-site-regen + if use qt5; then + gnome2_icon_cache_update + xdg_desktop_database_update + xdg_mimeinfo_database_update + fi }