blob: 933ef72e4106ca3053899e3f417f55748f9d46a5 (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Martin Schlemmer <azarah@gentoo.org>
S=${WORKDIR}/${P}
DESCRIPTION="Daemon for Advanced Configuration and Power Interface."
SRC_URI="http://prdownloads.sourceforge.net/acpid/${P}.tar.gz"
HOMEPAGE="http://acpid.sourceforge.net/"
# We need the patched kernel with latest ACPI code, or else it will
# be broken. Hopefully it will be merge into release kernel soon.
DEPEND="virtual/glibc
>=sys-kernel/linux-sources-2.4.10-r4"
src_compile() {
# DONT compile with optimizations !
make INSTPREFIX=${D} ||die
}
src_install () {
make INSTPREFIX=${D} install || die
dodir /etc/acpi/events
exeinto /etc/acpi
doexe debian/default.sh
insinto /etc/acpi/events
doins debian/default
dodoc README
exeinto /etc/init.d
newexe ${FILESDIR}/acpid.rc6 acpid
}
|