Gentoo Archives: gentoo-commits

From: James Le Cuirot <chewi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/icedtea/
Date: Sun, 08 Apr 2018 19:01:33
Message-Id: 1523213923.22d446c7db40bd6ab8ab60d497e90b88b6c5f55f.chewi@gentoo
1 commit: 22d446c7db40bd6ab8ab60d497e90b88b6c5f55f
2 Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 8 18:58:43 2018 +0000
4 Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 8 18:58:43 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22d446c7
7
8 dev-java/icedtea: Don't forget to call the java-vm-2 post functions
9
10 Package-Manager: Portage-2.3.28, Repoman-2.3.9
11
12 dev-java/icedtea/icedtea-3.7.0.ebuild | 11 +++++++++--
13 1 file changed, 9 insertions(+), 2 deletions(-)
14
15 diff --git a/dev-java/icedtea/icedtea-3.7.0.ebuild b/dev-java/icedtea/icedtea-3.7.0.ebuild
16 index c5d033539c7..f65c310d3fa 100644
17 --- a/dev-java/icedtea/icedtea-3.7.0.ebuild
18 +++ b/dev-java/icedtea/icedtea-3.7.0.ebuild
19 @@ -421,5 +421,12 @@ pkg_preinst() {
20 gnome2_icon_savelist
21 }
22
23 -pkg_postinst() { gnome2_icon_cache_update; }
24 -pkg_postrm() { gnome2_icon_cache_update; }
25 +pkg_postinst() {
26 + gnome2_icon_cache_update
27 + java-vm-2_pkg_postinst
28 +}
29 +
30 +pkg_postrm() {
31 + gnome2_icon_cache_update
32 + java-vm-2_pkg_postrm
33 +}