diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2021-04-14 10:21:01 +0200 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2021-04-14 10:24:30 +0200 |
commit | eb733a28123a671d54a63883dfc694ae30c0798d (patch) | |
tree | 33f8ed027f1c62bac4c49fdafb506df5df472952 /media-sound/lmms | |
parent | www-plugins/chrome-binary-plugins: stable channel bump to 89.0.4389.128 (diff) | |
download | gentoo-eb733a28123a671d54a63883dfc694ae30c0798d.tar.gz gentoo-eb733a28123a671d54a63883dfc694ae30c0798d.tar.bz2 gentoo-eb733a28123a671d54a63883dfc694ae30c0798d.zip |
media-sound/lmms: Reliably set bash-completion dir via eclass
Thanks-to: Samuel Bauer <samuel.bauer@yahoo.fr>
Bug: https://bugs.gentoo.org/670722
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'media-sound/lmms')
-rw-r--r-- | media-sound/lmms/lmms-9999.ebuild | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/media-sound/lmms/lmms-9999.ebuild b/media-sound/lmms/lmms-9999.ebuild index a92a923b07b8..a09420e7e368 100644 --- a/media-sound/lmms/lmms-9999.ebuild +++ b/media-sound/lmms/lmms-9999.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 # The order is important here! Both, cmake and xdg define src_prepare. # We need the one from cmake -inherit xdg cmake +inherit bash-completion-r1 xdg cmake DESCRIPTION="Cross-platform music production software" HOMEPAGE="https://lmms.io" @@ -70,6 +70,7 @@ DOCS=( README.md doc/AUTHORS ) src_configure() { local mycmakeargs+=( + -DBASHCOMP_PKG_PATH="$(get_bashcompdir)" -DUSE_WERROR=FALSE -DWANT_CAPS=FALSE -DWANT_TAP=FALSE |