Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfce4-dict/
Date: Sat, 02 Jun 2018 08:48:56
Message-Id: 1527929329.c9d0a3152f5069ec4acc1732fe189dd38dfb1f0d.mgorny@gentoo
1 commit: c9d0a3152f5069ec4acc1732fe189dd38dfb1f0d
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 2 08:29:18 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 2 08:48:49 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9d0a315
7
8 xfce-extra/xfce4-dict: Bump to 0.8.1
9
10 xfce-extra/xfce4-dict/Manifest | 1 +
11 xfce-extra/xfce4-dict/xfce4-dict-0.8.1.ebuild | 43 +++++++++++++++++++++++++++
12 2 files changed, 44 insertions(+)
13
14 diff --git a/xfce-extra/xfce4-dict/Manifest b/xfce-extra/xfce4-dict/Manifest
15 index 7abdc7efca1..7bbdc8bbf70 100644
16 --- a/xfce-extra/xfce4-dict/Manifest
17 +++ b/xfce-extra/xfce4-dict/Manifest
18 @@ -1 +1,2 @@
19 DIST xfce4-dict-0.8.0.tar.bz2 483618 BLAKE2B 8365fe96710b6350be350fff0479d71fa2d2c85403e4bbb3e759cdfca9e4ed22ccd5ffcffa71f6ae6ca43e79cbd9c6d25bd675603ffd523fc7782d5040208673 SHA512 96e59b21b91352970e33aea84fe67fa9bce5f1fab47d794a129ec68285bd03c5e26a02b03519b1834d08a15c2cb54fe3d91c64799a8df283b89f304800024cb4
20 +DIST xfce4-dict-0.8.1.tar.bz2 482413 BLAKE2B d7ece7a93c107315f65cf25e0ae724e99f88ec64d3289c33f5aa0a85c4865acae45e96c3047d30f5b972814079aa3e5987cf4b347bb1dea0d2e0fbc9fd272a37 SHA512 6cadc479afe5bede536915f8094f4c3ae80139cd11f4b594ee17d28373e5ee3f60a918193b0eefb2e247dfd8780d632e8b508538fd101b4064e36260fc30c67e
21
22 diff --git a/xfce-extra/xfce4-dict/xfce4-dict-0.8.1.ebuild b/xfce-extra/xfce4-dict/xfce4-dict-0.8.1.ebuild
23 new file mode 100644
24 index 00000000000..d37ed15a13d
25 --- /dev/null
26 +++ b/xfce-extra/xfce4-dict/xfce4-dict-0.8.1.ebuild
27 @@ -0,0 +1,43 @@
28 +# Copyright 1999-2018 Gentoo Foundation
29 +# Distributed under the terms of the GNU General Public License v2
30 +
31 +EAPI=6
32 +inherit gnome2-utils
33 +
34 +DESCRIPTION="A dict.org querying application and panel plug-in for the Xfce desktop"
35 +HOMEPAGE="https://goodies.xfce.org/projects/applications/xfce4-dict"
36 +SRC_URI="mirror://xfce/src/apps/${PN}/${PV%.*}/${P}.tar.bz2"
37 +
38 +LICENSE="GPL-2"
39 +SLOT="0"
40 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
41 +IUSE=""
42 +
43 +RDEPEND=">=dev-libs/glib-2.24:=
44 + >=x11-libs/gtk+-3.22:3=
45 + x11-libs/libX11:=
46 + >=xfce-base/libxfce4util-4.10:=
47 + >=xfce-base/libxfce4ui-4.12:=
48 + >=xfce-base/xfce4-panel-4.10:="
49 +DEPEND="${RDEPEND}
50 + dev-util/gdbus-codegen
51 + dev-util/intltool
52 + virtual/pkgconfig"
53 +
54 +src_configure() {
55 + econf --libexecdir="${EPREFIX}"/usr/$(get_libdir)
56 +}
57 +
58 +src_install() {
59 + default
60 +
61 + find "${ED}" -name '*.la' -delete || die
62 +}
63 +
64 +pkg_postinst() {
65 + gnome2_icon_cache_update
66 +}
67 +
68 +pkg_postrm() {
69 + gnome2_icon_cache_update
70 +}