blob: 7e05976f553eb7f41ec94b010d198eeb0c89a2e6 (
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
|
# Copyright 1999-2009 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.1.ebuild,v 1.5 2009/09/25 18:11:52 spock Exp $
inherit eutils
DESCRIPTION="NVIDIA CUDA Toolkit"
HOMEPAGE="http://developer.nvidia.com/cuda"
BASE_URI="http://developer.download.nvidia.com/compute/cuda/2_1/toolkit/"
SRC_URI="amd64? ( ${BASE_URI}/cudatoolkit_2.1_linux64_suse11.0.run )
x86? ( ${BASE_URI}/cudatoolkit_2.1_linux32_suse11.0.run )"
LICENSE="NVIDIA"
SLOT="0"
# This version should never become a stable candidate due to bug #266568.
KEYWORDS="~amd64 ~x86"
IUSE="doc"
DEPEND=""
RDEPEND=""
RESTRICT="strip"
S="${WORKDIR}"
src_unpack() {
unpack_makeself
}
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 doc/*
fi
cat > "${T}/env" << EOF
PATH=${DEST}/bin
ROOTPATH=${DEST}/bin
LDPATH=${DEST}/lib
MANPATH=${DEST}/man
EOF
newenvd "${T}/env" 99cuda
}
pkg_postinst() {
elog "If you want to natively run the code generated by CUDA, you will need"
elog ">=x11-drivers/nvidia-drivers-180.22."
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. "
}
|