diff options
author | Sam James <sam@gentoo.org> | 2022-03-09 22:46:25 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-09 22:49:15 +0000 |
commit | b4ac841b5062448fee89bad2706a4194f7d1528c (patch) | |
tree | 02431a2eb89859394274d49238f15476d93c1c40 /media-plugins | |
parent | media-plugins/ir_lv2: fix UnusedInherits (flag-o-matic) (diff) | |
download | gentoo-b4ac841b5062448fee89bad2706a4194f7d1528c.tar.gz gentoo-b4ac841b5062448fee89bad2706a4194f7d1528c.tar.bz2 gentoo-b4ac841b5062448fee89bad2706a4194f7d1528c.zip |
media-plugins/swh-plugins: use eautoreconf (not autogen.sh); cleanup inherits
eautoreconf handles all these things for us, so best to use it anyway, but
also no error handling with e.g. autogen.sh as-it-was anyway.
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-plugins')
-rw-r--r-- | media-plugins/swh-plugins/swh-plugins-0.4.17.ebuild | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/media-plugins/swh-plugins/swh-plugins-0.4.17.ebuild b/media-plugins/swh-plugins/swh-plugins-0.4.17.ebuild index aeb2c673ccb7..896151126372 100644 --- a/media-plugins/swh-plugins/swh-plugins-0.4.17.ebuild +++ b/media-plugins/swh-plugins/swh-plugins-0.4.17.ebuild @@ -1,16 +1,16 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit autotools flag-o-matic multilib-minimal +inherit autotools flag-o-matic toolchain-funcs multilib-minimal DESCRIPTION="Large collection of LADSPA audio plugins/effects" HOMEPAGE="http://plugin.org.uk" SRC_URI="https://github.com/swh/ladspa/archive/v${PV}.tar.gz -> ${P}.tar.gz" -SLOT="0" LICENSE="GPL-2" +SLOT="0" KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86" IUSE="nls cpu_flags_x86_3dnow cpu_flags_x86_sse" @@ -40,9 +40,7 @@ src_prepare() { # Use system libgsm, also patch above, bug #252890 rm -rf gsm - NOCONFIGURE=1 ./autogen.sh - - elibtoolize + eautoreconf multilib_copy_sources } |