blob: 7d24d89f13d66a07d67b678f6585272a0bdf2acd (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-power/acpid/acpid-1.0.4.ebuild,v 1.1 2005/03/15 19:15:53 ciaranm Exp $
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="doc"
DEPEND="virtual/libc
virtual/linux-sources"
src_compile() {
# DO NOT COMPILE WITH OPTIMISATIONS (bug #22365)
# 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() {
# needed since the Makefile doesn't do 'mkdir -p $(BINDIR)'
dodir /usr/bin
make INSTPREFIX=${D} install || die
exeinto /etc/acpi
newexe ${FILESDIR}/${P}-default.sh default.sh || die
insinto /etc/acpi/events
newins ${FILESDIR}/${P}-default default || die
dodoc README Changelog TODO
exeinto /etc/init.d
newexe ${FILESDIR}/acpid.rc6 acpid || die
if use doc; then
docinto examples
dodoc samples/{acpi_handler.sh,sample.conf}
docinto examples/battery
dodoc samples/battery/*
docinto examples/panasonic
dodoc samples/panasonic/*
fi
}
pkg_postinst() {
echo
einfo "You may wish to read the Gentoo Linux Power Management Guide,"
einfo "which can be found online at:"
einfo " http://www.gentoo.org/doc/en/power-management-guide.xml"
echo
}
|