From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 72DD11382C5 for ; Mon, 25 Jan 2021 12:23:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B5424E09ED; Mon, 25 Jan 2021 12:23:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9BC71E09ED for ; Mon, 25 Jan 2021 12:23:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9C0FE340FC5 for ; Mon, 25 Jan 2021 12:23:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EA75A32B for ; Mon, 25 Jan 2021 12:23:09 +0000 (UTC) From: "Aisha Tammy" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aisha Tammy" Message-ID: <1611577381.bf28a67118ec9eddf8ada5953d85f8637013d635.epsilon-0@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: media-libs/embree-bin/ X-VCS-Repository: proj/sci X-VCS-Files: media-libs/embree-bin/embree-bin-3.12.2.ebuild X-VCS-Directories: media-libs/embree-bin/ X-VCS-Committer: epsilon-0 X-VCS-Committer-Name: Aisha Tammy X-VCS-Revision: bf28a67118ec9eddf8ada5953d85f8637013d635 X-VCS-Branch: master Date: Mon, 25 Jan 2021 12:23:09 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f1cc1440-e77c-4f39-a568-562df503bcff X-Archives-Hash: 6d2d8142abf50829fe8df277f3b017f7 commit: bf28a67118ec9eddf8ada5953d85f8637013d635 Author: Aisha Tammy aisha cc> AuthorDate: Mon Jan 25 12:22:34 2021 +0000 Commit: Aisha Tammy aisha cc> CommitDate: Mon Jan 25 12:23:01 2021 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=bf28a671 media-libs/embree-bin: version bump to 3.12.2 Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: Aisha Tammy aisha.cc> media-libs/embree-bin/embree-bin-3.12.2.ebuild | 55 ++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) diff --git a/media-libs/embree-bin/embree-bin-3.12.2.ebuild b/media-libs/embree-bin/embree-bin-3.12.2.ebuild new file mode 100644 index 000000000..7b9d5d0dd --- /dev/null +++ b/media-libs/embree-bin/embree-bin-3.12.2.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="high-performance ray tracing kernels from intel" +HOMEPAGE="https://github.com/embree/embree" +SRC_URI="https://github.com/embree/embree/releases/download/v${PV}/embree-${PV}.x86_64.linux.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}"/embree-${PV}.x86_64.linux +RESTRICT="mirror" + +LICENSE="Apache-2.0" +KEYWORDS="~amd64" +SLOT="0" +RESTRICT="strip" + +QA_PREBUILT="opt/embree/bin/.*" +QA_PRESTRIPPED="opt/embree/lib/libembree3.so.3" + +RDEPEND=" + dev-cpp/tbb + dev-lang/ispc + media-libs/glfw + media-libs/glu + virtual/jpeg:0 + virtual/opengl + x11-libs/libxcb + x11-libs/libX11 + x11-libs/libXau + x11-libs/libXdmcp +" + +src_compile() { + true +} + +src_install() { + dodir /opt/embree + cp -r "${S}"/* "${ED}"/opt/embree/ || die + + doenvd "${FILESDIR}"/00embree_bin +} + +pkg_postinst() { + elog "Embree has been installed to /opt/embree" + elog "you are all set to start using it as binary package" + elog "after you refresh your environment with" + elog " env-update && . /etc/profile" + elog "If you want to use embree as a library and wist to" + elog "do development using embree, you need to source" + elog "the appropriate shell script from either" + elog " . /opt/embree/embree-vars.sh" + elog "or if you are using csh" + elog " . /opt/embree/embree-vars.csh" +}