blob: 0d75cda03752b59f45ef67aae3e12ec74ffcdec0 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/lm_sensors-modules/lm_sensors-modules-2.10.0.ebuild,v 1.3 2006/07/13 18:44:05 phreak Exp $
inherit eutils toolchain-funcs linux-info
MY_P=${P/-modules/}
S=${WORKDIR}/${MY_P}
DESCRIPTION="Hardware Monitoring kernel modules for linux-2.4.x"
HOMEPAGE="http://www.lm-sensors.org/"
SRC_URI="http://dl.lm-sensors.org/lm-sensors/releases/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="-amd64 -ppc x86"
IUSE=""
DEPEND="sys-apps/i2c"
pkg_setup() {
linux-info_pkg_setup
if kernel_is lt 2 4 10; then
eerror "${P} requires kernel 2.4.10 or later"
die "${P} requires kernel 2.4.10 or later"
fi
if kernel_is gt 2 4; then
eerror "${P} is only needed for kernel 2.4.x"
eerror "You need to use the in-kernel I2C drivers for later kernels."
die "Non 2.4.x kernel detected"
fi
if linux_chkconfig_present I2C; then
eerror "${P} requires kernel CONFIG_I2C to be disabled."
die "Kernel with CONFIG_I2C detected"
fi
}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${MY_P}-module-path.patch
epatch "${FILESDIR}"/${MY_P}-modules-only.patch
}
src_compile() {
einfo
einfo "You may safely ignore any errors from compilation"
einfo "that contain \"No such file or directory\" references."
einfo
emake CC=$(tc-getCC) LINUX=${KV_DIR} I2C_HEADERS=${KV_DIR}/include \
|| die "emake failed"
}
src_install() {
emake CC=$(tc-getCC) \
LINUX=${KV_DIR} MODPREF=/lib/modules/${KV_FULL} DESTDIR="${D}" install \
|| die "emake install failed"
}
|