blob: 15f2af1c37c16b4bb93ea26ac3a2641444b4b1cb (
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
42
43
44
45
46
|
# Copyright 1999-2005 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-r1.ebuild,v 1.6 2005/04/08 12:39:12 seemant Exp $
inherit eutils
DESCRIPTION="Graphical (GTK+1.2) Process Statistics"
HOMEPAGE="http://gps.seul.org/"
SRC_URI="ftp://ftp.seul.org/pub/gps/${P}.tar.gz
mirror:/gentoo/${P}-gentoo.bz2
http://dev.gentoo.org/~seemant/${P}-gentoo.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc amd64"
IUSE=""
DEPEND="=x11-libs/gtk+-1.2*"
RESTRICT="nouserpriv"
src_unpack() {
unpack ${A}
epatch ${WORKDIR}/${P}-gentoo
}
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
}
|