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