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-indicator-plugin/
Date: Sat, 08 Jan 2022 23:26:28
Message-Id: 1641684372.face4059006d489beca6c9fc10dc6050fdec0919.mgorny@gentoo
1 commit: face4059006d489beca6c9fc10dc6050fdec0919
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 8 21:58:23 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 8 23:26:12 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=face4059
7
8 xfce-extra/xfce4-indicator-plugin: Bump to 2.4.1
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 xfce-extra/xfce4-indicator-plugin/Manifest | 1 +
13 .../xfce4-indicator-plugin-2.4.1.ebuild | 51 ++++++++++++++++++++++
14 2 files changed, 52 insertions(+)
15
16 diff --git a/xfce-extra/xfce4-indicator-plugin/Manifest b/xfce-extra/xfce4-indicator-plugin/Manifest
17 index b14798c4095b..21773224d9d6 100644
18 --- a/xfce-extra/xfce4-indicator-plugin/Manifest
19 +++ b/xfce-extra/xfce4-indicator-plugin/Manifest
20 @@ -1 +1,2 @@
21 DIST xfce4-indicator-plugin-2.4.0.tar.bz2 389228 BLAKE2B 6f627663d0a432ee74e871b55656c119f99c315d2f5095fd24a9eefc9338d280d5c371153377d575bc926707f30dc0602c7033bf09acdba1e247356b341393d5 SHA512 5b6e82d85357cec689f23a6cf69d379db9425956a531d8295a23adf52b1e00e3cd8acd822b13ab05d80321ff739c96aadc6e7526ec275421c341446e58a5fbab
22 +DIST xfce4-indicator-plugin-2.4.1.tar.bz2 406823 BLAKE2B e24107888c8af7206111b4d6b8058e871b97aa687116684a3251cf731f9925bed1cfec3c1fd8a66794c6fc31bd631a4cdc7924972956c12eac3b12f4d7f18831 SHA512 a5b9b25b405888a69708eb43656ac58a728d4a5a9736b5513d23b17409b5d8a0230cf89e6243afde5b1a3edad43b38915d007551347c85a7d17364760c2dabba
23
24 diff --git a/xfce-extra/xfce4-indicator-plugin/xfce4-indicator-plugin-2.4.1.ebuild b/xfce-extra/xfce4-indicator-plugin/xfce4-indicator-plugin-2.4.1.ebuild
25 new file mode 100644
26 index 000000000000..dcee8758700d
27 --- /dev/null
28 +++ b/xfce-extra/xfce4-indicator-plugin/xfce4-indicator-plugin-2.4.1.ebuild
29 @@ -0,0 +1,51 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +inherit xdg-utils
35 +
36 +DESCRIPTION="A panel plugin that uses indicator-applet to show new messages"
37 +HOMEPAGE="https://goodies.xfce.org/projects/panel-plugins/xfce4-indicator-plugin"
38 +SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2"
39 +
40 +LICENSE="GPL-2 LGPL-2"
41 +SLOT="0"
42 +KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
43 +IUSE=""
44 +
45 +RDEPEND=">=dev-libs/libindicator-12.10.1:3=
46 + >=x11-libs/gtk+-3.18:3=
47 + x11-libs/libX11:=
48 + >=xfce-base/libxfce4ui-4.11:=[gtk3(+)]
49 + >=xfce-base/libxfce4util-4.11:=
50 + >=xfce-base/xfce4-panel-4.11:=
51 + >=xfce-base/xfconf-4.13:="
52 +DEPEND="${RDEPEND}"
53 +BDEPEND="
54 + dev-util/intltool
55 + sys-devel/gettext
56 + virtual/pkgconfig"
57 +
58 +src_configure() {
59 + local myconf=(
60 + # libido3-13.10.0 needs ubuntu-private.h from Ubuntu's GTK+ 3.x
61 + --disable-ido
62 + )
63 +
64 + econf "${myconf[@]}"
65 +}
66 +
67 +src_install() {
68 + default
69 + find "${D}" -name '*.la' -delete || die
70 +}
71 +
72 +pkg_postinst() {
73 + xdg_icon_cache_update
74 + xdg_desktop_database_update
75 +}
76 +
77 +pkg_postrm() {
78 + xdg_icon_cache_update
79 + xdg_desktop_database_update
80 +}