diff options
Diffstat (limited to 'databases/rrdtool')
| -rw-r--r-- | databases/rrdtool/Makefile | 53 | ||||
| -rw-r--r-- | databases/rrdtool/distinfo | 1 | ||||
| -rw-r--r-- | databases/rrdtool/files/patch-aa | 12 | ||||
| -rw-r--r-- | databases/rrdtool/files/patch-ab | 18 | ||||
| -rw-r--r-- | databases/rrdtool/pkg-comment | 1 | ||||
| -rw-r--r-- | databases/rrdtool/pkg-descr | 13 | ||||
| -rw-r--r-- | databases/rrdtool/pkg-plist | 33 |
7 files changed, 0 insertions, 131 deletions
diff --git a/databases/rrdtool/Makefile b/databases/rrdtool/Makefile deleted file mode 100644 index 719fd89952f0..000000000000 --- a/databases/rrdtool/Makefile +++ /dev/null @@ -1,53 +0,0 @@ -# New ports collection makefile for: rrdtool -# Version required: 1.0.7 -# Date created: 20 July 1999 -# Whom: Dmitry Sivachenko <dima@Chg.RU> -# -# $FreeBSD$ -# - -DISTNAME= rrdtool-1.0.7 -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= RRDp.1 RRDs.1 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 -MAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} - -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/examples/rrdtool - ${INSTALL_SCRIPT} ${WRKSRC}/examples/*.pl ${PREFIX}/share/examples/rrdtool - ${INSTALL_SCRIPT} ${WRKSRC}/examples/*.cgi ${PREFIX}/share/examples/rrdtool - ${INSTALL_MAN} ${WRKSRC}/doc/*.1 ${PREFIX}/man/man1 -.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 dir in piped shared; do \ - cd ${WRKSRC}/perl-$$dir; ${MAKE} install; \ - done - -post-install: -.if !defined(BATCH) - @${ECHO} "" - @${ECHO} "############################################################################" - @${ECHO} "# See ${PREFIX}/share/examples/rrdtool for some demonstration code #" - @${ECHO} "############################################################################" -.endif - -.include <bsd.port.mk> diff --git a/databases/rrdtool/distinfo b/databases/rrdtool/distinfo deleted file mode 100644 index 7f7427c43102..000000000000 --- a/databases/rrdtool/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (rrdtool-1.0.7.tar.gz) = 4f1735aca4df8701101fe59024e6d08f diff --git a/databases/rrdtool/files/patch-aa b/databases/rrdtool/files/patch-aa deleted file mode 100644 index 5e948c99bca4..000000000000 --- a/databases/rrdtool/files/patch-aa +++ /dev/null @@ -1,12 +0,0 @@ ---- perl-shared/Makefile.PL.orig Wed Sep 29 17:26:51 1999 -+++ perl-shared/Makefile.PL Wed Sep 29 17:42:36 1999 -@@ -9,7 +9,8 @@ - 'NAME' => 'RRDs', - 'VERSION_FROM' => 'RRDs.pm', # finds $VERSION - 'OPTIMIZE' => '-g', -- 'INC' => '-I../src -I../gd1.3', -+ 'CCFLAGS' => '-DHAVE_CONFIG_H', -+ 'INC' => '-I../config -I../src -I../gd1.3', - # where to look for the necessary libraries - # Perl will figure out which one is valid - 'depend' => {'RRDs.c' => $librrd}, diff --git a/databases/rrdtool/files/patch-ab b/databases/rrdtool/files/patch-ab deleted file mode 100644 index f4ccd09b6328..000000000000 --- a/databases/rrdtool/files/patch-ab +++ /dev/null @@ -1,18 +0,0 @@ ---- src/rrd_tool.c.orig Thu Nov 18 14:52:04 1999 -+++ src/rrd_tool.c Thu Nov 18 14:54:16 1999 -@@ -202,12 +202,12 @@ - datai=data; - printf(" "); - for (i = 0; i<ds_cnt;i++) -- printf("%10s",ds_namv[i]); -+ printf("%14s ",ds_namv[i]); - printf ("\n\n"); - for (i = start; i <= end; i += step){ -- printf("%10lu:", i); -+ printf("%10lu: ", i); - for (ii = 0; ii < ds_cnt; ii++) -- printf("%10.2f", *(datai++)); -+ printf("%14.2f ", *(datai++)); - printf("\n"); - } - for (i=0;i<ds_cnt;i++) diff --git a/databases/rrdtool/pkg-comment b/databases/rrdtool/pkg-comment deleted file mode 100644 index 73242bc78bb6..000000000000 --- a/databases/rrdtool/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Round Robin Database Tools diff --git a/databases/rrdtool/pkg-descr b/databases/rrdtool/pkg-descr deleted file mode 100644 index ca95d58a230d..000000000000 --- a/databases/rrdtool/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -It is pretty easy to gather status information from all sorts of things, -ranging from the temperature in your office to the number of octets which -have passed through the FDDI interface of your router. But it is not so -trivial to store this data in a efficient and systematic manner. This is -where RRDtool kicks in. It lets you log and analyze the data you gather from -all kinds of data-sources (DS). The data analysis part of RRDtool is based -on the ability to quickly generate graphical representations of the data -values collected over a definable time period. - -WWW: http://ee-staff.ethz.ch/~oetiker/webtools/rrdtool/ - ---dima -dima@Chg.RU diff --git a/databases/rrdtool/pkg-plist b/databases/rrdtool/pkg-plist deleted file mode 100644 index 5d03426f117f..000000000000 --- a/databases/rrdtool/pkg-plist +++ /dev/null @@ -1,33 +0,0 @@ -bin/rrdtool -bin/rrdcgi -bin/log2rrd.pl -share/examples/rrdtool/bigtops.pl -share/examples/rrdtool/minmax.pl -share/examples/rrdtool/piped-demo.pl -share/examples/rrdtool/shared-demo.pl -share/examples/rrdtool/stripes.pl -share/examples/rrdtool/cgi-demo.cgi -share/doc/rrdtool/README.log2rrd -share/doc/rrdtool/RRDp.html -share/doc/rrdtool/RRDs.html -share/doc/rrdtool/bin_dec_hex.html -share/doc/rrdtool/rrdcgi.html -share/doc/rrdtool/rrdcreate.html -share/doc/rrdtool/rrddump.html -share/doc/rrdtool/rrdfetch.html -share/doc/rrdtool/rrdgraph.html -share/doc/rrdtool/rrdlast.html -share/doc/rrdtool/rrdresize.html -share/doc/rrdtool/rrdrestore.html -share/doc/rrdtool/rrdtool.html -share/doc/rrdtool/rrdtune.html -share/doc/rrdtool/rrdtutorial.html -share/doc/rrdtool/rrdupdate.html -lib/perl5/site_perl/%%PERL_VER%%/RRDp.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/RRDp/.packlist -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/RRDs.pm -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/RRDs/RRDs.so -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/RRDs/RRDs.bs -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/RRDs/.packlist -@dirrm share/examples/rrdtool -@dirrm share/doc/rrdtool |
