blob: 6c7323ce70f5a3b8b660167f4088becde94aa728 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-laptop/xpmumon/xpmumon-1.3.0.ebuild,v 1.2 2005/01/01 14:50:02 eradicator Exp $
DESCRIPTION="Battery monitor for PMU-based Powerbooks and iBooks"
HOMEPAGE="http://packages.debian.org/unstable/x11/xpmumon"
SRC_URI="http://ftp.debian.org/debian/pool/main/x/xpmumon/${PN}_${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="ppc"
IUSE=""
DEPEND="virtual/x11"
src_compile() {
xmkmf -a
make || die "compile failed"
}
src_install() {
make install install.man DESTDIR=${D} || die
}
|