diff options
author | Sebastian Parborg <darkdefende@gmail.com> | 2023-07-02 23:06:55 +0200 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-07-16 19:39:41 +0100 |
commit | d6af608ad3b3519f7cbd4e4158afbb7c979d887c (patch) | |
tree | 71ec4b7978c06d69d8befe9f026632da0304da7f /media-gfx/blender/blender-3.5.1-r1.ebuild | |
parent | media-gfx/blender: Bump 3.6.0 (diff) | |
download | gentoo-d6af608ad3b3519f7cbd4e4158afbb7c979d887c.tar.gz gentoo-d6af608ad3b3519f7cbd4e4158afbb7c979d887c.tar.bz2 gentoo-d6af608ad3b3519f7cbd4e4158afbb7c979d887c.zip |
media-gfx/blender: Disable OSL support per default
Because llvm 16 is now marked stable, there is a very high chance of
users having Blender sefault on startup because of missmatched llvm
libraries.
Signed-off-by: Sebastian Parborg <darkdefende@gmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-gfx/blender/blender-3.5.1-r1.ebuild')
-rw-r--r-- | media-gfx/blender/blender-3.5.1-r1.ebuild | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/media-gfx/blender/blender-3.5.1-r1.ebuild b/media-gfx/blender/blender-3.5.1-r1.ebuild index 28e3907b79b1..3a41bd4ce801 100644 --- a/media-gfx/blender/blender-3.5.1-r1.ebuild +++ b/media-gfx/blender/blender-3.5.1-r1.ebuild @@ -29,7 +29,7 @@ IUSE="+bullet +dds +fluid +openexr +tbb alembic collada +color-management cuda +cycles cycles-bin-kernels debug doc +embree +ffmpeg +fftw +gmp jack jemalloc jpeg2k man +nanovdb ndof nls openal +oidn +openmp +openpgl +opensubdiv - +openvdb optix +osl +pdf +potrace +pugixml pulseaudio sdl + +openvdb optix osl +pdf +potrace +pugixml pulseaudio sdl +sndfile test +tiff valgrind wayland X" RESTRICT="!test? ( test )" @@ -401,6 +401,14 @@ pkg_postinst() { elog "changing the 'Temporary Files' directory in Blender preferences." elog + if use osl; then + ewarn "" + ewarn "OSL is know to cause runtime segfaults if Mesa has been linked to" + ewarn "an other LLVM version than what OSL is linked to." + ewarn "See https://bugs.gentoo.org/880671 for more details" + ewarn "" + fi + if ! use python_single_target_python3_10; then elog "You are building Blender with a newer python version than" elog "supported by this version upstream." |