sys-apps/pandora_box: Enable optional static linking

Signed-off-by: Patrick Lauer <patrick@gentoo.org>
This commit is contained in:
Patrick Lauer
2025-01-21 06:38:03 +00:00
parent f9a108f7ac
commit cfb95c8a5b

View File

@@ -7,6 +7,8 @@ EAPI=8
SYDVER=3.30.0
IUSE="static"
CRATES="
ahash@0.8.11
argv@0.1.11
@@ -123,3 +125,10 @@ SLOT="0"
KEYWORDS="~amd64"
S=${WORKDIR}/syd-v${SYDVER}/pandora
src_configure() {
if use static; then
export RUSTFLAGS+="-Ctarget-feature=+crt-static"
fi
cargo_src_configure
}