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-statusnotifier-plugin/
Date: Sun, 06 Aug 2017 13:58:16
Message-Id: 1502027649.86dcb28749babcf3d9bef76312dfb12dd713129e.mgorny@gentoo
1 commit: 86dcb28749babcf3d9bef76312dfb12dd713129e
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 17 20:25:40 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 6 13:54:09 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86dcb287
7
8 xfce-extra/xfce4-statusnotifier-plugin: New package
9
10 xfce-extra/xfce4-statusnotifier-plugin/Manifest | 1 +
11 .../xfce4-statusnotifier-plugin/metadata.xml | 8 +++++
12 .../xfce4-statusnotifier-plugin-0.1.0.ebuild | 40 ++++++++++++++++++++++
13 3 files changed, 49 insertions(+)
14
15 diff --git a/xfce-extra/xfce4-statusnotifier-plugin/Manifest b/xfce-extra/xfce4-statusnotifier-plugin/Manifest
16 new file mode 100644
17 index 00000000000..6a7f65fc867
18 --- /dev/null
19 +++ b/xfce-extra/xfce4-statusnotifier-plugin/Manifest
20 @@ -0,0 +1 @@
21 +DIST xfce4-statusnotifier-plugin-0.1.0.tar.bz2 361454 SHA256 22ad14101df914e79d4dbd8e5d96382b1d3f52e326d2acd7760bfbf9795ea6d5 SHA512 23c84700bd538115237c525f416ea545b10b6ea4e674c3e136ccf8f7a48370b978e99dac6c69ed694c3dd495027825bc9e74504e0222c6a3923f52e4b9d4f097 WHIRLPOOL fdb205e8a38692ac4ee37e54342704bcdff7c8d01a918553ecf1d1ab67ff37d1cee04e72b415b4747d3d29aa284babfe558b0f947bf8cef87aac92e9aeb354fa
22
23 diff --git a/xfce-extra/xfce4-statusnotifier-plugin/metadata.xml b/xfce-extra/xfce4-statusnotifier-plugin/metadata.xml
24 new file mode 100644
25 index 00000000000..359901b31db
26 --- /dev/null
27 +++ b/xfce-extra/xfce4-statusnotifier-plugin/metadata.xml
28 @@ -0,0 +1,8 @@
29 +<?xml version="1.0" encoding="UTF-8"?>
30 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
31 +<pkgmetadata>
32 + <maintainer type="project">
33 + <email>xfce@g.o</email>
34 + <name>XFCE Team</name>
35 + </maintainer>
36 +</pkgmetadata>
37
38 diff --git a/xfce-extra/xfce4-statusnotifier-plugin/xfce4-statusnotifier-plugin-0.1.0.ebuild b/xfce-extra/xfce4-statusnotifier-plugin/xfce4-statusnotifier-plugin-0.1.0.ebuild
39 new file mode 100644
40 index 00000000000..01a0cd1f11a
41 --- /dev/null
42 +++ b/xfce-extra/xfce4-statusnotifier-plugin/xfce4-statusnotifier-plugin-0.1.0.ebuild
43 @@ -0,0 +1,40 @@
44 +# Copyright 1999-2017 Gentoo Foundation
45 +# Distributed under the terms of the GNU General Public License v2
46 +
47 +EAPI=6
48 +
49 +inherit gnome2-utils
50 +
51 +DESCRIPTION="A panel area for fd.o Status Notifiers (systray replacement)"
52 +HOMEPAGE="https://goodies.xfce.org/projects/panel-plugins/xfce4-statusnotifier-plugin"
53 +SRC_URI="mirror://xfce/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2"
54 +
55 +LICENSE="GPL-2"
56 +SLOT="0"
57 +KEYWORDS="~amd64"
58 +IUSE=""
59 +
60 +RDEPEND="
61 + >=dev-libs/glib-2.24:=
62 + >=dev-libs/libdbusmenu-16.04.0:=[gtk3]
63 + >=x11-libs/gtk+-3.18:3=
64 + x11-libs/libX11:=
65 + >=xfce-base/libxfce4ui-4.12:=
66 + >=xfce-base/libxfce4util-4.12:=
67 + >=xfce-base/xfce4-panel-4.12:=
68 + >=xfce-base/xfconf-4.12:="
69 +DEPEND="${RDEPEND}
70 + dev-util/gdbus-codegen"
71 +
72 +src_install() {
73 + default
74 + find "${D}" -name '*.la' -delete || die
75 +}
76 +
77 +pkg_postinst() {
78 + gnome2_icon_cache_update
79 +}
80 +
81 +pkg_postrm() {
82 + gnome2_icon_cache_update
83 +}