blob: e580b72f63415fb0c858e0d1278eab9936589f9e (
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-2004 Gentoo Foundation
# 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.11 2004/10/05 02:58:10 pvdabeel Exp $
DESCRIPTION="Graphical (GTK+1.2) Process Statistics"
HOMEPAGE="http://gps.seul.org/"
SRC_URI="ftp://ftp.seul.org/pub/gps/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc amd64"
IUSE=""
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
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
}
|