blob: bc6d7d6d19534095064b9fa2fdaf03f473113c56 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/gkrellm/gkrellm-1.2.13.ebuild,v 1.19 2005/01/01 11:01:50 eradicator Exp $
DESCRIPTION="Single process stack of various system monitors"
SRC_URI="http://web.wt.net/~billw/gkrellm/${P}.tar.bz2"
HOMEPAGE="http://www.gkrellm.net/"
SLOT="1"
LICENSE="GPL-2"
KEYWORDS="x86 ppc sparc alpha"
IUSE="nls"
DEPEND="=x11-libs/gtk+-1.2*
>=media-libs/imlib-1.9.10-r1"
RDEPEND="nls? ( sys-devel/gettext )"
src_compile() {
use nls || ln -sf Makefile.top Makefile
emake || die
}
src_install() {
dodir /usr/{bin,include,share/man}
dodir /usr/share/gkrellm/{themes,plugins}
make install \
INSTALLDIR=${D}/usr/bin \
MANDIR=${D}/usr/share/man/man1 \
INCLUDEDIR=${D}/usr/include \
LOCALEDIR=${D}/usr/share/locale
dodoc COPYRIGHT README Changelog
dohtml *.html
}
|