blob: 4c460e19017424f5f25ad71d9b0fc092c4e78ea9 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/gpsui/gpsui-2.2.ebuild,v 1.15 2005/01/01 11:03:36 eradicator Exp $
DESCRIPTION="GUI program for managing running processes"
HOMEPAGE="http://gpsui.sourceforge.net/"
SRC_URI="mirror://sourceforge/gpsui/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="ppc ppc64 x86"
IUSE="nls"
DEPEND="=x11-libs/gtk+-1.2*
=gnome-base/gnome-libs-1.4*
nls? ( sys-devel/gettext )"
S="${WORKDIR}/${PN}"
src_compile() {
econf $(use_enable nls) || die "econf failed"
emake || die "Compilation failed"
}
src_install() {
make install DESTDIR="${D}" || die
dodoc AUTHORS ChangeLog README
}
|