blob: e437a9efa348eb254c6c910c791b310c7ee0c4e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkacpi/gkacpi-0.5.ebuild,v 1.8 2004/06/24 22:52:52 agriffis Exp $
IUSE=""
DESCRIPTION="ACPI monitor for Gkrellm"
SRC_URI="http://uname.dyndns.org/~uname/files/gkacpi/${P}.tar.gz"
HOMEPAGE="http://uname.dyndns.org/~uname/software.php"
LICENSE="GPL-2"
RDEPEND="=app-admin/gkrellm-2*"
KEYWORDS="x86"
SLOT="0"
src_compile() {
emake || die
}
src_install () {
insinto /usr/lib/gkrellm2/plugins
doins gkacpi.so
dodoc AUTHORS ChangeLog COPYING INSTALL README
}
|