blob: 5e2a0fc88caa732bd692a0fa8d207fe94a97b347 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-laptop/laptop-mode-tools/laptop-mode-tools-1.05.ebuild,v 1.4 2005/07/09 04:08:51 josejx Exp $
inherit linux-info
MY_P=${PN}_${PV}
DESCRIPTION="Linux kernel laptop_mode user-space utilities"
HOMEPAGE="http://www.xs4all.nl/~bsamwel/laptop_mode/tools/"
SRC_URI="http://www.xs4all.nl/~bsamwel/laptop_mode/tools/downloads/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc x86"
IUSE="acpi apm"
DEPEND="acpi? ( sys-power/acpid )
apm? ( sys-apps/apmd )"
pkg_setup() {
linux-info_pkg_setup
if [ ${KV_MAJOR} -eq 2 -a ${KV_MINOR} -eq 6 -a ${KV_PATCH} -lt 6 ]; then
eerror "${P} requires kernel version 2.6.6 or newer."
die "${P} requires kernel version 2.6.6 or newer"
elif [ ${KV_MAJOR} -eq 2 -a ${KV_MINOR} -eq 4 -a ${KV_PATCH} -lt 23 ]; then
eerror "${P} requires kernel version 2.4.23 or newer."
die "${P} requires kernel version 2.4.23 or newer"
fi
}
src_install() {
dosbin usr/sbin/laptop_mode
insinto /etc/laptop-mode
doins etc/laptop-mode/laptop-mode.conf
newinitd ${FILESDIR}/${P}.init laptop_mode
doman man/*
dodoc Documentation/laptop-mode.txt README
if useq acpi; then
insinto /etc/acpi/events/
doins etc/acpi/events/*
exeinto /etc/acpi/actions/
doexe etc/acpi/actions/*
fi
if useq apm; then
exeinto /etc/apm/event.d/
doexe etc/apm/event.d/*
fi
}
pkg_postinst() {
if ! useq acpi && ! useq apm; then
ewarn
ewarn "Without USE=\"acpi\" or USE=\"apm\" ${PN} can not"
ewarn "automatically disable laptop_mode on low battery."
ewarn
ewarn "This means you can lose up to 10 minutes of work if running"
ewarn "out of battery while laptop_mode is enabled."
ewarn
ewarn "Please see /usr/share/doc/${PF}/laptop-mode.txt.gz for further"
ewarn "information."
ewarn
fi
}
|