diff options
Diffstat (limited to 'sys-apps/pmud/pmud-0.10.1-r2.ebuild')
-rw-r--r-- | sys-apps/pmud/pmud-0.10.1-r2.ebuild | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/sys-apps/pmud/pmud-0.10.1-r2.ebuild b/sys-apps/pmud/pmud-0.10.1-r2.ebuild new file mode 100644 index 000000000000..dcc377d8eae5 --- /dev/null +++ b/sys-apps/pmud/pmud-0.10.1-r2.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Maintainer: Kain <kain@kain.org> +# $Id: pmud-0.10.1-r2.ebuild,v 1.1 2002/04/30 01:29:43 kain Exp $ + +S=${WORKDIR}/${P} + +DESCRIPTION="PowerMac power management utilities" +SRC_URI="http://linuxppc.jvc.nl/${P}.tar.gz" +HOMEPAGE="http://penguinppc.org/" +DEPEND="sys-kernel/linux-headers + X? ( virtual/x11 )" +RDEPEND="sys-apps/util-linux" + +src_unpack() { + cd ${WORKDIR} + unpack ${P}.tar.gz + mv pmud-0.10 ${P} + cd ${S} + patch -p1 < ${FILESDIR}/pmud-file-locations.patch + use X || patch -p1 <${FILESDIR}/pmud-makefile-x-gentoo.diff +} + +src_compile() { + emake CFLAGS="${CFLAGS}" || die +} + +src_install () { + doman pmud.8 snooze.8 fblevel.8 batmon.8 xmouse.8 + exeinto /sbin + doexe pmud wakebay snooze fblevel + exeinto /usr/bin + doexe Batmon + exeinto /usr/X11R6/bin + doexe xmouse + exeinto /etc/power + doexe ${FILESDIR}/pwrctl{,-local} + + exeinto /etc/init.d + newexe ${FILESDIR}/pmud.start pmud + insinto /etc + doins ${FILESDIR}/power.conf +} |