blob: 690cbb5e0ee00f5dc59f8e3f78fc7afc062505e5 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Maintainer: Arcady Genkin <agenkin@thpoon.com>
# /space/gentoo/cvsroot/gentoo-x86/skel.build,v 1.14 2002/02/01 19:50:13 gbevin Exp
S="${WORKDIR}/${P}"
DESCRIPTION="Linux kernel module for the NVIDIA's X driver"
NV_PACKAGE=NVIDIA_kernel-1.0-2314
NV_ARCHIVE="${NV_PACKAGE}.tar.gz"
SRC_URI="http://205.158.109.140/XFree86_40/1.0-2313/${NV_ARCHIVE}"
HOMEPAGE="http://www.nvidia.com/"
DEPEND="virtual/linux-sources"
nv_get_kernel_version () {
# Determine the version of the kernel sources
local NV_KV="`readlink /usr/src/linux`"
if [ $? -ne 0 ]
then
die "/usr/src/linux does not exist"
fi
NV_KV="${NV_KV/linux-/}"
echo -n "${NV_KV}"
}
src_unpack() {
unpack "${NV_ARCHIVE}"
mv "${NV_PACKAGE}" "${P}"
}
src_compile() {
make KERNDIR="/usr/src/linux-`nv_get_kernel_version`" \
clean NVdriver || die
}
src_install () {
# The driver goes into the standard modules location
insinto "/lib/modules/`nv_get_kernel_version`/kernel/video"
doins NVdriver
# Add the aliases
insinto /etc/modules.d
doins "${FILESDIR}/nvidia"
# Docs
dodoc README
# The device creation script
exeinto /opt/nvidia/bin
doexe "${FILESDIR}/make_nvidia_devices.sh"
}
pkg_postinst() {
if [ "${ROOT}" = "/" ]
then
[ -x /usr/sbin/update-modules ] && /usr/sbin/update-modules
[ -x /sbin/depmod ] && /sbin/depmod -a
fi
einfo
einfo "If you are not using devfs, you might want to create nvidia"
einfo "device nodes by running /opt/nvidia/bin/make_nvidia_devices.sh"
einfo
einfo "To load the module automatically at boot up, add"
einfo "\"NVdriver\" to your /etc/modules.autoload:"
einfo
}
|