blob: 2cbb9118b5251a1f6a4d604c9c5635472c003ea7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
PYTHON_COMPAT=( python2_7 )
inherit cmake-utils python-single-r1
MY_PN="clBLAS"
DESCRIPTION="A software library containing BLAS routines for OpenCL"
HOMEPAGE="https://github.com/clMathLibraries/clBLAS"
SRC_URI="https://github.com/clMathLibraries/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
IUSE="+client examples +ktest performance test"
REQUIRED_USE="performance? ( ${PYTHON_REQUIRED_USE} )"
RDEPEND="
dev-libs/boost
virtual/opencl
|| ( >=dev-util/amdapp-2.9 dev-util/intel-ocl-sdk )
performance? ( ${PYTHON_DEPS} )
"
DEPEND="${RDEPEND}"
# test? (
# >=dev-cpp/gtest-1.6.0
# >=sci-libs/acml-6.1.0.3
# )"
# The tests only get compiled to an executable named Test, which is not recogniozed by cmake.
# Therefore src_test() won't execute any test.
RESTRICT="test"
S="${WORKDIR}/${MY_PN}-${PV}/src"
pkg_pretend() {
if [[ ${MERGE_TYPE} != binary ]]; then
if [[ $(gcc-major-version) -lt 4 ]] || ( [[ $(gcc-major-version) -eq 4 && $(gcc-minor-version) -lt 6 ]] ) ; then
die "Compilation with gcc older than 4.6 is not supported."
fi
fi
if [ ! -d "${EPREFIX}/usr/include/CL" ]; then
eerror "As a temporary workaround for Bug #521734, a symlink pointing to"
eerror "OpenCL headers >= 1.2 is needed. A symlink pointing to the CL-1.2"
eerror "headers, normally provided by the eselect-opencl package, can be"
eerror "manually created with"
eerror ""
eerror " ln -s ${EPREFIX}/usr/lib64/OpenCL/global/include/CL-1.2/ ${EPREFIX}/usr/include/CL"
eerror ""
die "${EPREFIX}/usr/include/CL not found"
fi
}
src_configure() {
local mycmakeargs=(
-DBUILD_CLIENT="$(usex client)"
-DBUILD_SAMPLE="$(usex examples)"
-DBUILD_KTEST="$(usex ktest)"
-DBUILD_PERFORMANCE="$(usex performance)"
-DBUILD_TEST="$(usex test)"
-DOPENCL_ROOT="/usr/local/include"
)
cmake-utils_src_configure
}
|