blob: 974163f9bcea780fbc341a23114036a23fba5600 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Jerry Alexandratos <jerry@gentoo.org>
# /home/cvsroot/gentoo-x86/app-admin/gkrellm/gkrellm-1.0.8.ebuild,v 1.1 2001/05/06 16:32:43 achim Exp
S=${WORKDIR}/${P}
DESCRIPTION="Single process stack of various system monitors"
SRC_URI="http://web.wt.net/~billw/${PN}/${P}.tar.gz"
DEPEND="virtual/glibc
>=x11-libs/gtk+-1.2
>=media-libs/imlib-1.9"
src_compile() {
emake || die
}
src_install () {
cd src
exeinto /usr/X11R6/bin
doexe gkrellm
insinto /usr/include/gkrellm
for i in gkrellm.h gkrellm_private_proto.h gkrellm_public_proto.h
do
doins $i
done
dodir /usr/X11R6/share/gkrellm/{themes,plugins}
cd ${S}
dodoc COPYRIGHT README Changelog
docinto html
dodoc Changelog-plugins.html Changelog-themes.html Themes.html
}
|