blob: ea562fa058cc1f819c79c8b42b2a86a6faf6b4f1 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/gps/gps-1.1.0.ebuild,v 1.3 2003/03/28 09:27:55 pvdabeel Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Graphical (GTK+1.2) Process Statistics. Like top, but can show
processes for machines on the network as well."
HOMEPAGE="http://gps.seul.org/"
SRC_URI="ftp://ftp.seul.org/pub/${PN}/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc"
DEPEND="=x11-libs/gtk+-1.2*"
src_install() {
make DESTDIR=${D} install || die
exeinto /etc/init.d
doexe ${FILESDIR}/rgpsp
dodoc TODO README* CHANGELOG INSTALL COPYING
doman rgpsp/rgpsp.1
doman gps.1x
insinto /etc
newins rgpsp/sample.rgpsp.conf rgpsp.conf
rm -rf ${D}/usr/man ${D}/usr/doc ${D}/etc/rc.d
rm -f ${D}/usr/bin/rgpsp
dosym /usr/bin/rgpsp_linux /usr/bin/rgpsp
}
|