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-pulseaudio-plugin/
Date: Mon, 30 Mar 2020 06:51:12
Message-Id: 1585551060.d7d19b210154751065c6fc0929deddf50e7010f0.mgorny@gentoo
1 commit: d7d19b210154751065c6fc0929deddf50e7010f0
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Mar 30 06:30:20 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 30 06:51:00 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7d19b21
7
8 xfce-extra/xfce4-pulseaudio-plugin: Bump to 0.4.3
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 xfce-extra/xfce4-pulseaudio-plugin/Manifest | 1 +
13 .../xfce4-pulseaudio-plugin-0.4.3.ebuild | 63 ++++++++++++++++++++++
14 2 files changed, 64 insertions(+)
15
16 diff --git a/xfce-extra/xfce4-pulseaudio-plugin/Manifest b/xfce-extra/xfce4-pulseaudio-plugin/Manifest
17 index 441d8a3a85c..89e77d658b9 100644
18 --- a/xfce-extra/xfce4-pulseaudio-plugin/Manifest
19 +++ b/xfce-extra/xfce4-pulseaudio-plugin/Manifest
20 @@ -1 +1,2 @@
21 DIST xfce4-pulseaudio-plugin-0.4.2.tar.bz2 428504 BLAKE2B dd8c855e75aaee060df1e7abb2f8b835f1a630ce8b45b28c407c48f52071a51729e0bf8c645d5f68f968f12a45dea272d03ee69f4554009421a1a075a8fb8d2c SHA512 94184fe7379a7f1763d606fe3c45186767a43180329b43c8cba04b76ae5e1b2249531fc1fb6304da9bb03e7475ad65f861341253ead530d9a945165b4eb9e46e
22 +DIST xfce4-pulseaudio-plugin-0.4.3.tar.bz2 431773 BLAKE2B 2c0de4ea0ab9304b737fe4ce570bcd8427f983845fe898dbe7e053a5fe79793223df6882a931b186664d8c95d4c767daf39ba36a98dc58595ba77e8a18c13a6c SHA512 d3214b2b7c35a0a87ea60a5d843f5027d1b09f320d4d24c6bf89a8936de92226223cb4dc5368edf4c0a1aedb3b8796510981eeadee8e836e764569d9284f0efa
23
24 diff --git a/xfce-extra/xfce4-pulseaudio-plugin/xfce4-pulseaudio-plugin-0.4.3.ebuild b/xfce-extra/xfce4-pulseaudio-plugin/xfce4-pulseaudio-plugin-0.4.3.ebuild
25 new file mode 100644
26 index 00000000000..bd780cf925b
27 --- /dev/null
28 +++ b/xfce-extra/xfce4-pulseaudio-plugin/xfce4-pulseaudio-plugin-0.4.3.ebuild
29 @@ -0,0 +1,63 @@
30 +# Copyright 1999-2020 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +inherit xdg-utils
36 +
37 +DESCRIPTION="A panel plug-in for PulseAudio volume control"
38 +HOMEPAGE="https://git.xfce.org/panel-plugins/xfce4-pulseaudio-plugin/"
39 +SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2"
40 +
41 +LICENSE="GPL-2+"
42 +SLOT="0"
43 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86"
44 +IUSE="debug keybinder libnotify wnck"
45 +
46 +RDEPEND=">=dev-libs/glib-2.42.0:=
47 + media-sound/pulseaudio:=
48 + >=x11-libs/gtk+-3.20.0:3=
49 + >=xfce-base/exo-0.11:=
50 + >=xfce-base/libxfce4ui-4.11.0:=[gtk3(+)]
51 + >=xfce-base/libxfce4util-4.9.0:=
52 + >=xfce-base/xfce4-panel-4.11.0:=
53 + >=xfce-base/xfconf-4.6.0:=
54 + keybinder? ( dev-libs/keybinder:3= )
55 + libnotify? ( x11-libs/libnotify:= )
56 + wnck? ( x11-libs/libwnck:3= )"
57 +DEPEND="${RDEPEND}
58 + dev-util/intltool
59 + virtual/pkgconfig"
60 +
61 +src_configure() {
62 + local myconf=(
63 + $(use_enable keybinder)
64 + $(use_enable libnotify)
65 + $(use_enable wnck)
66 + )
67 +
68 + econf "${myconf[@]}"
69 +}
70 +
71 +src_install() {
72 + default
73 +
74 + find "${D}" -name '*.la' -delete || die
75 +}
76 +
77 +pkg_postinst() {
78 + xdg_icon_cache_update
79 +
80 + if ! has_version media-sound/pavucontrol; then
81 + elog "For the 'audio mixer...' shortcut to work, you need to install"
82 + elog "an external mixer application. Please either install:"
83 + elog
84 + elog " media-sound/pavucontrol"
85 + elog
86 + elog "or specify another application to use in the 'Properties' dialog."
87 + fi
88 +}
89 +
90 +pkg_postrm() {
91 + xdg_icon_cache_update
92 +}