blob: eb249213031f10b23bc2e1e07eeef85a7b7b73eb (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netspeed_applet/netspeed_applet-0.3.ebuild,v 1.4 2002/12/09 04:33:09 manson Exp $
DESCRIPTION="Applet showing network traffic for GNOME 2"
HOMEPAGE="http://mfcn.ilo.de/netspeed_applet/"
SRC_URI="http://mfcn.ilo.de/netspeed_applet/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc sparc "
DEPEND=">=x11-libs/gtk+-2.0.5
>=gnome-base/libgnome-2.0.1
>=gnome-base/libgnomeui-2.0.1
>=gnome-base/libgtop-2.0.0-r1
>=gnome-base/gnome-applets-2.0.0-r1"
RDEPEND="${DEPEND}
>=dev-util/intltool-0.22"
S=${WORKDIR}/${P}
src_compile() {
econf || die "./configure failed"
emake || die
}
src_install () {
dodir /usr/share/pixmaps
make DESTDIR=${D} install || die
dodoc README NEWS ChangeLog COPYING AUTHORS INSTALL
}
|