blob: 66653cd69cf4f501d2adec885cb646b7b9ba3424 (
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-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkacpi/gkacpi-0.5.ebuild,v 1.1 2002/12/16 23:23:06 bass Exp $
S="${WORKDIR}/${P}"
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"
DEPEND="app-admin/gkrellm"
RDEPEND="${DEPEND}"
KEYWORDS="x86"
SLOT="0"
src_compile() {
emake || die
}
src_install () {
insinto /usr/lib/gkrellm2/plugins
doins gkacpi.so
dodoc AUTHORS ChangeLog COPYING INSTALL README
}
|