blob: 81f900f0400c881abfb6648e2cd06e86fec2887e (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/sys-apps/apmd/apmd-3.0.2-r1.ebuild,v 1.5 2002/07/14 19:20:16 aliz Exp $
DESCRIPTION="Advanced Power Management Daemon"
HOMEPAGE="http://www.worldvisions.ca/~apenwarr/apmd/"
KEYWORDS="x86"
SLOT="0"
SRC_URI="http://www.worldvisions.ca/~apenwarr/apmd/${P}.tar.gz"
S=${WORKDIR}/${PN}
LICENSE="GPL-2 LGPL-2"
DEPEND="virtual/glibc
>=sys-apps/debianutils-1.16
X? ( virtual/x11 )"
src_unpack() {
unpack ${A} ; cd ${S}
cp Makefile Makefile.orig
sed -e "s:\(PREFIX=\)\(/usr\):\1\$\{DESTDIR\}\2:" \
-e "s:\(APMD_PROXY_DIR\=\)\(/etc\):\1\$\{DESTDIR\}\2/apm:" \
-e "97d" \
-e "s:\(MANDIR\=\${PREFIX}\)\(/man\):\1/share\2:" \
Makefile.orig > Makefile
if [ "`use X`" ]
then
cp Makefile Makefile.orig
sed -e "/^EXES=/s/xapm//" \
-e "/install.*xapm/d" \
Makefile.orig > Makefile
fi
}
src_compile() {
make CFLAGS="${CFLAGS}" || die "compile problem"
}
src_install () {
make DESTDIR=${D} install || die
dodir /etc/apm/{event.d,suspend.d,resume.d}
exeinto /etc/apm ; doexe debian/apmd_proxy
dodoc ANNOUNCE BUGS.apmsleep COPYING* README* ChangeLog LSM
insinto /etc/conf.d ; newins ${FILESDIR}/apmd.confd apmd
exeinto /etc/init.d ; newexe ${FILESDIR}/apmd.rc6 apmd
}
|