1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-25 21:07:40 +00:00
freebsd-ports/net/rrdtool10/Makefile
Bill Fenner bd4a2c1361 Round Robin Database Tool - store time-series data with averaging or other
(lossy) historical compression, and create graphs.

PR:		ports/12717
Submitted by:	Dmitry S. Sivachenko <dima@Chg.RU>
1999-08-22 08:41:12 +00:00

54 lines
1.8 KiB
Makefile

# New ports collection makefile for: rrdtool
# Version required: 1.0.0
# Date created: 20 July 1999
# Whom: Dmitry Sivachenko <dima@Chg.RU>
#
# $Id:$
#
DISTNAME= rrdtool-1.0.0
CATEGORIES= net
MASTER_SITES= http://ee-staff.ethz.ch/~oetiker/webtools/rrdtool/pub/
MAINTAINER= dima@Chg.RU
USE_PERL5= YES
MAKE_ENV+= PERL=${PERL}
GNU_CONFIGURE= YES
CONFIGURE_ENV= PERL=${PERL}
MAN1= bin_dec_hex.1 rrdcgi.1 rrdcreate.1 rrddump.1 rrdfetch.1\
rrdgraph.1 rrdlast.1 rrdresize.1 rrdrestore.1 rrdtool.1\
rrdtune.1 rrdtutorial.1 rrdupdate.1
MAN3= RRDp.3 RRDs.3
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/src/rrdtool ${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/src/rrdcgi ${PREFIX}/bin
${INSTALL_SCRIPT} ${WRKSRC}/contrib/log2rrd/log2rrd.pl ${PREFIX}/bin
${MKDIR} -m 755 ${PREFIX}/share/rrdtool/examples
${INSTALL_SCRIPT} ${WRKSRC}/examples/*.pl ${PREFIX}/share/rrdtool/examples
${INSTALL_SCRIPT} ${WRKSRC}/examples/*.cgi ${PREFIX}/share/rrdtool/examples
${INSTALL_MAN} ${WRKSRC}/doc/*.1 ${PREFIX}/man/man1
${INSTALL_MAN} ${WRKSRC}/doc/*.3 ${PREFIX}/man/man3
.if !defined(NOPORTDOCS)
${MKDIR} -m 755 ${PREFIX}/share/doc/rrdtool
${INSTALL_DATA} ${WRKSRC}/contrib/log2rrd/README ${PREFIX}/share/doc/rrdtool/README.log2rrd
${INSTALL_DATA} ${WRKSRC}/doc/*.html ${PREFIX}/share/doc/rrdtool
.endif
for file in piped/RRDp.pm shared/RRDs.pm; do \
${INSTALL_DATA} ${WRKSRC}/perl-$$file ${PREFIX}/lib/perl5/site_perl/${PERL_VER}; \
done
post-install:
.if !defined(BATCH)
@${ECHO} ""
@${ECHO} "############################################################################"
@${ECHO} "# See ${PREFIX}/share/rrdtool/examples for some demonstration code #"
@${ECHO} "############################################################################"
.endif
.include <bsd.port.mk>