diff options
author | Paul Zander <negril.nx+gentoo@gmail.com> | 2023-12-08 15:20:37 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-01-10 12:41:00 +0000 |
commit | 1292fc663dc19c86b54e1076eb36a9b5b714c7d6 (patch) | |
tree | 715adbef78fddb2bbb31dfb4e7e91e6c00c81a81 /media-libs/osl/osl-1.12.14.0.ebuild | |
parent | media-libs/jasper: add 4.1.1 (diff) | |
download | gentoo-1292fc663dc19c86b54e1076eb36a9b5b714c7d6.tar.gz gentoo-1292fc663dc19c86b54e1076eb36a9b5b714c7d6.tar.bz2 gentoo-1292fc663dc19c86b54e1076eb36a9b5b714c7d6.zip |
media-libs/osl: add 1.12.14.0
Signed-off-by: Paul Zander <negril.nx+gentoo@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/34220
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-libs/osl/osl-1.12.14.0.ebuild')
-rw-r--r-- | media-libs/osl/osl-1.12.14.0.ebuild | 144 |
1 files changed, 144 insertions, 0 deletions
diff --git a/media-libs/osl/osl-1.12.14.0.ebuild b/media-libs/osl/osl-1.12.14.0.ebuild new file mode 100644 index 000000000000..9cfb9be255ac --- /dev/null +++ b/media-libs/osl/osl-1.12.14.0.ebuild @@ -0,0 +1,144 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..12} ) + +# Check this on updates +LLVM_MAX_SLOT=15 + +inherit cmake flag-o-matic llvm toolchain-funcs python-single-r1 + +DESCRIPTION="Advanced shading language for production GI renderers" +HOMEPAGE="https://www.imageworks.com/technology/opensource https://github.com/AcademySoftwareFoundation/OpenShadingLanguage" +# If a development release, please don't keyword! +SRC_URI="https://github.com/AcademySoftwareFoundation/OpenShadingLanguage/archive/v${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/OpenShadingLanguage-${PV}" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64" + +X86_CPU_FEATURES=( + sse2:sse2 sse3:sse3 ssse3:ssse3 sse4_1:sse4.1 sse4_2:sse4.2 + avx:avx avx2:avx2 avx512f:avx512f f16c:f16c +) +CPU_FEATURES=( ${X86_CPU_FEATURES[@]/#/cpu_flags_x86_} ) + +IUSE="doc gui partio qt6 test ${CPU_FEATURES[@]%:*} python" +RESTRICT="!test? ( test )" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +RDEPEND=" + dev-libs/boost:= + dev-libs/pugixml + >=media-libs/openexr-3:0= + >=media-libs/openimageio-2.3.12.0:= + <sys-devel/clang-$((${LLVM_MAX_SLOT} + 1)):= + sys-libs/zlib:= + python? ( + ${PYTHON_DEPS} + $(python_gen_cond_dep ' + dev-python/pybind11[${PYTHON_USEDEP}] + ') + ) + partio? ( media-libs/partio ) + gui? ( + !qt6? ( + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 + ) + qt6? ( + dev-qt/qtbase:6[gui,widgets] + ) + ) +" + +DEPEND="${RDEPEND}" +BDEPEND=" + sys-devel/bison + sys-devel/flex + virtual/pkgconfig +" + +llvm_check_deps() { + has_version -r "sys-devel/clang:${LLVM_SLOT}" +} + +pkg_setup() { + llvm_pkg_setup + + use python && python-single-r1_pkg_setup +} + +src_configure() { + local cpufeature + local mysimd=() + for cpufeature in "${CPU_FEATURES[@]}"; do + use "${cpufeature%:*}" && mysimd+=("${cpufeature#*:}") + done + + local mybatched=() + use cpu_flags_x86_avx && mybatched+=( + "b8_AVX" + ) + use cpu_flags_x86_avx2 && mybatched+=( + "b8_AVX2" + "b8_AVX2_noFMA" + ) + use cpu_flags_x86_avx512f && mybatched+=( + "b8_AVX512" + "b8_AVX512_noFMA" + "b16_AVX512" + "b16_AVX512_noFMA" + ) + + # If no CPU SIMDs were used, completely disable them + [[ -z ${mysimd} ]] && mysimd=("0") + [[ -z ${mybatched} ]] && mybatched=("0") + + # This is currently needed on arm64 to get the NEON SIMD wrapper to compile the code successfully + # Even if there are no SIMD features selected, it seems like the code will turn on NEON support if it is available. + use arm64 && append-flags -flax-vector-conversions + + local gcc="$(tc-getCC)" + local mycmakeargs=( + # std::tuple_size_v is c++17 + -DCMAKE_CXX_STANDARD=17 + -DDOWNSTREAM_CXX_STANDARD=17 + -DCMAKE_INSTALL_DOCDIR="share/doc/${PF}" + -DINSTALL_DOCS=$(usex doc) + -DUSE_CCACHE=OFF + -DLLVM_STATIC=OFF + -DOSL_BUILD_TESTS=$(usex test) + -DSTOP_ON_WARNING=OFF + -DUSE_PARTIO=$(usex partio) + -DUSE_PYTHON=$(usex python) + -DPYTHON_VERSION="${EPYTHON/python}" + -DUSE_SIMD="$(IFS=","; echo "${mysimd[*]}")" + -DUSE_BATCHED="$(IFS=","; echo "${mybatched[*]}")" + -DVEC_REPORT=yes + ) + + if use gui; then + mycmakeargs+=( -DUSE_QT=yes ) + if ! use qt6; then + mycmakeargs+=( -DCMAKE_DISABLE_FIND_PACKAGE_Qt6=ON ) + fi + else + mycmakeargs+=( -DUSE_QT=no ) + fi + + cmake_src_configure +} + +src_test() { + # TODO: investigate failures + local myctestargs=( + -E "(osl-imageio|osl-imageio.opt|render-background|render-bumptest|render-mx-furnace-burley-diffuse|render-mx-furnace-sheen|render-mx-burley-diffuse|render-mx-conductor|render-mx-generalized-schlick|render-mx-generalized-schlick-glass|render-microfacet|render-oren-nayar|render-uv|render-veachmis|render-ward|render-raytypes.opt|color|color.opt|example-deformer)" + ) + + cmake_src_test +} |