profiles: Remove last-rited media-gfx/yafaray
authorAndreas Sturmlechner <asturm@gentoo.org>
Thu, 15 Mar 2018 15:23:50 +0000 (16:23 +0100)
committerAndreas Sturmlechner <asturm@gentoo.org>
Thu, 15 Mar 2018 16:33:32 +0000 (17:33 +0100)
Ancient bugs, no one to fix.

Closes: https://bugs.gentoo.org/321169
Closes: https://bugs.gentoo.org/595684

media-gfx/yafaray/Manifest [deleted file]
media-gfx/yafaray/metadata.xml [deleted file]
media-gfx/yafaray/yafaray-0.1.1.ebuild [deleted file]
profiles/package.mask

diff --git a/media-gfx/yafaray/Manifest b/media-gfx/yafaray/Manifest
deleted file mode 100644 (file)
index 1c433f0..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST YafaRay-blender.0.1.1.zip 37965 BLAKE2B 7a17460b9b4e4abfd17c4e692e5686d02cdefd8fd5c941088c2af91659970ac88b183ef677a89b4be90eb9f1515283e9f41bb1c1f92b249a1131b51f2f63eb78 SHA512 0c424ec43fdd172a4e4729983807cff57ec9db335d5a4b48721c9790dbda2306e5d156a7b150b8565fe7ecebb840beb77bf6b29d8a836a8faef97c0ba5077b86
-DIST YafaRay.0.1.1.zip 542063 BLAKE2B 94827b83e27427a1e05377a3be3698c18f7a2ba3a6d25b662c6be432cedc683454b056bb33d490ba039a95977bbc024002c66c5389e25e191b395c9f67494934 SHA512 ba4deb56c20a67fe408b1797c518e12cccdb8f3d12fbfc6734bec40dc4d9d2ebfd2551762ed9064ed562d04d212b2154a9cd0011962fac28381b0d2ab2433ba0
diff --git a/media-gfx/yafaray/metadata.xml b/media-gfx/yafaray/metadata.xml
deleted file mode 100644 (file)
index f9d6744..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="project">
-       <email>graphics@gentoo.org</email>
-       <name>Gentoo Graphics Project</name>
-</maintainer>
-<longdescription lang="en">
-YafaRay is a raytracing open source render engine. Raytracing is a rendering technique for generating realistic images by tracing the path of light through a 3D scene.
-An render engine consists of a "faceless" computer program that interacts with a host 3D application to provide very specific raytracing capabilties "on demand". Blender 3D is the host application of YafaRay.
-</longdescription>
-<use>
-       <flag name="blender">install <pkg>media-gfx/blender</pkg> scripts</flag>
-</use>
-</pkgmetadata>
diff --git a/media-gfx/yafaray/yafaray-0.1.1.ebuild b/media-gfx/yafaray/yafaray-0.1.1.ebuild
deleted file mode 100644 (file)
index a3f9582..0000000
+++ /dev/null
@@ -1,84 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=2
-MY_PN="YafaRay"
-
-inherit multilib
-
-DESCRIPTION="YafaRay is a raytracing open source render engine"
-HOMEPAGE="http://www.yafaray.org/"
-SRC_URI="http://static.yafaray.org/sources/${MY_PN}.${PV}.zip
-       blender? (
-       http://static.yafaray.org/sources/${MY_PN}-blender.${PV}.zip
-       )"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+blender debug qt4"
-
-RDEPEND="
-       dev-libs/libxml2
-       media-libs/freetype
-       media-libs/libpng
-       media-libs/openexr
-       sys-libs/zlib
-       virtual/jpeg
-       blender? ( >=media-gfx/blender-2.49 )
-       qt4? ( dev-qt/qtcore:4
-               dev-qt/qtgui:4 )"
-DEPEND="${RDEPEND}
-       app-arch/unzip
-       dev-lang/swig
-       >=dev-util/scons-1.0"
-
-S="${WORKDIR}/${PN}"
-
-src_prepare() {
-       sed -i \
-               -e 's:-Wall::g' \
-               -e 's:-O3 -ffast-math::g' \
-               "${S}"/config/linux2-config.py || die "sed failed"
-       sed -i \
-           -e "s:env.subst('\$YF_PLUGINPATH'):\"/usr/$(get_libdir)/yafaray\":"\
-               "${S}"/tools/writeconfig.py || die "sed failed"
-       # add correct paths for qt-libs
-       echo 'gui_env.Append(CPPPATH = ["/usr/include/qt4"])' >> "${S}"/src/gui/SConscript
-       echo "gui_env.Append(LIBPATH = [\"/usr/$(get_libdir)/qt4\"])" >> "${S}"/src/gui/SConscript
-}
-
-user_config() {
-       echo $@ >> "${S}"/user-config.py
-}
-
-src_configure() {
-       user_config "CCFLAGS=\"${CXXFLAGS}\""
-       user_config "PREFIX=\"${D}/usr\""
-       user_config "BASE_LPATH=\"/usr/$(get_libdir)/\""
-       user_config "YF_LIBOUT=\"\${PREFIX}/$(get_libdir)/\""
-       user_config "YF_PLUGINPATH=\"\${PREFIX}/$(get_libdir)/yafaray/\""
-       if use qt4; then
-               user_config "WITH_YF_QT='true'"
-               user_config "YF_QTDIR='/usr'"
-       fi
-       use debug && user_config "YF_DEBUG='true'"
-}
-
-src_compile() {
-       scons ${MAKEOPTS} || die "scons failed"
-       scons swig || die "scons swig failed"
-}
-
-src_install() {
-       scons install || die "scons install failed"
-       scons swig_install || die "scons swig_install failed"
-
-       if use blender; then
-               cd ../yafaray-blender
-               insinto /usr/share/blender/scripts
-               doins yafaray_ui.py
-               insinto /usr/share/yafaray/blender
-               doins yaf_*.py
-       fi
-}
index e0627588978ac4f0b52d1dfd3b9646b5b161f63b..24c6e56894f3f2e1202e9eb66fa3632d32e03403 100644 (file)
@@ -458,16 +458,6 @@ net-misc/cocaine-core
 # Depends on dead Qt4, upstream porting inquiry pending. Bug #631788
 games-kids/crayon-physics
 
-# Jonas Stein <jstein@gentoo.org> (29 Nov 2017)
-# The old yafaray-0.1.1 depends on qt4 and has bugs we can not fix.
-# (bug #321169) and (bug #595684)
-# Users of yafaray may be interested in >=yafaray-3.3.0 (bug #639046)
-# and its fork TheBounty (#639158) which require completely new ebuilds.
-#
-# The old and for now the last version in the tree is
-# masked for removal on 2018-02-30
-=media-gfx/yafaray-0.1.1
-
 # Michał Górny <mgorny@gentoo.org> (25 Nov 2017)
 # Testing branch GTK+3 release. Changes API, breaks xfce-base/xfdesktop.
 # Masked until the latter sees a new release.