blob: 6d0b93e61c9b7b0e1273dad086df6e2ed18ef4f3 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nagios-nsca/nagios-nsca-2.3.ebuild,v 1.2 2003/02/13 13:44:33 vapier Exp $
DESCRIPTION="Nagios $PV NSCA - Nagios Service Check Acceptor"
HOMEPAGE="http://www.nagios.org/"
SRC_URI="mirror://sourceforge/nagios/nsca-2.3.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~sparc"
IUSE=""
DEPEND=">=net-analyzer/nagios-plugins-1.3.0_beta2
>=libmcrypt-2.5.1-r4"
S="${WORKDIR}/nsca-2.3"
src_compile() {
./configure \
--host=${CHOST} \
--prefix=/usr/nagios \
--localstatedir=/var/nagios \
--sysconfdir=/etc/nagios \
--with-nsca-user=nagios \
--with-nsca-grp=nagios \
--infodir=/usr/share/info \
--mandir=/usr/share/man || die "./configure failed"
emake all || die
}
src_install() {
dodoc LEGAL Changelog README SECURITY
insinto /etc/nagios
doins ${FILESDIR}/nsca.cfg
doins ${FILESDIR}/send_nsca.cfg
exeinto /usr/nagios/bin
doexe src/nsca
fowners nagios:nagios /usr/nagios/bin/nsca
exeinto /usr/nagios/libexec
doexe src/send_nsca
fowners nagios:nagios /usr/nagios/libexec/send_nsca
exeinto /etc/init.d
doexe ${FILESDIR}/nsca
}
pkg_postinst() {
einfo
einfo "If you are using the nsca daemon, remember to edit"
einfo "the config file /etc/nagios/nsca.cfg"
einfo
}
|