blob: ed45b3277e41e9b40618c5cc9830f6a85c242f69 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson
DESCRIPTION="Pulseaudio Volume Control, GTK based mixer for Pulseaudio"
HOMEPAGE="https://freedesktop.org/software/pulseaudio/pavucontrol/"
SRC_URI="https://freedesktop.org/software/pulseaudio/${PN}/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 arm ~arm64 ~loong ppc ppc64 ~riscv ~sparc x86"
IUSE="sound"
RDEPEND="
dev-cpp/gtkmm:4.0
dev-libs/json-glib
dev-libs/libsigc++:3
>=media-libs/libpulse-15.0[glib]
virtual/freedesktop-icon-theme
sound? ( media-libs/libcanberra )
"
DEPEND="${RDEPEND}"
BDEPEND="
virtual/pkgconfig
sys-devel/gettext
"
PATCHES=(
"${FILESDIR}/pavucontrol-6.1-libcanberra-automagic.patch"
)
src_prepare() {
default
# Follow Gentoo FHS with docdir
sed -i -e "/^docdir/ { s/${PN}/${PF}/ }" meson.build || die
}
src_configure() {
local emesonargs=(
-Dlynx=false
$(meson_feature sound audio-feedback)
)
meson_src_configure
}
|