Gentoo Archives: gentoo-commits

From: Marek Szuba <marecki@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/bibletime/
Date: Wed, 26 May 2021 11:22:29
Message-Id: 1622028112.918fcce1032df3ba911feb2b66e8eddabf6f6e63.marecki@gentoo
1 commit: 918fcce1032df3ba911feb2b66e8eddabf6f6e63
2 Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 26 10:06:20 2021 +0000
4 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
5 CommitDate: Wed May 26 11:21:52 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=918fcce1
7
8 app-text/bibletime: call xdg_icon_cache_update
9
10 Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
11
12 app-text/bibletime/bibletime-3.0.ebuild | 12 ++++++++++--
13 1 file changed, 10 insertions(+), 2 deletions(-)
14
15 diff --git a/app-text/bibletime/bibletime-3.0.ebuild b/app-text/bibletime/bibletime-3.0.ebuild
16 index 2291044e872..a36584eb050 100644
17 --- a/app-text/bibletime/bibletime-3.0.ebuild
18 +++ b/app-text/bibletime/bibletime-3.0.ebuild
19 @@ -1,11 +1,11 @@
20 -# Copyright 1999-2020 Gentoo Authors
21 +# Copyright 1999-2021 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 EAPI=7
25
26 VIRTUALX_REQUIRED=test
27
28 -inherit cmake virtualx
29 +inherit cmake virtualx xdg-utils
30
31 DESCRIPTION="Qt Bible-study application using the SWORD library"
32 HOMEPAGE="http://bibletime.info/"
33 @@ -66,3 +66,11 @@ src_configure() {
34 src_test() {
35 virtx cmake_src_test || die "Test run has failed"
36 }
37 +
38 +pkg_postinst() {
39 + xdg_icon_cache_update
40 +}
41 +
42 +pkg_postrm() {
43 + xdg_icon_cache_update
44 +}