diff options
author | Sebastian Pipping <sping@gentoo.org> | 2024-10-09 16:00:11 +0200 |
---|---|---|
committer | Sebastian Pipping <sping@gentoo.org> | 2024-10-09 16:00:25 +0200 |
commit | a53c20252401545373a9fd3e4347f0196473f953 (patch) | |
tree | af63fd695c35f7e1f1e59e7f0cc87cfb615449d6 /media-plugins | |
parent | x11-misc/xvfb-run: 21.1.13.2 (diff) | |
download | gentoo-a53c20252401545373a9fd3e4347f0196473f953.tar.gz gentoo-a53c20252401545373a9fd3e4347f0196473f953.tar.bz2 gentoo-a53c20252401545373a9fd3e4347f0196473f953.zip |
media-plugins/ladspa-bs2b: Address warning EmptyGlobalAssignment
Signed-off-by: Sebastian Pipping <sping@gentoo.org>
Diffstat (limited to 'media-plugins')
-rw-r--r-- | media-plugins/ladspa-bs2b/ladspa-bs2b-0.9.1-r4.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/media-plugins/ladspa-bs2b/ladspa-bs2b-0.9.1-r4.ebuild b/media-plugins/ladspa-bs2b/ladspa-bs2b-0.9.1-r4.ebuild new file mode 100644 index 000000000000..48292005efbd --- /dev/null +++ b/media-plugins/ladspa-bs2b/ladspa-bs2b-0.9.1-r4.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="8" + +inherit autotools + +DESCRIPTION="LADSPA plugin for bs2b headphone filter" +HOMEPAGE="http://bs2b.sourceforge.net/" +SRC_URI="https://downloads.sourceforge.net/bs2b/plugins/LADSPA%20plugin/${PV}/${P}.tar.bz2" + +LICENSE="|| ( GPL-2 GPL-3 )" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="media-libs/ladspa-sdk + >=media-libs/libbs2b-3.1.0" + +RDEPEND="${DEPEND}" + +src_prepare() { + default + sed 's,dist-lzma,,' -i configure.ac || die + eautoreconf # bug 889426 +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +} |