blob: faaf33989ba7338aa15d677c39f87a759ae02ccf (
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
71
72
73
74
75
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/longrun/longrun-0.9-r3.ebuild,v 1.2 2006/03/19 20:19:16 betelgeuse Exp $
inherit eutils linux-info
DESCRIPTION="A utility to control Transmeta's Crusoe and Efficeon processors"
HOMEPAGE="http://freshmeat.net/projects/longrun/"
DEBIAN_PATCH_VERSION="20"
DEBIAN_PATCH="${PN}_${PV}-${DEBIAN_PATCH_VERSION}.diff.gz"
SRC_URI="mirror://kernel/linux/utils/cpu/crusoe/${P}.tar.bz2
mirror://debian/pool/main/l/${PN}/${DEBIAN_PATCH}"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="-ppc ~x86"
IUSE="acpi"
DEPEND="acpi? ( sys-power/acpid )"
S=${WORKDIR}/${PN}
CONFIG_CHECK="X86_MSR X86_CPUID"
ERROR_X86_MSR="
Longrun needs a MSR device to function. Please select
MSR under Processor type and features. It can be build
directly into the kernel or as a module.
"
ERROR_X86_CPUID="
Longrun needs a CPUID device to function. Please select
CPUID under Processor type and features. It can be
build directly into the kernel or as a module.
"
src_unpack() {
unpack ${P}.tar.bz2
cd ${S}
epatch "${DISTDIR}/${DEBIAN_PATCH}"
epatch "${FILESDIR}/${PV}-makefile_cflags.patch"
}
src_compile() {
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc MAKEDEV-cpuid-msr
if use acpi; then
cd debian
insinto /etc/acpi/events
newins acpi.event longrun
insinto /etc/acpi/actions/
newins acpi.action longrun
fi
}
pkg_postinst() {
if linux_chkconfig_module X86_MSR; then
einfo "You have compiled MSR as a module."
einfo "You need to load it before using Longrun."
einfo "The module is called msr."
einfo
fi
if linux_chkconfig_module X86_CPUID; then
einfo "You have compiled CPUID as a module."
einfo "You need to load it before using Longrun."
einfo "The module is called cpuid."
fi
}
|