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 A7499138334 for ; Wed, 29 Aug 2018 12:38:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6E14FE0821; Wed, 29 Aug 2018 12:38:36 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 43042E0821 for ; Wed, 29 Aug 2018 12:38:36 +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 5547C340C35 for ; Wed, 29 Aug 2018 12:38:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 916823BA for ; Wed, 29 Aug 2018 12:38:32 +0000 (UTC) From: "Akinori Hattori" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Akinori Hattori" Message-ID: <1535546260.0874742eb8d913a08a32f040e1d418f32fe03bba.hattya@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/ibus-hangul/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-i18n/ibus-hangul/ibus-hangul-1.5.0-r1.ebuild app-i18n/ibus-hangul/ibus-hangul-1.5.1.ebuild X-VCS-Directories: app-i18n/ibus-hangul/ X-VCS-Committer: hattya X-VCS-Committer-Name: Akinori Hattori X-VCS-Revision: 0874742eb8d913a08a32f040e1d418f32fe03bba X-VCS-Branch: master Date: Wed, 29 Aug 2018 12:38:32 +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: d586f162-a508-4b38-831a-6f26986f9473 X-Archives-Hash: 4e2a03e2e0aa09f16a81761b4a5b4f1a commit: 0874742eb8d913a08a32f040e1d418f32fe03bba Author: Akinori Hattori gentoo org> AuthorDate: Wed Aug 29 12:37:40 2018 +0000 Commit: Akinori Hattori gentoo org> CommitDate: Wed Aug 29 12:37:40 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0874742e app-i18n/ibus-hangul: call gnome2_icon_cache_update Closes: https://bugs.gentoo.org/664794 Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-i18n/ibus-hangul/ibus-hangul-1.5.0-r1.ebuild | 10 +++++++++- app-i18n/ibus-hangul/ibus-hangul-1.5.1.ebuild | 10 +++++++++- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.5.0-r1.ebuild b/app-i18n/ibus-hangul/ibus-hangul-1.5.0-r1.ebuild index 2b33b5a4f3b..7b61f434638 100644 --- a/app-i18n/ibus-hangul/ibus-hangul-1.5.0-r1.ebuild +++ b/app-i18n/ibus-hangul/ibus-hangul-1.5.0-r1.ebuild @@ -4,7 +4,7 @@ EAPI="6" PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} ) -inherit python-single-r1 +inherit gnome2-utils python-single-r1 DESCRIPTION="Hangul engine for IBus" HOMEPAGE="https://github.com/libhangul/ibus-hangul/wiki" @@ -35,3 +35,11 @@ src_prepare() { src_configure() { econf $(use_enable nls) } + +pkg_postinst() { + gnome2_icon_cache_update +} + +pkg_postrm() { + gnome2_icon_cache_update +} diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.5.1.ebuild b/app-i18n/ibus-hangul/ibus-hangul-1.5.1.ebuild index 382fe19f799..0c0401cb2c0 100644 --- a/app-i18n/ibus-hangul/ibus-hangul-1.5.1.ebuild +++ b/app-i18n/ibus-hangul/ibus-hangul-1.5.1.ebuild @@ -4,7 +4,7 @@ EAPI="6" PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} ) -inherit python-single-r1 +inherit gnome2-utils python-single-r1 DESCRIPTION="Hangul engine for IBus" HOMEPAGE="https://github.com/libhangul/ibus-hangul/wiki" @@ -31,3 +31,11 @@ src_configure() { $(use_enable nls) \ --with-python=${EPYTHON} } + +pkg_postinst() { + gnome2_icon_cache_update +} + +pkg_postrm() { + gnome2_icon_cache_update +}