summaryrefslogtreecommitdiff
blob: d2b339b6927ebc63755c5c68a9441b918d6c156b (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
49
50
51
52
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/app-admin/mon/mon-0.38.20-r7.ebuild,v 1.2 2002/07/17 20:43:17 drobbins Exp $

S=${WORKDIR}/${P}
DESCRIPTION="mon is a highly configurable service monitoring daemon"
SRC_URI="ftp://ftp.kernel.org/pub/software/admin/mon/${P}.tar.bz2"
SLOT="0"
HOMEPAGE="http://www.kernel.org/software/mon/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"

DEPEND="virtual/glibc"
RDEPEND=">=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
}