blob: 8138ba27476d594db1bc7f3a136cf4dd3fbd85a7 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit git-r3
DESCRIPTION="Gdev is open-source GPGPU runtime"
HOMEPAGE="https://github.com/shinpei0208/gdev"
SRC_URI=""
EGIT_REPO_URI="
git://github.com/shinpei0208/gdev.git
https://github.com/shinpei0208/gdev.git"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE=""
RDEPEND="
dev-libs/libgdev
x11-libs/libdrm[video_cards_nouveau]
x11-misc/envytools"
DEPEND="
virtual/pkgconfig
${RDEPEND}"
src_configure() {
cd cuda || die
mkdir build || die
cd build || die
../configure || die
}
src_compile() {
cd cuda/build || die
emake GDEVDIR="${EPREFIX}/usr"
}
src_install() {
cd cuda/build || die
emake GDEVDIR="${EPREFIX}/usr" DESTDIR="${D}" install
}
|