commit:     234c95fd29c9faed823e26bbd10566dc2fe9f77e
Author:     Khue Nguyen <Z5483Y <AT> gmail <DOT> com>
AuthorDate: Sat Jan 16 01:27:26 2021 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Feb  2 13:45:56 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=234c95fd

dev-libs/intel-neo: bump to 20.44.18297

Signed-off-by: Khue Nguyen <Z5483Y <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/19074
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 dev-libs/intel-neo/Manifest                     |  1 +
 dev-libs/intel-neo/intel-neo-20.44.18297.ebuild | 55 +++++++++++++++++++++++++
 2 files changed, 56 insertions(+)

diff --git a/dev-libs/intel-neo/Manifest b/dev-libs/intel-neo/Manifest
index bc6d4dd0fa9..0a5d7e182c9 100644
--- a/dev-libs/intel-neo/Manifest
+++ b/dev-libs/intel-neo/Manifest
@@ -1,2 +1,3 @@
 DIST intel-neo-20.16.16582.tar.gz 3042531 BLAKE2B 
adfc0aee2a315e67ccb3e4fe39ab09b618930607d3de931d1367881642d8e542385589299f593d3ab1cd6e16de7a8fce7b55fa1b4259097e15da7e55034d344b
 SHA512 
700bee3ccf72c2bc89f5c8a75591de9dafbfe0a6480e3216258842c6b68ce1b527569d5fe1327a0a80cfbf79dca1d956820f060b602feefa83fc9b47cb46d7d0
 DIST intel-neo-20.37.17906.tar.gz 3492080 BLAKE2B 
e133dde18c67e5b50dc65372faeaf78ee2512adf80f6869e9a99ff18aba5463b2c47e62cac3122eb899c644f5bbea6dd3205d348d071ea8854e3271b9e25fb34
 SHA512 
3db9b05dbfc05de8e5aad4eac631320642ff03444ff3eafe0f9cf72897e2dfb723563ad9f953a900a19511cc8affd3832d3f3fa966d9388714c326c71180e8f6
+DIST intel-neo-20.44.18297.tar.gz 3586089 BLAKE2B 
ddaa719db25bb9b57b76a47c438e7a3185a15ce0863665efa7dd205354684773dbc89a05c943a87987588dcc2220683b47e7209ff959b2a8ad596090ff253c15
 SHA512 
919aba7cde56304c84db7c7ba30c53fabcca72ceab362a2b406f5ecf124e1c024980c29689f19b173b76c903da1cb25a4f1e4b19ba9279bc6ca2ad1d100e046a

diff --git a/dev-libs/intel-neo/intel-neo-20.44.18297.ebuild 
b/dev-libs/intel-neo/intel-neo-20.44.18297.ebuild
new file mode 100644
index 00000000000..0499936a2f0
--- /dev/null
+++ b/dev-libs/intel-neo/intel-neo-20.44.18297.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+MY_PN="compute-runtime"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Intel Graphics Compute Runtime for L0 and OpenCL, for Broadwell 
and beyond"
+HOMEPAGE="https://github.com/intel/compute-runtime";
+SRC_URI="https://github.com/intel/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="l0 vaapi"
+
+BDEPEND="virtual/pkgconfig"
+COMMON=">=virtual/opencl-3
+       >=dev-util/intel-graphics-compiler-1.0.5353
+       >=media-libs/gmmlib-20.3.2
+       l0? ( >=dev-libs/level-zero-1.0.0 )
+       vaapi? (
+               x11-libs/libdrm[video_cards_intel]
+               x11-libs/libva
+       )"
+DEPEND="${COMMON}
+       media-libs/mesa"        # for Khronos OpenGL headers
+RDEPEND="${COMMON}"
+
+PATCHES=(
+       "${FILESDIR}"/${PN}-20.37.17906-no_Werror.patch
+)
+
+DOCS=(
+       README.md
+       FAQ.md
+)
+
+S="${WORKDIR}"/${MY_P}
+
+src_configure() {
+       local mycmakeargs=(
+               -DKHRONOS_GL_HEADERS_DIR="${EPREFIX}/usr/include"
+               -DBUILD_WITH_L0=$(usex l0)
+               -DDISABLE_LIBVA=$(usex vaapi "no" "yes")
+               # If enabled, tests are automatically run during the compile 
phase
+               # - and we cannot run them because they require permissions to 
access
+               # the hardware.
+               -DSKIP_UNIT_TESTS=ON
+       )
+       cmake_src_configure
+}

Reply via email to