blob: 864aef7d3ab3ab44cead084314fda7911488f5ee (
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/nvidia-cuda-toolkit/nvidia-cuda-toolkit-2.2-r3.ebuild,v 1.3 2011/07/23 20:41:24 spock Exp $
EAPI=2
inherit eutils
DESCRIPTION="NVIDIA CUDA Toolkit"
HOMEPAGE="http://developer.nvidia.com/cuda"
CUDA_V=${PV//./_}
BASE_URI="http://developer.download.nvidia.com/compute/cuda/${CUDA_V}/toolkit"
SRC_URI="amd64? ( ${BASE_URI}/cudatoolkit_${PV}_linux_64_rhel4.7.run
debugger? ( ${BASE_URI}/cudagdb_2.2_linux_64_rhel5.3.run ) )
x86? ( ${BASE_URI}/cudatoolkit_${PV}_linux_32_rhel4.7.run
debugger? ( ${BASE_URI}/cudagdb_2.2_linux_32_rhel5.3.run ) )"
LICENSE="NVIDIA"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debugger doc profiler"
RDEPEND="${DEPEND}
profiler? ( x86? (
x11-libs/qt-gui
x11-libs/qt-core
x11-libs/qt-assistant
x11-libs/qt-sql[sqlite] )
)
debugger? ( >=sys-libs/libtermcap-compat-2.0.8-r2 )"
S="${WORKDIR}"
src_unpack() {
for f in ${A} ; do
unpack_makeself ${f}
done
}
src_prepare() {
epatch "${FILESDIR}/${P}-enum_fix.patch"
}
src_install() {
local DEST=/opt/cuda
export CONF_LIBDIR_OVERRIDE="lib"
# HACK: temporary workaround until CONF_LIBDIR_OVERRIDE is respected.
export LIBDIR_amd64="lib"
into ${DEST}
dobin bin/*
dolib lib/*
chmod a-x "${D}/${DEST}/bin/nvcc.profile"
# doman does not respect DESTTREE
insinto ${DEST}/man/man1
doins man/man1/*
insinto ${DEST}/man/man3
doins man/man3/*
prepman ${DEST}
insinto ${DEST}/include
doins include/*.h
insinto ${DEST}/include/crt
doins include/crt/*.h
insinto ${DEST}/src
doins src/*
into ${DEST}/open64
dobin open64/bin/*
libopts -m0755
dolib open64/lib/*
if use doc ; then
insinto ${DEST}/doc
doins -r doc/*
fi
cat > "${T}/env" << EOF
PATH=${DEST}/bin
ROOTPATH=${DEST}/bin
LDPATH=${DEST}/lib
MANPATH=${DEST}/man
EOF
newenvd "${T}/env" 99cuda
if use profiler; then
into ${DEST}/cudaprof
dobin cudaprof/bin/cudaprof
cat > "${T}/env" << EOF
PATH=${DEST}/cudaprof/bin
ROOTPATH=${DEST}/cudaprof/bin
EOF
if use x86 ; then
dosym /usr/bin/assistant ${DEST}/cudaprof/bin
else
dobin cudaprof/bin/assistant
insinto ${DEST}/cudaprof/bin
doins cudaprof/bin/*.so*
insinto ${DEST}/cudaprof/bin/sqldrivers
doins cudaprof/bin/sqldrivers/*
cat >> "${T}/env" << EOF
LDPATH=${DEST}/cudaprof/bin
EOF
fi
newenvd "${T}/env" 99cudaprof
if use doc; then
insinto ${DEST}/cudaprof/doc
doins cudaprof/doc/*
insinto ${DEST}/cudaprof/projects
doins cudaprof/projects/*
fi
fi
}
pkg_postinst() {
elog "If you want to natively run the code generated by CUDA, you will need"
elog ">=x11-drivers/nvidia-drivers-185.18.08."
elog ""
elog "This CUDA toolkit release does not support gcc-4.4. Please make sure"
elog "to switch to a lower GCC version before using nvcc."
elog ""
elog "Run '. /etc/profile' before using the CUDA toolkit. "
}
|