blob: f8e486c283632de0dd2abbd25a0b04672560a4ff (
plain) (
blame)
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
53
54
55
56
57
|
# New ports collection makefile for: nrpe
# Date created: 1 Aug 2002
# Whom: Paul Dlug<paul@nerdlabs.com>
#
# $FreeBSD$
#
PORTNAME= nrpe2
PORTVERSION= 2.5.1
CATEGORIES= net-mgmt
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= nagios
DISTNAME= nrpe-${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= Nagios Remote Plugin Executor
RUN_DEPENDS= ${LOCALBASE}/libexec/nagios/check_nagios:${PORTSDIR}/net-mgmt/nagios-plugins
GNU_CONFIGURE= yes
USE_PERL5_BUILD= yes
USE_RC_SUBR= nrpe2.sh
PLIST_FILES= sbin/nrpe2 etc/nrpe.cfg-sample libexec/nagios/check_nrpe2
CONFIGURE_ARGS= --libexecdir=${PREFIX}/libexec/nagios \
--bindir=${PREFIX}/sbin --sysconfdir=${PREFIX}/etc
OPTIONS= SSL "SSL support" off \
ARGS "Enable command arguments *POTENTIAL SECURITY RISK*" off
.include <bsd.port.pre.mk>
.if defined(WITH_SSL)
.include "${PORTSDIR}/Mk/bsd.openssl.mk"
CONFIGURE_ARGS+= --enable-ssl
.else
CONFIGURE_ARGS+= --disable-ssl
.endif
.if defined(WITH_ARGS)
CONFIGURE_ARGS+= --enable-command-args
.endif
post-build:
@${REINPLACE_CMD} -e 's|nrpe.pid|nrpe2.pid|g' \
${WRKSRC}/sample-config/nrpe.cfg
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/src/nrpe ${PREFIX}/sbin/nrpe2
${INSTALL_PROGRAM} ${WRKSRC}/src/check_nrpe \
${PREFIX}/libexec/nagios/check_nrpe2
${INSTALL_DATA} ${WRKSRC}/sample-config/nrpe.cfg \
${PREFIX}/etc/nrpe.cfg-sample
.include <bsd.port.post.mk>
|