blob: f87b6b5ba89a018a3aee5c6fcde0a262ccaa6ea9 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-laptop/pmud/pmud-0.10.1-r3.ebuild,v 1.4 2005/01/01 14:47:46 eradicator Exp $
inherit eutils
DESCRIPTION="PowerMac power management utilities"
HOMEPAGE="http://penguinppc.org/"
SRC_URI="http://linuxppc.jvc.nl/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="-* ~ppc"
IUSE="X"
DEPEND="virtual/os-headers
X? ( virtual/x11 )"
RDEPEND="sys-apps/util-linux"
S=${WORKDIR}/${PN}-0.10
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PV}-deb-fcntl.patch
epatch ${FILESDIR}/pmud-file-locations.patch
use X || epatch ${FILESDIR}/pmud-makefile-x-gentoo.diff
}
src_compile() {
emake CFLAGS="${CFLAGS}" || die
}
src_install() {
doman pmud.8 snooze.8 fblevel.8
into /
dosbin pmud wakebay snooze fblevel || die "dosbin failed"
exeinto /etc/power
doexe ${FILESDIR}/pwrctl{,-local}
exeinto /etc/init.d
newexe ${FILESDIR}/pmud.start pmud
insinto /etc
doins ${FILESDIR}/power.conf
if use X ; then
doman batmon.8 xmouse.8
into /usr
dobin Batmon || die "Batmon failed"
exeinto /usr/X11R6/bin
doexe xmouse || die "xmouse failed"
fi
}
|