# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 CMAKE_BUILD_TYPE="Release" LLVM_MAX_SLOT="15" MY_PN="${PN/intel-/}" MY_P="${MY_PN}-${PV}" PYTHON_COMPAT=( python3_{9..11} ) inherit cmake llvm python-any-r1 DESCRIPTION="A set of new intrinsics on top of core LLVM IR instructions" HOMEPAGE="https://github.com/intel/vc-intrinsics" SRC_URI="https://github.com/intel/${MY_PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" S="${WORKDIR}/${MY_P}" LICENSE="MIT" SLOT="0" KEYWORDS="amd64" DEPEND=" dev-libs/libxml2:2= sys-devel/llvm:${LLVM_MAX_SLOT} sys-libs/zlib " RDEPEND="${DEPEND}" BDEPEND="${PYTHON_DEPS}" src_configure() { local mycmakeargs=( -DLLVM_DIR="$(get_llvm_prefix ${LLVM_MAX_SLOT})" ) cmake_src_configure }