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 20993138334 for ; Mon, 27 Aug 2018 21:23:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4EFA1E086E; Mon, 27 Aug 2018 21:23:39 +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 29B8AE086B for ; Mon, 27 Aug 2018 21:23:39 +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 CC1B1335CCC for ; Mon, 27 Aug 2018 21:23:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D30813C0 for ; Mon, 27 Aug 2018 21:23:34 +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: <1535404982.af520e35560e761d31f6988e8a28b65cefcb291e.chewi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-arcade/opentyrian/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-arcade/opentyrian/opentyrian-2.1.20130907-r1.ebuild X-VCS-Directories: games-arcade/opentyrian/ X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: af520e35560e761d31f6988e8a28b65cefcb291e X-VCS-Branch: master Date: Mon, 27 Aug 2018 21:23:34 +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: 200838e0-1215-4073-8b80-f01125b8d5fd X-Archives-Hash: c20aff0863ebf266f7450442a9d9a5ab commit: af520e35560e761d31f6988e8a28b65cefcb291e Author: Marty E. Plummer startmail com> AuthorDate: Fri Aug 3 01:22:12 2018 +0000 Commit: James Le Cuirot gentoo org> CommitDate: Mon Aug 27 21:23:02 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af520e35 games-arcade/opentyrian: add gnome2-utils Needed for gnome2_icon_cache_update in pkg_postinst and pkg_postrm. Package-Manager: Portage-2.3.44, Repoman-2.3.10 games-arcade/opentyrian/opentyrian-2.1.20130907-r1.ebuild | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/games-arcade/opentyrian/opentyrian-2.1.20130907-r1.ebuild b/games-arcade/opentyrian/opentyrian-2.1.20130907-r1.ebuild index f1b0678fb4e..fc82628bc52 100644 --- a/games-arcade/opentyrian/opentyrian-2.1.20130907-r1.ebuild +++ b/games-arcade/opentyrian/opentyrian-2.1.20130907-r1.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit desktop +inherit desktop gnome2-utils DESCRIPTION="Open-source port of the DOS game Tyrian, vertical scrolling shooter" HOMEPAGE="https://bitbucket.org/opentyrian/opentyrian/wiki/Home" @@ -47,3 +47,11 @@ src_install() { rm *.exe dpmi16bi.ovl loudness.awe || die "Failed to remove win32 binaries" doins * || die "Failed to install game data" } + +pkg_postinst() { + gnome2_icon_cache_update +} + +pkg_postrm() { + gnome2_icon_cache_update +}