mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
02a1ef0b28
Command line interface to Icinga. Features: - Listing of service/host states, check queue or downtimes - Detailed service/host info - Scheduling of service rechecks, acknowledging of problems - Detailed filtering (host(group)/service name, state, passive, acknowledged, etc.) - Mostly nagios-compatible http://finalrewind.org/projects/icli/
32 lines
764 B
Makefile
32 lines
764 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= icli
|
|
DISTVERSION= 0.46
|
|
CATEGORIES= net-mgmt perl5
|
|
MASTER_SITES= http://finalrewind.org/projects/icli/
|
|
|
|
MAINTAINER= lme@FreeBSD.org
|
|
COMMENT= Command line interface to Icinga
|
|
|
|
LICENSE= ICLI
|
|
LICENSE_NAME= ICLI license
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
|
|
|
|
RUN_DEPENDS= p5-List-MoreUtils>=0:${PORTSDIR}/lang/p5-List-MoreUtils \
|
|
p5-Term-Size>=0:${PORTSDIR}/devel/p5-Term-Size \
|
|
icinga:${PORTSDIR}/net-mgmt/icinga
|
|
|
|
CONFIGURE_ARGS+= --destdir ${STAGEDIR}
|
|
|
|
USES= perl5
|
|
USE_PERL5= modbuild
|
|
|
|
PLIST_FILES= bin/${PORTNAME} man/man1/${PORTNAME}.1.gz
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -i '' 's|/var/[^/]*/icinga|/var/spool/icinga|' \
|
|
${WRKSRC}/bin/${PORTNAME}
|
|
|
|
.include <bsd.port.mk>
|