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 2BD791382C5 for ; Sun, 8 Apr 2018 19:01:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 03F06E0AB0; Sun, 8 Apr 2018 19:01:32 +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 D8C6BE0AB0 for ; Sun, 8 Apr 2018 19:01:31 +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 9238B335C49 for ; Sun, 8 Apr 2018 19:01:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7A05B26D for ; Sun, 8 Apr 2018 19:01:28 +0000 (UTC) From: "James Le Cuirot" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "James Le Cuirot" Message-ID: <1523213923.22d446c7db40bd6ab8ab60d497e90b88b6c5f55f.chewi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/icedtea/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/icedtea/icedtea-3.7.0.ebuild X-VCS-Directories: dev-java/icedtea/ X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: 22d446c7db40bd6ab8ab60d497e90b88b6c5f55f X-VCS-Branch: master Date: Sun, 8 Apr 2018 19:01:28 +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: 3698b96c-1b4e-435e-9c4f-a47918b2e995 X-Archives-Hash: ec334b68499bae96528bef1a8d720ee0 commit: 22d446c7db40bd6ab8ab60d497e90b88b6c5f55f Author: James Le Cuirot gentoo org> AuthorDate: Sun Apr 8 18:58:43 2018 +0000 Commit: James Le Cuirot gentoo org> CommitDate: Sun Apr 8 18:58:43 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22d446c7 dev-java/icedtea: Don't forget to call the java-vm-2 post functions Package-Manager: Portage-2.3.28, Repoman-2.3.9 dev-java/icedtea/icedtea-3.7.0.ebuild | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/dev-java/icedtea/icedtea-3.7.0.ebuild b/dev-java/icedtea/icedtea-3.7.0.ebuild index c5d033539c7..f65c310d3fa 100644 --- a/dev-java/icedtea/icedtea-3.7.0.ebuild +++ b/dev-java/icedtea/icedtea-3.7.0.ebuild @@ -421,5 +421,12 @@ pkg_preinst() { gnome2_icon_savelist } -pkg_postinst() { gnome2_icon_cache_update; } -pkg_postrm() { gnome2_icon_cache_update; } +pkg_postinst() { + gnome2_icon_cache_update + java-vm-2_pkg_postinst +} + +pkg_postrm() { + gnome2_icon_cache_update + java-vm-2_pkg_postrm +}