freebsd-ports/net-mgmt/nagiostat/Makefile
Edwin Groothuis 3de5a84967 First steps in a big migration:
Move net/rrdtool to databases/rrdtool.

    It's an itch which needs to be scratched: net/rrdtool came from
    net/mrtg, which was a good location for it. net/mrtg has later
    been moved to net-mgmt/mrtg. net/rrdtool is "Round Robin Database
    Tools", therefor it's better if it moves to databases/rrdtool.
    Same with net/rrdtool10.

PR:		ports/112942
Submitted by:	Edwin Groothuis <edwin@mavetju.org>
2007-07-05 06:19:49 +00:00

63 lines
1.9 KiB
Makefile

# New ports collection makefile for: nagiostat
# Date created: 20 July 2004
# Whom: Janos.Mohacsi@bsd.hu
#
# $FreeBSD$
#
PORTNAME= nagiostat
PORTVERSION= 1.0.0
PORTREVISION= 1
CATEGORIES= net-mgmt
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
EXTRACT_SUFX= .tgz
MAINTAINER= janos.mohacsi@bsd.hu
COMMENT= Nagiostat parses performance-data from Nagios and generates graphs
RUN_DEPENDS= rrdtool:${PORTSDIR}/databases/rrdtool \
nagios:${PORTSDIR}/net-mgmt/nagios
USE_PERL5= yes
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
@${INSTALL_DATA} ${WRKSRC}/graph.gif ${PREFIX}/${NAGIOSWWWDIR}/images/logos
@${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.pre.mk>
.if ${PERL_LEVEL} < 500800
RUN_DEPENDS+= ${SITE_PERL}/CGI.pm:${PORTSDIR}/www/p5-CGI.pm
.endif
.include <bsd.port.post.mk>