blob: 23c8b9fd3b313e51f610ea3208278e83f682a343 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmbluecpu/wmbluecpu-0.6.ebuild,v 1.4 2005/11/07 16:07:23 s4t4n Exp $
IUSE=""
DESCRIPTION="A blue WMaker DockApp to see CPU usage."
HOMEPAGE="http://sheepmakers.ath.cx/utils/wmbluecpu/"
SRC_URI="http://litestep.boo.pl/files/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="ppc ~sparc x86"
DEPEND="virtual/x11"
src_compile()
{
FLAGS=${CFLAGS} make -e || die "Compilation failed"
}
src_install()
{
dobin wmbluecpu
doman wmbluecpu.1
dodoc ChangeLog TODO README THANKS AUTHORS
}
|