dev-util/cpputest: use dot-a.eclass

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

Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
This commit is contained in:
Eli Schwartz 2025-05-06 11:23:23 -04:00
parent 766b26c8b7
commit 347641e47e
No known key found for this signature in database
GPG Key ID: 84A7D12B700D2F57

View File

@ -3,7 +3,7 @@
EAPI=8
inherit autotools
inherit autotools dot-a
DESCRIPTION="Unit testing and mocking framework for C/C++"
HOMEPAGE="https://cpputest.github.io/ https://github.com/cpputest/cpputest"
@ -28,3 +28,13 @@ src_prepare() {
default
eautoreconf
}
src_configure() {
lto-guarantee-fat
default
}
src_install() {
default
strip-lto-bytecode
}