diff options
author | 2023-06-11 10:31:34 +0200 | |
---|---|---|
committer | 2023-06-11 10:52:26 +0200 | |
commit | 341f4f8bf3ce54a3edec9f39362e50281c7f2db8 (patch) | |
tree | b62ef1d775d11424006c2e5045633ce3f7de4777 /media-sound | |
parent | dev-python/elasticsearch-py: add 8.8.0 (diff) | |
download | gentoo-341f4f8bf3ce54a3edec9f39362e50281c7f2db8.tar.gz gentoo-341f4f8bf3ce54a3edec9f39362e50281c7f2db8.tar.bz2 gentoo-341f4f8bf3ce54a3edec9f39362e50281c7f2db8.zip |
media-sound/pavumeter: update EAPI 7 -> 8
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/pavumeter/pavumeter-0.9.3-r2.ebuild | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/media-sound/pavumeter/pavumeter-0.9.3-r2.ebuild b/media-sound/pavumeter/pavumeter-0.9.3-r2.ebuild new file mode 100644 index 000000000000..fb32d14b9464 --- /dev/null +++ b/media-sound/pavumeter/pavumeter-0.9.3-r2.ebuild @@ -0,0 +1,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 +} |