40 lines
950 B
Bash
40 lines
950 B
Bash
# Copyright 1999-2010 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.11 2010/09/01 08:30:49 s4t4n 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/"
|
|
|
|
RDEPEND="x11-libs/libX11
|
|
x11-libs/libXext"
|
|
DEPEND="${RDEPEND}
|
|
x11-proto/xproto
|
|
x11-proto/xextproto
|
|
x11-misc/imake
|
|
app-text/rman"
|
|
|
|
SLOT="0"
|
|
LICENSE="GPL-2"
|
|
KEYWORDS="x86 sparc alpha amd64 ppc"
|
|
|
|
src_unpack() {
|
|
unpack ${A}
|
|
cd "${S}"
|
|
epatch "${WORKDIR}"/${P}-misc.patch # bug 72818
|
|
}
|
|
|
|
src_compile() {
|
|
xmkmf || die "xmkmf failed."
|
|
emake CDEBUGFLAGS="${CFLAGS}" LDOPTIONS="${LDFLAGS}" || die "emake failed."
|
|
}
|
|
|
|
src_install() {
|
|
dobin wmnet
|
|
newman wmnet.man wmnet.1
|
|
dodoc README Changelog
|
|
}
|