blob: 5855e92bc4f91d28c161f51098ea41b68dd1bcd9 (
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
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
USE_RUBY="ruby26 ruby27 ruby30"
RUBY_OPTIONAL="yes"
inherit cmake ruby-ng
MY_PN="OpenCL-CLHPP"
MY_PV="2022.05.18"
MY_P="${MY_PN}-${MY_PV}"
DESCRIPTION="Khronos OpenCL C++ bindings"
HOMEPAGE="https://github.com/KhronosGroup/OpenCL-CLHPP/"
SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/refs/tags/v${MY_PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Khronos-CLHPP"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
# Tests require CMock (NOT cmocka), which is currently unpackaged
RESTRICT="test"
RDEPEND="virtual/opencl"
# Need an opencl-headers ebuild which installs cmake package configs
DEPEND="${RDEPEND}
>=dev-util/opencl-headers-2022.05.18-r1"
BDEPEND="test? ( $(ruby_implementations_depend) )"
S="${WORKDIR}"/${MY_P}
pkg_setup() {
use test && ruby-ng_pkg_setup
}
src_unpack() {
# suppress ruby-ng export
default
}
src_prepare() {
# suppress ruby-ng export
cmake_src_prepare
}
src_compile() {
# suppress ruby-ng export
cmake_src_compile
}
src_install() {
# suppress ruby-ng export
cmake_src_install
}
src_configure() {
local mycmakeargs=(
-DBUILD_DOCS=OFF
-DBUILD_EXAMPLES=OFF
-DBUILD_TESTING=$(usex test)
)
cmake_src_configure
}
|