blob: 3be5f1ed5963e072f6d2f5367d3054fb72fe617e (
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
41
42
43
44
45
46
47
48
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/mon/mon-0.99.2-r1.ebuild,v 1.12 2003/09/06 22:08:32 msterret Exp $
DESCRIPTION="highly configurable service monitoring daemon"
SRC_URI="mirror://kernel/software/admin/mon/${P}.tar.bz2"
HOMEPAGE="http://www.kernel.org/software/mon/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc sparc"
DEPEND=">=dev-perl/Mon-0.9
>=dev-perl/Time-HiRes-01.20
>=dev-perl/Period-1.20-r2"
src_compile() {
cd ${S}/mon.d
make CC="gcc $CFLAGS" || die
}
src_install() {
exeinto /usr/sbin
doexe mon clients/mon*
insinto /usr/lib/mon/utils
doins utils/*
exeinto /usr/lib/mon/alert.d ; doexe alert.d/*
exeinto /usr/lib/mon/mon.d ; doexe mon.d/*.monitor
insopts -g uucp -m 02555 ; doins mon.d/*.wrap
dodir /var/log/mon.d
dodir /var/lib/mon.d
doman doc/*.1
doman doc/*.8
dodoc CHANGES COPYING CREDITS KNOWN-PROBLEMS
dodoc mon.lsm README TODO VERSION
docinto txt ; dodoc doc/README*
docinto etc ; dodoc etc/*
newdoc ${FILESDIR}/mon.cf mon.cf.sample
exeinto /etc/init.d
newexe ${FILESDIR}/mon.rc6 mon
insinto /etc/mon
newins ${FILESDIR}/mon.cf mon.cf.sample
}
|