blob: 932e946f4cd5e651505fca3fb434b346d78f7c6f (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/acpid/acpid-1.0.2-r2.ebuild,v 1.7 2004/06/28 15:57:44 vapier Exp $
inherit eutils
DESCRIPTION="Daemon for Advanced Configuration and Power Interface"
HOMEPAGE="http://acpid.sourceforge.net/"
SRC_URI="mirror://sourceforge/acpid/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 -ppc alpha amd64 ia64"
IUSE=""
# 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/libc
virtual/linux-sources"
src_compile() {
# Fix bug # 22238 (default.sh broken)
cd debian && epatch ${FILESDIR}/default.sh-gentoo.patch && cd ..
# DO NOT COMPILE WITH OPTIMISATIONS.
# That is a note to the devs. IF you are a user, go ahead and optimise
# if you want, but we won't support bugs associated with that"
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 Changelog
exeinto /etc/init.d
newexe ${FILESDIR}/acpid.rc6 acpid
}
|