blob: eac28a6bb718606c0b8befaf2eb9808c4ac4e2fa (
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
|
# 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.9 2005/10/31 13:06:36 nelchael 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"
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
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
}
|