blob: 82ab806eb573387a42d077414d5a5a7a57a48102 (
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
|
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit linux-info optfeature
if [[ ${PV} == 9999 ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/dell/dkms"
else
SRC_URI="https://github.com/dell/dkms/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~arm64 ~x86"
fi
DESCRIPTION="Dynamic Kernel Module Support"
HOMEPAGE="https://github.com/dell/dkms"
LICENSE="GPL-2"
SLOT="0"
IUSE="systemd"
RESTRICT="test" # Should be run in a container
RDEPEND="
sys-apps/kmod
virtual/linux-sources
systemd? ( sys-apps/systemd )
"
CONFIG_CHECK="~MODULES"
src_compile() {
# Nothing to do here
return
}
src_test() {
chmod +x dkms || die
PATH="${PATH}:$(pwd)" ./run_test.sh || die "Tests failed"
}
src_install() {
if use systemd; then
emake install-redhat DESTDIR="${ED}" KCONF="/usr/lib/kernel"
else
emake install-debian DESTDIR="${ED}" KCONF="/usr/lib/kernel"
fi
einstalldocs
keepdir /var/lib/dkms
}
pkg_postinst() {
optfeature "automatically running \"dkms autoinstall\" on each kernel installation" \
sys-kernel/installkernel
}
|