blob: ee7bbe93a07c307f200c31a020346a1bfb421549 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/lm-sensors/lm-sensors-2.6.5.ebuild,v 1.7 2004/02/01 23:43:53 plasmaroo Exp $
inherit flag-o-matic
MY_P=${PN/-/_}-${PV}
S=${WORKDIR}/${MY_P}
DESCRIPTION="Hardware Sensors Monitoring by lm_sensors"
SRC_URI="http://www2.lm-sensors.nu/~lm78/archive/${MY_P}.tar.gz"
HOMEPAGE="http://www2.lm-sensors.nu/~lm78"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc ~amd64"
DEPEND="virtual/linux-sources"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/no-isadump-ppc.patch
}
src_compile() {
filter-flags -fPIC
emake clean all || die "lm_sensors requires the source of a compatible kernel\nversion installed in /usr/src/linux and i2c support built as a modules"
}
src_install() {
emake DESTDIR=${D} PREFIX=/usr MANDIR=/usr/share/man install \
|| die "Install failed"
exeinto /etc/init.d
newexe ${FILESDIR}/rc_lm_sensors lm_sensors
}
pkg_postinst() {
[ -x /usr/sbin/update-modules ] && /usr/sbin/update-modules
einfo
einfo "The lm_sensors hardware sensors package has been installed."
einfo
einfo "It is recommended that you read the lm_sensors documentation."
einfo "To enable lm_sensors you will need to compile i2c support in"
einfo "your kernel as a module and run /usr/sbin/sensors-detect to"
einfo "detect the hardware in your system."
einfo
einfo "Be warned, the probing of hardware in your system performed by"
einfo "sensors-detect could freeze your system. Also do not use"
einfo "lm_sensors on certain laptop models from IBM. See the lm_sensors"
einfo "documentation and website for more information."
einfo
einfo "IMPORTANT: When you merge this package it installs kernel modules"
einfo "that can only be used with the specific kernel version whose"
einfo "source is located in /usr/src/linux. If you upgrade to a new"
einfo "kernel, you will need to remerge the lm_sensors package to build"
einfo "new kernel modules."
einfo
}
|