blob: e723e6bbdc7dc3c627588503088e15c1afcc6a16 (
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-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmnetmon/wmnetmon-0.2.ebuild,v 1.10 2006/01/31 20:07:46 nelchael Exp $
IUSE=""
S=${WORKDIR}/${P}p5/
DESCRIPTION="dockapp that monitors up to 40 hosts/services and can execute something if there is a problem with any of them"
HOMEPAGE="http://freshmeat.net/projects/wmnetmon/?topic_id=876"
SRC_URI="http://www.linuks.mine.nu/dockapps/${P}p5.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc ~sparc"
RDEPEND="|| ( (
x11-libs/libX11
x11-libs/libXext
x11-libs/libXpm )
virtual/x11 )"
DEPEND="${RDEPEND}
|| ( x11-proto/xextproto virtual/x11 )"
src_compile() {
econf --prefix=${D}/usr/bin || die "Configure failed."
emake || die "Make failed"
}
src_install() {
dobin wmnetmon
fowners root:0 /usr/bin/wmnetmon
fperms 4755 /usr/bin/wmnetmon
dodoc README Changes wmnetmonrc
}
pkg_postinst() {
ewarn
ewarn "Before starting up wmnetmon, you must create a .wmnetmonrc in your home folder."
ewarn "Look at the sample wmnetmonrc.gz file in /usr/share/doc/${P}/."
ewarn
}
|