blob: 4facd9a9093a9c5b5740b81567c0115490172b16 (
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
|
# Created by: Janos.Mohacsi@bsd.hu
# $FreeBSD$
PORTNAME= nagiostat
PORTVERSION= 1.0.0
PORTREVISION= 6
CATEGORIES= net-mgmt
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/1.0
EXTRACT_SUFX= .tgz
MAINTAINER= jmohacsi@bsd.hu
COMMENT= Nagiostat parses performance-data from Nagios and generates graphs
RUN_DEPENDS= rrdtool:${PORTSDIR}/databases/rrdtool \
nagios:${PORTSDIR}/net-mgmt/nagios
USES= perl5
NO_BUILD= yes
NO_WRKSUBDIR= yes
NAGIOSDIR?= /var/spool/nagios
DOC_FILES= README GPL.txt
NAGIOSWWWDIR?= www/nagios
PLIST_SUB+= NAGIOSWWWDIR=${NAGIOSWWWDIR}
post-patch:
@${REINPLACE_CMD} \
-e 's|%%NAGIOSTATCONFDIR%%|${PREFIX}/etc/|' \
-e 's|%%NAGIOSTATDIR%%|${PREFIX}/libexec/${PORTNAME}/|' \
-e 's|%%NAGIOSTATRRD%%|${NAGIOSDIR}/${PORTNAME}rrd/|' \
-e 's|%%PREFIX%%|${PREFIX}|' \
${WRKSRC}/nagiostat ${WRKSRC}/nagiostat.conf ${WRKSRC}/README
do-install:
@${MKDIR} ${PREFIX}/libexec/${PORTNAME}
@${MKDIR} ${NAGIOSDIR}/${PORTNAME}rrd
@${INSTALL_SCRIPT} ${WRKSRC}/nagiostat ${PREFIX}/libexec/${PORTNAME}/
@${LN} -fs ${PREFIX}/libexec/${PORTNAME}/nagiostat ${PREFIX}/${NAGIOSWWWDIR}/cgi-bin/nagiostat.cgi
@${INSTALL_DATA} ${WRKSRC}/nagiostat.conf ${PREFIX}/etc/nagiostat.conf-sample
@${MKDIR} ${PREFIX}/libexec/${PORTNAME}/html-templates/
@${INSTALL_DATA} ${WRKSRC}/html-templates/default.html ${PREFIX}/libexec/${PORTNAME}/html-templates/
@${INSTALL_DATA} ${WRKSRC}/html-templates/graphindex.html ${PREFIX}/libexec/${PORTNAME}/html-templates/
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for file in ${DOC_FILES}
@${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>
|