Diff ladspa-bs2b-0.9.1-r2 with a ladspa-bs2b-0.9.1-r3

/usr/portage/media-plugins/ladspa-bs2b/ladspa-bs2b-0.9.1-r3.ebuild 2023-10-09 14:52:31.744368407 +0300
1
# Copyright 1999-2022 Gentoo Authors
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI="8"
5 5

  
6
inherit autotools
7

  
6 8
DESCRIPTION="LADSPA plugin for bs2b headphone filter"
7 9
HOMEPAGE="http://bs2b.sourceforge.net/"
8 10
SRC_URI="mirror://sourceforge/bs2b/plugins/LADSPA%20plugin/${PV}/${P}.tar.bz2"
......
17 19

  
18 20
RDEPEND="${DEPEND}"
19 21

  
22
src_prepare() {
23
	default
24
	sed 's,dist-lzma,,' -i configure.ac || die
25
	eautoreconf  # bug 889426
26
}
27

  
20 28
src_install() {
21 29
	default
22 30
	find "${D}" -name '*.la' -delete || die
Thank you!