Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/gpicview/
Date: Fri, 26 Jan 2018 21:23:12
Message-Id: 1517001778.cb889cd336eab38f9434811e435b603bc016f632.monsieurp@gentoo
1 commit: cb889cd336eab38f9434811e435b603bc016f632
2 Author: Stephan Hartmann <stha09 <AT> googlemail <DOT> com>
3 AuthorDate: Sun Jan 21 13:26:40 2018 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 26 21:22:58 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb889cd3
7
8 media-gfx/gpicview: update GTK+ icon cache and xdg desktop database.
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11 Closes: https://github.com/gentoo/gentoo/pull/6920
12
13 media-gfx/gpicview/gpicview-0.2.5-r1.ebuild | 31 +++++++++++++++++++++++++++++
14 1 file changed, 31 insertions(+)
15
16 diff --git a/media-gfx/gpicview/gpicview-0.2.5-r1.ebuild b/media-gfx/gpicview/gpicview-0.2.5-r1.ebuild
17 new file mode 100644
18 index 00000000000..c78b2b2ba9e
19 --- /dev/null
20 +++ b/media-gfx/gpicview/gpicview-0.2.5-r1.ebuild
21 @@ -0,0 +1,31 @@
22 +# Copyright 1999-2018 Gentoo Foundation
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=6
26 +
27 +inherit gnome2-utils xdg-utils
28 +
29 +DESCRIPTION="A Simple and Fast Image Viewer for X"
30 +HOMEPAGE="http://lxde.sourceforge.net/gpicview"
31 +SRC_URI="mirror://sourceforge/lxde/${P}.tar.xz"
32 +
33 +LICENSE="GPL-2"
34 +SLOT="0"
35 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~x86 ~arm-linux ~x86-linux"
36 +
37 +RDEPEND="virtual/jpeg:0
38 + >=x11-libs/gtk+-2.6:2"
39 +DEPEND="${RDEPEND}
40 + >=dev-util/intltool-0.40
41 + sys-devel/gettext
42 + virtual/pkgconfig"
43 +
44 +pkg_postinst() {
45 + gnome2_icon_cache_update
46 + xdg_desktop_database_update
47 +}
48 +
49 +pkg_postrm() {
50 + gnome2_icon_cache_update
51 + xdg_desktop_database_update
52 +}