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

EAPI="5"

inherit cmake-utils flag-o-matic

DESCRIPTION="Library to accelerate the ray intersection process by using GPUs."
HOMEPAGE="http://www.luxrender.net"
EHG_REVISION="475fbf15f0ca"
SRC_URI="https://bitbucket.org/luxrender/luxrays/get/${EHG_REVISION}.tar.bz2"

S="${WORKDIR}/luxrender-luxrays-${EHG_REVISION}"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug"

DEPEND=">=dev-libs/boost-1.43
	media-libs/freeimage
	virtual/opencl
	virtual/opengl"

src_configure() {
	append-flags "-fPIC"
	use debug && append-flags -ggdb

	mycmakeargs=( -Wno-dev )
	cmake-utils_src_configure
}

src_compile() {
	cmake-utils_src_make luxrays
}

src_install() {
	dodoc AUTHORS.txt

	insinto /usr/include
	doins -r include/luxrays

	dolib.a lib/libluxrays.a
}