diff options
author | Sebastian Pipping <sping@gentoo.org> | 2022-05-28 17:50:23 +0200 |
---|---|---|
committer | Sebastian Pipping <sping@gentoo.org> | 2022-05-28 17:50:23 +0200 |
commit | 115d217d14dd98783c3c6131708955c06e12f63b (patch) | |
tree | ac5582ad94b04b9f1f1bc933f7ceac26aa325ead /media-plugins/ladspa-bs2b/ladspa-bs2b-0.9.1-r2.ebuild | |
parent | games-misc/bsd-games: riscv keywording (diff) | |
download | gentoo-115d217d14dd98783c3c6131708955c06e12f63b.tar.gz gentoo-115d217d14dd98783c3c6131708955c06e12f63b.tar.bz2 gentoo-115d217d14dd98783c3c6131708955c06e12f63b.zip |
media-plugins/ladspa-bs2b: Address .la files + EAPI 8
Closes: https://bugs.gentoo.org/847646
Signed-off-by: Sebastian Pipping <sping@gentoo.org>
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Diffstat (limited to 'media-plugins/ladspa-bs2b/ladspa-bs2b-0.9.1-r2.ebuild')
-rw-r--r-- | media-plugins/ladspa-bs2b/ladspa-bs2b-0.9.1-r2.ebuild | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/media-plugins/ladspa-bs2b/ladspa-bs2b-0.9.1-r2.ebuild b/media-plugins/ladspa-bs2b/ladspa-bs2b-0.9.1-r2.ebuild new file mode 100644 index 000000000000..335c9aee6c76 --- /dev/null +++ b/media-plugins/ladspa-bs2b/ladspa-bs2b-0.9.1-r2.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="8" + +DESCRIPTION="LADSPA plugin for bs2b headphone filter" +HOMEPAGE="http://bs2b.sourceforge.net/" +SRC_URI="mirror://sourceforge/bs2b/plugins/LADSPA%20plugin/${PV}/${P}.tar.bz2" + +LICENSE="|| ( GPL-2 GPL-3 )" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="media-libs/ladspa-sdk + >=media-libs/libbs2b-3.1.0" + +RDEPEND="${DEPEND}" + +src_install() { + default + find "${D}" -name '*.la' -delete || die +} |