blob: fb32d14b94648ee526be1e8a9c3ea645b06f8735 (
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
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="PulseAudio Volume Meter, simple GTK volume meter for PulseAudio"
HOMEPAGE="https://0pointer.de/lennart/projects/pavumeter/"
SRC_URI="https://0pointer.de/lennart/projects/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~sparc x86"
RDEPEND="
dev-cpp/gtkmm:2.4
dev-libs/libsigc++:2
media-libs/libpulse[glib]
x11-themes/tango-icon-theme"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
PATCHES=( "${FILESDIR}"/${P}-desktop-QA.patch )
HTML_DOCS=( doc/{README.html,style.css} )
src_configure() {
econf --disable-lynx
}
|