commit:     0e8eac2c78f6c52648cf5d26c743df32a9b4b697
Author:     Nick Sarnie <sarnex <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 18 08:16:01 2024 +0000
Commit:     Nick Sarnie <sarnex <AT> gentoo <DOT> org>
CommitDate: Fri Oct 18 08:28:37 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e8eac2c

media-libs/shaderc: add 2024.3

Signed-off-by: Nick Sarnie <sarnex <AT> gentoo.org>

 media-libs/shaderc/Manifest              |  1 +
 media-libs/shaderc/shaderc-2024.3.ebuild | 79 ++++++++++++++++++++++++++++++++
 2 files changed, 80 insertions(+)

diff --git a/media-libs/shaderc/Manifest b/media-libs/shaderc/Manifest
index d1b2543dcc54..6df60c02308b 100644
--- a/media-libs/shaderc/Manifest
+++ b/media-libs/shaderc/Manifest
@@ -1 +1,2 @@
 DIST shaderc-2024.1.tar.gz 227211 BLAKE2B 
a4c9790cb117e4cf2d528ed294ef0599dc3c17ac367a4f658254ff9e161f82b3338a2d70a033fabcdb7a2925c2f4668ee89cfff0d4b88cd2b22fcfb3f2786ea9
 SHA512 
017d8625c66da7eb5b431f595b27a4ddf146aaa12ef56777cb8c3f7f0f15eb01c3286e5905c5268de55d07cc19d5ffae4d4c08987d105b0a6be74616a467b736
+DIST shaderc-2024.3.tar.gz 227490 BLAKE2B 
0f9df6251b1a107c89a4e509c7a36f4035b5282f11e0b00cb7a1603b3212917894e805337d2404509b839dd9ac40aa19d8aa23bf6666b330dae2cfdabc18c9c6
 SHA512 
ba990054b3e50bd1c3e7decaca80b80dfade0f15505f6e89c455b7a114b8507931dff2c570ca81fd38882472e7d7014c417ca8f4c1117fc0e6825ea9f669222a

diff --git a/media-libs/shaderc/shaderc-2024.3.ebuild 
b/media-libs/shaderc/shaderc-2024.3.ebuild
new file mode 100644
index 000000000000..90e614d6c010
--- /dev/null
+++ b/media-libs/shaderc/shaderc-2024.3.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..13} )
+inherit cmake-multilib python-any-r1
+
+DESCRIPTION="Collection of tools, libraries and tests for shader compilation"
+HOMEPAGE="https://github.com/google/shaderc";
+EGIT_COMMIT="${PV}"
+SRC_URI="https://github.com/google/${PN}/archive/v${EGIT_COMMIT}.tar.gz -> 
${P}.tar.gz"
+S="${WORKDIR}/${PN}-${EGIT_COMMIT}"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~loong ~ppc64 ~riscv ~x86"
+IUSE="doc"
+
+RDEPEND="
+       >=dev-util/glslang-1.3.296.0:=[${MULTILIB_USEDEP}]
+       >=dev-util/spirv-tools-1.3.296.0[${MULTILIB_USEDEP}]
+"
+DEPEND="${RDEPEND}
+       ${PYTHON_DEPS}
+       >=dev-util/spirv-headers-1.3.296.0"
+
+BDEPEND="doc? ( dev-ruby/asciidoctor )"
+
+PATCHES=(
+       "${FILESDIR}"/${PN}-2020.4-fix-build.patch
+)
+
+# https://github.com/google/shaderc/issues/470
+RESTRICT=test
+
+src_prepare() {
+       cmake_comment_add_subdirectory examples
+
+       # Unbundle glslang, spirv-headers, spirv-tools
+       cmake_comment_add_subdirectory third_party
+       sed -i \
+               -e "s|\$<TARGET_FILE:spirv-dis>|${EPREFIX}/usr/bin/spirv-dis|" \
+               glslc/test/CMakeLists.txt || die
+
+       # Disable git versioning
+       sed -i -e '/build-version/d' glslc/CMakeLists.txt || die
+
+       # Manually create build-version.inc as we disabled git versioning
+       cat <<- EOF > glslc/src/build-version.inc || die
+               "${P}\n"
+               "$(best_version dev-util/spirv-tools)\n"
+               "$(best_version dev-util/glslang)\n"
+       EOF
+
+       cmake_src_prepare
+}
+
+multilib_src_configure() {
+       local mycmakeargs=(
+               -DSHADERC_SKIP_TESTS="true"
+               -DSHADERC_ENABLE_WERROR_COMPILE="false"
+       )
+       cmake_src_configure
+}
+
+multilib_src_compile() {
+       if multilib_is_native_abi && use doc; then
+               cmake_src_compile glslc_doc_README
+       fi
+       cmake_src_compile
+}
+
+multilib_src_install() {
+       if multilib_is_native_abi; then
+               use doc && local HTML_DOCS=( "${BUILD_DIR}/glslc/README.html" )
+       fi
+       cmake_src_install
+}

Reply via email to