blob: 60721abe89324297c81e3fbeb5cd730c73078fde (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmnet/wmnet-1.06-r1.ebuild,v 1.7 2005/04/10 11:55:59 hansmi Exp $
inherit eutils
IUSE=""
DESCRIPTION="WMnet is a dock.app network monitor"
SRC_URI="http://www.digitalkaos.net/linux/wmnet/download/${P}.tar.gz
mirror://gentoo/${P}-misc.patch.bz2"
HOMEPAGE="http://www.digitalkaos.net/linux/wmnet/"
DEPEND="virtual/x11"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 sparc alpha amd64 ppc"
src_unpack() {
unpack ${A} ; cd ${S}
# Misc patchset, bug #72818
epatch ${WORKDIR}/${P}-misc.patch
# Issue already taken care of in prev patchset
# epatch ${FILESDIR}/${P}-nonx86.patch
}
src_compile() {
xmkmf || die "xmkmf failed"
emake CDEBUGFLAGS="${CFLAGS}" || die "parallel make failed"
}
src_install() {
dobin wmnet
dohtml wmnet.1x.html
newman wmnet.man wmnet.1
dodoc README Changelog
}
|