diff options
author | Sam James <sam@gentoo.org> | 2022-12-16 01:27:26 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-12-16 01:38:34 +0000 |
commit | 14c4b002285e77d9e0a46b1575e4fcdff55e68c8 (patch) | |
tree | 160853e0f63c6bbfe540bf00dadf768e3719d814 /media-gfx/yafaray/yafaray-3.5.1-r2.ebuild | |
parent | media-gfx/xv: add media-libs/libtiff subslot dep (diff) | |
download | gentoo-14c4b002285e77d9e0a46b1575e4fcdff55e68c8.tar.gz gentoo-14c4b002285e77d9e0a46b1575e4fcdff55e68c8.tar.bz2 gentoo-14c4b002285e77d9e0a46b1575e4fcdff55e68c8.zip |
media-gfx/yafaray: add media-libs/libtiff subslot dep
libtiff changed SONAME.
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-gfx/yafaray/yafaray-3.5.1-r2.ebuild')
-rw-r--r-- | media-gfx/yafaray/yafaray-3.5.1-r2.ebuild | 115 |
1 files changed, 0 insertions, 115 deletions
diff --git a/media-gfx/yafaray/yafaray-3.5.1-r2.ebuild b/media-gfx/yafaray/yafaray-3.5.1-r2.ebuild deleted file mode 100644 index 1da10dced60a..000000000000 --- a/media-gfx/yafaray/yafaray-3.5.1-r2.ebuild +++ /dev/null @@ -1,115 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..11} ) - -# doesn't build with ninja when qt5 and python USE flags are both enabled -CMAKE_MAKEFILE_GENERATOR="emake" - -inherit cmake flag-o-matic python-single-r1 - -DESCRIPTION="A free open-source montecarlo raytracing engine" -# Regular homepage is currently down. Upstream is working on this. -HOMEPAGE="https://www.yafaray.org https://github.com/YafaRay/libYafaRay" -SRC_URI="https://github.com/YafaRay/libYafaRay/archive/v${PV}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/libYafaRay-${PV}" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="+fastmath +fasttrig jpeg opencv png python qt5 tiff truetype" -RESTRICT="test" - -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" - -# Note: according to upstream, the blender plugin doesn't work with >=blender-2.8 (yet). -RDEPEND=" - dev-libs/libxml2:2 - sys-libs/zlib - jpeg? ( media-libs/libjpeg-turbo:= ) - opencv? ( media-libs/opencv:= ) - png? ( media-libs/libpng:= ) - python? ( ${PYTHON_DEPS} ) - qt5? ( dev-qt/qtwidgets:5 ) - tiff? ( media-libs/tiff ) - truetype? ( media-libs/freetype:2 ) -" -DEPEND="${RDEPEND}" -BDEPEND=" - python? ( - ${PYTHON_DEPS} - dev-lang/swig - ) -" - -PATCHES=( - "${FILESDIR}"/${P}-0001-respect-distribution-CFLAGS.patch - "${FILESDIR}"/${P}-add-missing-limits-header.patch -) - -DOCS=( AUTHORS.md CHANGELOG.md CODING.md INSTALL.md README.md ) - -pkg_setup() { - use python && python-single-r1_pkg_setup -} - -src_prepare() { - append-flags -pthread - append-ldflags -pthread - - cmake_src_prepare -} - -src_configure() { - local mycmakeargs=( - # enabling BLENDER_ADDON doesn't build anything, but set's some wierd - # installation paths, so keep it off and install the files manually. - -DBLENDER_ADDON=OFF - -DFAST_MATH=$(usex fastmath) - -DFAST_TRIG=$(usex fasttrig) - -DWITH_Freetype=$(usex truetype) - -DWITH_JPEG=$(usex jpeg) - -DWITH_OpenCV=$(usex opencv) - -DWITH_OpenEXR=OFF # bug #877865 - -DWITH_PNG=$(usex png) - -DWITH_QT=$(usex qt5) - -DWITH_TIFF=$(usex tiff) - -DWITH_XML_LOADER=ON - -DWITH_XMLImport=ON - -DWITH_YAF_PY_BINDINGS=$(usex python) - -DWITH_YAF_RUBY_BINDINGS=OFF - -DYAF_DOC_DIR=share/doc/${PF} - -DYAF_LIB_DIR=$(get_libdir) - ) - - if use python; then - mycmakeargs+=( -DYAF_PY_VERSION=${EPYTHON#python} ) - fi - - cmake_src_configure -} - -src_install() { - cmake_src_install - - if use python; then - python_domodule "${BUILD_DIR}/src/bindings/yafaray_v3_interface.py" - mv "${ED}"/usr/$(get_libdir)/_yafaray_v3_interface.so "${ED}"/$(python_get_sitedir)/ || die - rm -v "${ED}"/usr/$(get_libdir)/yafaray_v3_interface.py || die - - if use qt5; then - python_domodule "${BUILD_DIR}/src/bindings/yafqt.py" - mv "${ED}"/usr/$(get_libdir)/_yafqt.so "${ED}"/$(python_get_sitedir)/ || die - rm -v "${ED}"/usr/$(get_libdir)/yafqt.py || die - fi - fi -} - -pkg_postinst() { - einfo "To confirm your installation is working as expected, run" - einfo "yafaray-xml with /usr/share/yafaray/tests/test01/test01.xml" - einfo "as an input file, then compare the result to" - einfo "'/usr/share/yafaray/tests/test01/test01 - expected render result.png'" -} |