blob: 295f9566cb3eb93d4f7edc0c566d182c73f614a0 (
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
47
48
49
50
51
52
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gtop/gtop-1.0.13-r2.ebuild,v 1.16 2004/11/22 17:02:34 obz Exp $
inherit eutils
IUSE="nls"
DESCRIPTION="gtop"
SRC_URI="ftp://ftp.gnome.org/pub/GNOME/sources/${PN}/1.0/${P}.tar.gz"
HOMEPAGE="http://www.gnome.org/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 sparc ppc"
DEPEND="( >=gnome-base/libgtop-1.0.12-r1
<gnome-base/libgtop-2.0.0 )
>=gnome-base/gnome-libs-1.4.1.7
nls? ( sys-devel/gettext )"
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/${PN}-1-gcc33_fix.patch
}
src_compile() {
local myconf
if ! use nls ; then
myconf="--disable-nls"
fi
./configure --host=${CHOST} \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var/lib \
$myconf || die
emake || die
}
src_install() {
make prefix=${D}/usr \
sysconfdir=${D}/etc \
localstatedir=${D}/var/lib \
install || die
dodoc AUTHORS COPYING ChangeLog NEWS README TODO
}
|