commit: d28f6ef7df51403fe31fd542beec52303f4c31a5 Author: Eli Schwartz <eschwartz <AT> gentoo <DOT> org> AuthorDate: Tue Jul 29 02:56:20 2025 +0000 Commit: Eli Schwartz <eschwartz <AT> gentoo <DOT> org> CommitDate: Tue Jul 29 03:34:24 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d28f6ef7
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 <AT> gentoo.org> sci-biology/clustal-omega/clustal-omega-1.2.4-r1.ebuild | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/sci-biology/clustal-omega/clustal-omega-1.2.4-r1.ebuild b/sci-biology/clustal-omega/clustal-omega-1.2.4-r1.ebuild index 4d5b2a779bf9..50d8ce873de9 100644 --- a/sci-biology/clustal-omega/clustal-omega-1.2.4-r1.ebuild +++ b/sci-biology/clustal-omega/clustal-omega-1.2.4-r1.ebuild @@ -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 }
