blob: f130c6afd1d3c3f1d64ace3232613fc1e0fa3463 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmnetload/wmnetload-1.3-r3.ebuild,v 1.9 2014/09/01 15:21:48 voyageur Exp $
inherit autotools eutils
DESCRIPTION="Network interface monitor dockapp"
HOMEPAGE="http://freshmeat.net/projects/wmnetload/"
SRC_URI="ftp://truffula.com/pub/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc ppc64 x86"
IUSE=""
RDEPEND=">=x11-libs/libdockapp-0.6.1"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${PN}-${PVR}-norpath.patch"
eautoreconf
}
src_install() {
emake DESTDIR="${D}" install || die "einstall failed."
dodoc AUTHORS README NEWS
}
|