sci-biology/clustal-omega: use dot-a.eclass

... to avoid installing broken static libraries w/ LTO.

Closes: https://bugs.gentoo.org/957836
Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
This commit is contained in:
Eli Schwartz 2025-07-28 22:56:20 -04:00
parent 6495d8eddc
commit d28f6ef7df
No known key found for this signature in database
GPG Key ID: 84A7D12B700D2F57

View File

@ -1,9 +1,9 @@
# Copyright 1999-2023 Gentoo Authors
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
inherit autotools dot-a
DESCRIPTION="Scalable multiple alignment of protein sequences"
HOMEPAGE="http://www.clustal.org/omega/"
@ -24,7 +24,13 @@ src_prepare() {
eautoreconf
}
src_configure() {
lto-guarantee-fat
default
}
src_install() {
default
find "${ED}" -name '*.la' -delete || die
strip-lto-bytecode
}