diff options
author | Sam James <sam@gentoo.org> | 2022-03-10 22:42:36 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-10 22:42:36 +0000 |
commit | 1c4bcab27d44cfaf093249523ea44b8798e82dd9 (patch) | |
tree | d84f0488b5026c6d0d698a029d4a6b4af3120024 /x11-plugins/gkrellm-volume | |
parent | x11-plugins/gkrellm-vaiobright: fix commands in global scope (diff) | |
download | gentoo-1c4bcab27d44cfaf093249523ea44b8798e82dd9.tar.gz gentoo-1c4bcab27d44cfaf093249523ea44b8798e82dd9.tar.bz2 gentoo-1c4bcab27d44cfaf093249523ea44b8798e82dd9.zip |
x11-plugins/gkrellm-volume: fix commands in global scope
Closes: https://bugs.gentoo.org/788067
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'x11-plugins/gkrellm-volume')
-rw-r--r-- | x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r2.ebuild | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r2.ebuild b/x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r2.ebuild index 208a9d80056f..e330327d324b 100644 --- a/x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r2.ebuild +++ b/x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -25,7 +25,10 @@ PATCHES=( "${FILESDIR}/${P}-makefile.patch" ) -PLUGIN_SO=( volume$(get_modname) ) +src_configure() { + PLUGIN_SO=( volume$(get_modname) ) + default +} src_compile() { use alsa && local myconf="enable_alsa=1" |