diff options
author | Sam James <sam@gentoo.org> | 2022-03-10 22:43:47 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-10 22:43:47 +0000 |
commit | fb549fbe0d6126b2a47f7b7d64b8d2c01289f92c (patch) | |
tree | 604077021a103243575e6c735d0c20858ca1db51 /x11-plugins/gkrellmss | |
parent | x11-plugins/gkrellm-xkb: fix commands in global scope (diff) | |
download | gentoo-fb549fbe0d6126b2a47f7b7d64b8d2c01289f92c.tar.gz gentoo-fb549fbe0d6126b2a47f7b7d64b8d2c01289f92c.tar.bz2 gentoo-fb549fbe0d6126b2a47f7b7d64b8d2c01289f92c.zip |
x11-plugins/gkrellmss: fix commands in global scope
Closes: https://bugs.gentoo.org/788067
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'x11-plugins/gkrellmss')
-rw-r--r-- | x11-plugins/gkrellmss/gkrellmss-2.6-r4.ebuild | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/x11-plugins/gkrellmss/gkrellmss-2.6-r4.ebuild b/x11-plugins/gkrellmss/gkrellmss-2.6-r4.ebuild index e038708f288a..cfd3b71cfb01 100644 --- a/x11-plugins/gkrellmss/gkrellmss-2.6-r4.ebuild +++ b/x11-plugins/gkrellmss/gkrellmss-2.6-r4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -25,9 +25,13 @@ PATCHES=( "${FILESDIR}"/${P}-fno-common.patch ) -PLUGIN_SO=( src/gkrellmss$(get_modname) ) PLUGIN_DOCS=( Themes ) +src_configure() { + PLUGIN_SO=( src/gkrellmss$(get_modname) ) + default +} + src_compile() { addpredict /dev/snd emake enable_nls=$(usex nls 1 0) |