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

EAPI=4

EGIT_REPO_URI="git://people.freedesktop.org/~tstellar/${PN}"

if [[ ${PV} = 9999* ]]; then
	GIT_ECLASS="git-2"
	EXPERIMENTAL="true"
fi

inherit base $GIT_ECLASS

DESCRIPTION="OpenCL C library"
HOMEPAGE="http://libclc.llvm.org/"

if [[ $PV = 9999* ]]; then
	SRC_URI="${SRC_PATCHES}"
else
	SRC_URI=""
fi

LICENSE="MIT BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

RDEPEND="
	>=sys-devel/clang-3.1
	>=sys-devel/llvm-3.1"
DEPEND="${RDEPEND}"

PATCHES=(
		"${FILESDIR}/0001-configure.py-Add-an-install-rule.patch"
)

src_configure() {
	./configure.py \
		--with-llvm-config="${EPREFIX}/usr/bin/llvm-config" \
		--prefix="${EPREFIX}/usr"
}

src_install() {
	# it has UGY install target so we use own one
	insinto /usr/include
	doins -r generic/include/*
	insinto /usr/$(get_libdir)/clc/r600-amd-none
	doins r600--/lib/builtins.bc
}