Gentoo Archives: gentoo-commits

From: Sebastian Pipping <sping@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/ladspa-bs2b/
Date: Sat, 28 May 2022 15:51:50
Message-Id: 1653753023.115d217d14dd98783c3c6131708955c06e12f63b.sping@gentoo
1 commit: 115d217d14dd98783c3c6131708955c06e12f63b
2 Author: Sebastian Pipping <sping <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 28 15:50:23 2022 +0000
4 Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
5 CommitDate: Sat May 28 15:50:23 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=115d217d
7
8 media-plugins/ladspa-bs2b: Address .la files + EAPI 8
9
10 Closes: https://bugs.gentoo.org/847646
11 Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org>
12 Package-Manager: Portage-3.0.30, Repoman-3.0.3
13
14 .../ladspa-bs2b/ladspa-bs2b-0.9.1-r2.ebuild | 23 ++++++++++++++++++++++
15 1 file changed, 23 insertions(+)
16
17 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
18 new file mode 100644
19 index 000000000000..335c9aee6c76
20 --- /dev/null
21 +++ b/media-plugins/ladspa-bs2b/ladspa-bs2b-0.9.1-r2.ebuild
22 @@ -0,0 +1,23 @@
23 +# Copyright 1999-2022 Gentoo Authors
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI="8"
27 +
28 +DESCRIPTION="LADSPA plugin for bs2b headphone filter"
29 +HOMEPAGE="http://bs2b.sourceforge.net/"
30 +SRC_URI="mirror://sourceforge/bs2b/plugins/LADSPA%20plugin/${PV}/${P}.tar.bz2"
31 +
32 +LICENSE="|| ( GPL-2 GPL-3 )"
33 +SLOT="0"
34 +KEYWORDS="~amd64 ~x86"
35 +IUSE=""
36 +
37 +DEPEND="media-libs/ladspa-sdk
38 + >=media-libs/libbs2b-3.1.0"
39 +
40 +RDEPEND="${DEPEND}"
41 +
42 +src_install() {
43 + default
44 + find "${D}" -name '*.la' -delete || die
45 +}