mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-10 00:10:19 +03:00
... to avoid installing broken static libraries w/ LTO. Closes: https://bugs.gentoo.org/958348 Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
39 lines
743 B
Bash
39 lines
743 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
MY_PN=DirectX-Headers
|
|
inherit dot-a meson-multilib
|
|
|
|
if [[ ${PV} == *9999* ]]; then
|
|
EGIT_REPO_URI="https://github.com/microsoft/${MY_PN}.git"
|
|
inherit git-r3
|
|
else
|
|
SRC_URI="https://github.com/microsoft/${MY_PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
KEYWORDS="~amd64 ~x86"
|
|
S="${WORKDIR}"/${MY_PN}-${PV}
|
|
fi
|
|
|
|
DESCRIPTION="DirectX header files and WSL stubs"
|
|
HOMEPAGE="https://github.com/microsoft/DirectX-Headers"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
|
|
multilib_src_configure() {
|
|
lto-guarantee-fat
|
|
|
|
local emesonargs=(
|
|
-Dbuild-test=false
|
|
)
|
|
|
|
meson_src_configure
|
|
}
|
|
|
|
multilib_src_install_all() {
|
|
strip-lto-bytecode
|
|
einstalldocs
|
|
|
|
}
|