# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 MY_PN=SPIRV-Tools CMAKE_ECLASS="cmake" PYTHON_COMPAT=( python3_{6,7,8} ) inherit cmake-multilib python-any-r1 if [[ ${PV} == *9999* ]]; then EGIT_REPO_URI="https://github.com/KhronosGroup/${MY_PN}.git" inherit git-r3 else SNAPSHOT_COMMIT="49ca250b44c633ba7cb8897002e62781a451421c" SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/${SNAPSHOT_COMMIT}.tar.gz -> ${P}.tar.gz" KEYWORDS="amd64 ~ppc64 x86" S="${WORKDIR}"/${MY_PN}-${SNAPSHOT_COMMIT} fi DESCRIPTION="Provides an API and commands for processing SPIR-V modules" HOMEPAGE="https://github.com/KhronosGroup/SPIRV-Tools" LICENSE="Apache-2.0" SLOT="0" # Tests fail upon finding symbols that do not match a regular expression # in the generated library. Easily hit with non-standard compiler flags RESTRICT="test" COMMON_DEPEND=">=dev-util/spirv-headers-1.5.3" DEPEND="${COMMON_DEPEND}" RDEPEND="" BDEPEND="${PYTHON_DEPS} ${COMMON_DEPEND}" multilib_src_configure() { local mycmakeargs=( "-DSPIRV-Headers_SOURCE_DIR=/usr/" "-DSPIRV_WERROR=OFF" ) cmake_src_configure }