blob: 99259da6d8498035f0cc38e0b6af07cd999b6341 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/procman/procman-1.0.ebuild,v 1.24 2005/05/11 03:47:03 halcy0n Exp $
inherit flag-o-matic eutils
DESCRIPTION="Process viewer for GNOME"
HOMEPAGE="http://www.personal.psu.edu/kfv101/procman"
SRC_URI="mirror://gnome/sources/procman/${PV}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="ppc sparc x86"
IUSE="nls"
DEPEND="<gnome-extra/gal-1.99
=gnome-base/libgtop-1.0*"
RDEPEND="nls? ( sys-devel/gettext )"
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/${P}-gcc34.patch
}
src_compile() {
append-flags $(gdk-pixbuf-config --cflags)
econf \
--disable-more-warnings \
$(use_enable nls) \
|| die "econf failed"
emake || die
}
src_install() {
make install DESTDIR="${D}" || die
dodoc AUTHORS ChangeLog README NEWS TODO
}
|