commit: 58c9b69234c91f19c41aa6b5c1a023d151019b2d
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 3 13:54:10 2019 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Nov 3 14:01:41 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58c9b692
dev-libs/libclc: Bump to 0.2.0_pre20191024
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-libs/libclc/Manifest | 1 +
dev-libs/libclc/libclc-0.2.0_pre20191024.ebuild | 65 +++++++++++++++++++++++++
2 files changed, 66 insertions(+)
diff --git a/dev-libs/libclc/Manifest b/dev-libs/libclc/Manifest
index c7f1e56b71a..cb6d63f2403 100644
--- a/dev-libs/libclc/Manifest
+++ b/dev-libs/libclc/Manifest
@@ -1 +1,2 @@
DIST libclc-0.2.0_pre20190313.tar.gz 176803 BLAKE2B
c9ecd5053685c2de89d92ae4e9cc9e9f8bee24ca05e5ddca6fffd0b45356b7d4a96b54d9bebf316624e0a49594a33ebb156ae6c4b963093bdc6c1067548b2bd0
SHA512
22813bcd76e77c018acbdf2a3d3d300c2996e169c17729726ae8a93c39f85033cfa1f6d43907a7c026451bcdfcce6fbdc64a202961492aa951ef1b818c3f9335
+DIST libclc-0.2.0_pre20191024.tar.xz 128628 BLAKE2B
dc750725ee48456e3678cb4f730cc889045ff7401c4b40ac3ae9b656da9fe429aa2094c2042a18eda4f7e87c786ff8ae121fbf726a18de03884f30dad48b3fa1
SHA512
b4c2ca980fb28b5662055bea951de844284fcf122695234d7618439234f0203baf82b5cc5cf8acddfe387f19d32be3a958e53511bb1e33e9469f6be5951dbcdb
diff --git a/dev-libs/libclc/libclc-0.2.0_pre20191024.ebuild
b/dev-libs/libclc/libclc-0.2.0_pre20191024.ebuild
new file mode 100644
index 00000000000..09e0ed6af9b
--- /dev/null
+++ b/dev-libs/libclc/libclc-0.2.0_pre20191024.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python{2_7,3_{5,6,7}} )
+
+inherit llvm prefix python-any-r1 toolchain-funcs
+
+DESCRIPTION="OpenCL C library"
+HOMEPAGE="https://libclc.llvm.org/"
+# libclc subdir of https://github.com/llvm/llvm-project.git
+SRC_URI="https://dev.gentoo.org/~mgorny/dist/${P}.tar.xz"
+
+LICENSE="Apache-2.0-with-LLVM-exceptions || ( MIT BSD )"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE_VIDEO_CARDS="video_cards_nvidia video_cards_r600 video_cards_radeonsi"
+IUSE="${IUSE_VIDEO_CARDS}"
+REQUIRED_USE="|| ( ${IUSE_VIDEO_CARDS} )"
+
+BDEPEND="
+ || (
+ sys-devel/clang:10
+ sys-devel/clang:9
+ sys-devel/clang:8
+ sys-devel/clang:7
+ sys-devel/clang:6
+ )
+ ${PYTHON_DEPS}"
+
+llvm_check_deps() {
+ has_version -b "sys-devel/clang:${LLVM_SLOT}"
+}
+
+src_prepare() {
+ default
+ if use prefix; then
+ hprefixify configure.py
+ fi
+}
+
+pkg_setup() {
+ # we do not need llvm_pkg_setup
+ python-any-r1_pkg_setup
+}
+
+src_configure() {
+ local libclc_targets=()
+
+ use video_cards_nvidia && libclc_targets+=("nvptx--" "nvptx64--"
"nvptx--nvidiacl" "nvptx64--nvidiacl")
+ use video_cards_r600 && libclc_targets+=("r600--")
+ use video_cards_radeonsi && libclc_targets+=("amdgcn--"
"amdgcn-mesa-mesa3d" "amdgcn--amdhsa")
+
+ [[ ${#libclc_targets[@]} ]] || die "libclc target missing!"
+
+ ./configure.py \
+ --with-cxx-compiler="$(tc-getCXX)" \
+ --with-llvm-config="$(get_llvm_prefix
"${LLVM_MAX_SLOT}")/bin/llvm-config" \
+ --prefix="${EPREFIX}/usr" \
+ "${libclc_targets[@]}" || die
+}
+
+src_compile() {
+ emake VERBOSE=1
+}