mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-09 00:07:57 +03:00
Update done using: ``` git grep -l sys-libs/zlib dev-* | xargs sed -i -e s@sys-libs/zlib@virtual/zlib@g git diff --name-only | xargs copybump git diff --name-only | xargs grep -l PYTHON_COMPAT | xargs gpy-impl -@dead pkgcheck scan --commits -c SourcingCheck,VisibilityCheck --exit error ``` Followed by manual revert in dev-python/zlib-ng where it accidentally caught sys-libs/zlib-ng dependencies. Signed-off-by: Michał Górny <mgorny@gentoo.org>
124 lines
2.7 KiB
Bash
124 lines
2.7 KiB
Bash
# Copyright 2023-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
LLVM_COMPAT=( {18..20} )
|
|
PYTHON_COMPAT=( python3_{11..14} )
|
|
|
|
inherit llvm-r1 meson python-any-r1
|
|
|
|
MY_PV="${PV/_/-}"
|
|
|
|
DESCRIPTION="mesa_clc tool used for building OpenCL C to SPIR-V"
|
|
HOMEPAGE="https://mesa3d.org/"
|
|
|
|
if [[ ${PV} == 9999 ]]; then
|
|
S="${WORKDIR}/mesa_clc-${MY_PV}"
|
|
EGIT_REPO_URI="https://gitlab.freedesktop.org/mesa/mesa.git"
|
|
inherit git-r3
|
|
else
|
|
S="${WORKDIR}/mesa-${MY_PV}"
|
|
SRC_URI="https://archive.mesa3d.org/mesa-${MY_PV}.tar.xz"
|
|
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
|
|
fi
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
|
|
VIDEO_CARDS="asahi panfrost"
|
|
for card in ${VIDEO_CARDS}; do
|
|
IUSE_VIDEO_CARDS+=" video_cards_${card}"
|
|
done
|
|
IUSE="${IUSE_VIDEO_CARDS} debug"
|
|
|
|
RDEPEND="
|
|
dev-util/spirv-tools
|
|
$(llvm_gen_dep '
|
|
dev-util/spirv-llvm-translator:${LLVM_SLOT}
|
|
llvm-core/clang:${LLVM_SLOT}=
|
|
=llvm-core/libclc-${LLVM_SLOT}*
|
|
llvm-core/llvm:${LLVM_SLOT}=
|
|
')
|
|
"
|
|
DEPEND="${RDEPEND}
|
|
dev-libs/expat
|
|
>=virtual/zlib-1.2.8:=
|
|
x11-libs/libdrm
|
|
"
|
|
BDEPEND="
|
|
${PYTHON_DEPS}
|
|
$(python_gen_any_dep "
|
|
>=dev-python/mako-0.8.0[\${PYTHON_USEDEP}]
|
|
dev-python/packaging[\${PYTHON_USEDEP}]
|
|
dev-python/pyyaml[\${PYTHON_USEDEP}]
|
|
")
|
|
virtual/pkgconfig
|
|
"
|
|
|
|
python_check_deps() {
|
|
python_has_version -b ">=dev-python/mako-0.8.0[${PYTHON_USEDEP}]" &&
|
|
python_has_version -b "dev-python/packaging[${PYTHON_USEDEP}]" &&
|
|
python_has_version -b "dev-python/pyyaml[${PYTHON_USEDEP}]" || return 1
|
|
}
|
|
|
|
pkg_setup() {
|
|
llvm-r1_pkg_setup
|
|
python-any-r1_pkg_setup
|
|
}
|
|
|
|
src_configure() {
|
|
tools_enable video_cards_asahi asahi
|
|
tools_enable video_cards_panfrost panfrost
|
|
|
|
tools_list() {
|
|
local tools="$(sort -u <<< "${1// /$'\n'}")"
|
|
echo "${tools//$'\n'/,}"
|
|
}
|
|
|
|
PKG_CONFIG_PATH="$(get_llvm_prefix)/$(get_libdir)/pkgconfig"
|
|
|
|
use debug && EMESON_BUILDTYPE=debug
|
|
|
|
local emesonargs=(
|
|
-Dllvm=enabled
|
|
-Dshared-llvm=enabled
|
|
-Dmesa-clc=enabled
|
|
-Dinstall-mesa-clc=true
|
|
-Dprecomp-compiler=enabled
|
|
-Dinstall-precomp-compiler=true
|
|
-Dtools=$(tools_list "${TOOLS[*]}")
|
|
|
|
-Dgallium-drivers=''
|
|
-Dvulkan-drivers=''
|
|
|
|
# Set platforms empty to avoid the default "auto" setting. If
|
|
# platforms is empty meson.build will add surfaceless.
|
|
-Dplatforms=''
|
|
|
|
-Dglx=disabled
|
|
-Dlibunwind=disabled
|
|
-Dzstd=disabled
|
|
|
|
-Db_ndebug=$(usex debug false true)
|
|
)
|
|
|
|
meson_src_configure
|
|
}
|
|
|
|
src_install() {
|
|
dobin "${BUILD_DIR}"/src/compiler/clc/mesa_clc
|
|
dobin "${BUILD_DIR}"/src/compiler/spirv/vtn_bindgen2
|
|
use video_cards_asahi && dobin "${BUILD_DIR}"/src/asahi/clc/asahi_clc
|
|
use video_cards_panfrost && dobin "${BUILD_DIR}"/src/panfrost/clc/panfrost_compile
|
|
}
|
|
|
|
# $1 - VIDEO_CARDS flag (check skipped for "--")
|
|
# other args - names of tools to enable
|
|
tools_enable() {
|
|
if [[ $1 == -- ]] || use $1; then
|
|
shift
|
|
TOOLS+=("$@")
|
|
fi
|
|
}
|