blob: 99b67be57527e9963f6215dcdc98f7f7d087f275 (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
inherit eutils
NV_URI="http://us.download.nvidia.com/XFree86/"
AMD64_NV_PACKAGE="NVIDIA-Linux-x86_64-${PV}"
DESCRIPTION="NVIDIA driver sources for linux"
HOMEPAGE="http://www.nvidia.com/"
SRC_URI="amd64? ( ${NV_URI}Linux-x86_64/${PV}/${AMD64_NV_PACKAGE}.run )"
LICENSE="GPL-2 NVIDIA-r2"
SLOT="0/43034"
KEYWORDS="amd64"
IUSE=""
DEPEND="sys-kernel/dkms"
RDEPEND="${DEPEND}"
PATCHES=(
"${FILESDIR}"/fs62142.patch
"${FILESDIR}"/"${P}"-conf.patch
)
S="${WORKDIR}/${AMD64_NV_PACKAGE}"
src_unpack() {
sh ${DISTDIR}/${AMD64_NV_PACKAGE}.run --extract-only
}
src_install() {
dodir usr/src/${P}
insinto usr/src/${P}
doins -r "${S}"/kernel/*
}
pkg_postinst() {
dkms add ${PN}/${PV}
}
pkg_prerm() {
dkms remove ${PN}/${PV} --all
}
|