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-volumed-pulse/
Date: Wed, 14 Feb 2018 16:40:04
Message-Id: 1518615288.6e6bd43cf0f04170ea48412984f92ee471558475.mgorny@gentoo
1 commit: 6e6bd43cf0f04170ea48412984f92ee471558475
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 14 12:35:02 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 14 13:34:48 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e6bd43c
7
8 xfce-extra/xfce4-volumed-pulse: Bump to 0.2.3 (GTK+3 version)
9
10 xfce-extra/xfce4-volumed-pulse/Manifest | 1 +
11 .../xfce4-volumed-pulse-0.2.3.ebuild | 30 ++++++++++++++++++++++
12 2 files changed, 31 insertions(+)
13
14 diff --git a/xfce-extra/xfce4-volumed-pulse/Manifest b/xfce-extra/xfce4-volumed-pulse/Manifest
15 index a8677d6ce55..9babcfdbec0 100644
16 --- a/xfce-extra/xfce4-volumed-pulse/Manifest
17 +++ b/xfce-extra/xfce4-volumed-pulse/Manifest
18 @@ -1,2 +1,3 @@
19 DIST xfce4-volumed-pulse-0.2.0.tar.bz2 282403 BLAKE2B 801ee03f7517f5235eaa45c2ee6eafd911c98bbee1cc5bea5d84e181ea52c5fe17741192fb10b5471f900eb254293990efcdc77fc71d0374c844165e9f3d1b18 SHA512 efa5bcb3558eda0b36f2bf0b737409571f69af7454f542a3dbd777e94d40b3f0107567d3fea3fc019b3eb77450b2bebde7aff8b72b0c30d2afd9a316e6ea77a6
20 DIST xfce4-volumed-pulse-0.2.2.tar.bz2 312703 BLAKE2B 6c88c8f4023f5200c7b5b976ee4fff94344913f313ede29334d3f3b291d6862f56fa11e22a90c79019bcc137e1c77feac84ad14d067f4ce13c86ce58484480ea SHA512 6e452a603ca19b8fc8470851ed9570c84a8208bc7695493cc8ad6425ce6176427a264e39c5249767fe93bdb172137a0c59ef858336f28a574e74bce8d9d35bb6
21 +DIST xfce4-volumed-pulse-0.2.3.tar.bz2 308063 BLAKE2B e64d2e668bf1a6666ce82ac4f03852abfb0346936a789ce7f89acde1734af948f628ca3c17d515e72ab292fc86525623b8aa0b4a219555d7b8729cee10889142 SHA512 da190cea2b3993717f35e1ded058613df99f8fa223a90d379d95dff0bc9d44f4fba15bd23ff1b54f11218d20518092d14a2f2b808d4984673d3bb77616c2f3e3
22
23 diff --git a/xfce-extra/xfce4-volumed-pulse/xfce4-volumed-pulse-0.2.3.ebuild b/xfce-extra/xfce4-volumed-pulse/xfce4-volumed-pulse-0.2.3.ebuild
24 new file mode 100644
25 index 00000000000..7625362506f
26 --- /dev/null
27 +++ b/xfce-extra/xfce4-volumed-pulse/xfce4-volumed-pulse-0.2.3.ebuild
28 @@ -0,0 +1,30 @@
29 +# Copyright 1999-2018 Gentoo Foundation
30 +# Distributed under the terms of the GNU General Public License v2
31 +
32 +EAPI=6
33 +
34 +DESCRIPTION="Daemon to control volume up/down and mute keys for pulseaudio"
35 +HOMEPAGE="https://git.xfce.org/apps/xfce4-volumed-pulse/"
36 +SRC_URI="mirror://xfce/src/apps/${PN}/${PV%.*}/${P}.tar.bz2"
37 +
38 +LICENSE="GPL-3"
39 +SLOT="0"
40 +KEYWORDS="~amd64 ~x86"
41 +IUSE="libnotify"
42 +
43 +RDEPEND=">=dev-libs/glib-2.16:2=
44 + dev-libs/keybinder:3=
45 + >=media-sound/pulseaudio-0.9.19:=[glib]
46 + >=x11-libs/gtk+-3.20:3=
47 + >=xfce-base/xfconf-4.8:=
48 + libnotify? ( x11-libs/libnotify:= )"
49 +DEPEND="${RDEPEND}
50 + virtual/pkgconfig"
51 +
52 +src_configure() {
53 + local myconf=(
54 + $(use_enable libnotify)
55 + )
56 +
57 + econf "${myconf[@]}"
58 +}