aboutsummaryrefslogtreecommitdiff
blob: aeee540a9ab321fbc0f8894863801f8ac4b38d34 (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
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=5

inherit cmake-utils multilib

DESCRIPTION="Intel Concurrent Collections for C++ - Parallelism without the Pain"
HOMEPAGE="https://software.intel.com/en-us/articles/intel-concurrent-collections-for-cc"

if [[ $PV = 9999 ]]; then
	inherit git-r3
	EGIT_REPO_URI="https://github.com/icnc/icnc.git"
	KEYWORDS=
else
	#SRC_URI="mirror://sourceforge/${PN}/${PV}/l_cnc_b_${PV}.tgz"
	SRC_URI="https://github.com/martine/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
	KEYWORDS="~amd64"
fi

LICENSE="BSD"
SLOT="0"
IUSE=""

DEPEND="
	>=dev-cpp/tbb-4.2[debug]
	sys-libs/glibc
	"
RDEPEND="${DEPEND}"

src_configure() {
#TODO has mpi support but broken with virtual/mpi
# 		$(cmake-utils_use mpi BUILD_LIBS_FOR_MPI)
	local mycmakeargs=(
		-DLIB=$(get_libdir)
	)
	cmake-utils_src_configure
}