diff options
Diffstat (limited to 'net/rrdtool10')
-rw-r--r-- | net/rrdtool10/Makefile | 52 | ||||
-rw-r--r-- | net/rrdtool10/distinfo | 1 | ||||
-rw-r--r-- | net/rrdtool10/files/patch-aa | 12 | ||||
-rw-r--r-- | net/rrdtool10/files/patch-ab | 18 | ||||
-rw-r--r-- | net/rrdtool10/files/patch-ac | 23 | ||||
-rw-r--r-- | net/rrdtool10/files/patch-ae | 14 | ||||
-rw-r--r-- | net/rrdtool10/files/patch-af | 11 | ||||
-rw-r--r-- | net/rrdtool10/files/patch-ag | 11 | ||||
-rw-r--r-- | net/rrdtool10/files/patch-ak | 11 | ||||
-rw-r--r-- | net/rrdtool10/files/patch-al | 20 | ||||
-rw-r--r-- | net/rrdtool10/pkg-descr | 10 | ||||
-rw-r--r-- | net/rrdtool10/pkg-plist | 91 |
12 files changed, 0 insertions, 274 deletions
diff --git a/net/rrdtool10/Makefile b/net/rrdtool10/Makefile deleted file mode 100644 index 7c5adee41973..000000000000 --- a/net/rrdtool10/Makefile +++ /dev/null @@ -1,52 +0,0 @@ -# New ports collection makefile for: rrdtool -# Date created: 20 July 1999 -# Whom: Dmitry Sivachenko <dima@Chg.RU> -# -# $FreeBSD$ -# - -PORTNAME= rrdtool -PORTVERSION= 1.0.45 -CATEGORIES= net -MASTER_SITES= http://people.ee.ethz.ch/~oetiker/webtools/rrdtool/pub/ - -MAINTAINER= demon@FreeBSD.org -COMMENT= Round Robin Database Tools - -USE_PERL5= yes -MAKE_ENV+= PERL=${PERL} - -USE_GMAKE= yes -USE_LIBTOOL= yes -INSTALLS_SHLIB= yes -CONFIGURE_ARGS= --enable-shared=yes -CONFIGURE_ENV= PERL=${PERL} -CFLAGS:= ${CFLAGS:N-ffast-math} - -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 rrdtutorial.es.1 rrdupdate.1 \ - cdeftutorial.1 rpntutorial.1 rrdinfo.1 rrdxport.1 rrd-beginners.1 -MAN3= RRDp.3 RRDs.3 -MAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} - -.if defined(WITH_LATIN2) -CONFIGURE_ARGS+= --with-latin2 -.endif - -pre-extract: -.if !defined(WITH_LATIN2) - @${ECHO_MSG} "" - @${ECHO_MSG} "You can enable support for ISO-8859-2 fonts by defining WITH_LATIN2." - @${ECHO_MSG} "" -.endif - -post-install: -.if !defined(BATCH) - @${ECHO_MSG} "" - @${ECHO_MSG} "############################################################################" - @${ECHO_MSG} "# See ${PREFIX}/share/examples/rrdtool for some demonstration code #" - @${ECHO_MSG} "############################################################################" -.endif - -.include <bsd.port.mk> diff --git a/net/rrdtool10/distinfo b/net/rrdtool10/distinfo deleted file mode 100644 index a87a26d821c2..000000000000 --- a/net/rrdtool10/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (rrdtool-1.0.45.tar.gz) = 64086fc7f1ca28c069ee5104f85d7a8c diff --git a/net/rrdtool10/files/patch-aa b/net/rrdtool10/files/patch-aa deleted file mode 100644 index 2b96f3c7dcf4..000000000000 --- a/net/rrdtool10/files/patch-aa +++ /dev/null @@ -1,12 +0,0 @@ ---- perl-shared/Makefile.PL.in.orig Wed May 1 17:55:28 2002 -+++ perl-shared/Makefile.PL.in Wed May 1 18:00:05 2002 -@@ -10,7 +10,8 @@ - 'NAME' => 'RRDs', - 'VERSION_FROM' => '@top_srcdir@/perl-shared/RRDs.pm', # finds $VERSION - 'DEFINE' => "-DPERLPATCHLEVEL=$Config{PATCHLEVEL}", -- 'INC' => '-I@top_srcdir@/src -I@top_srcdir@/gd1.3', -+ 'CCFLAGS' => '-DHAVE_CONFIG_H', -+ 'INC' => '-I../config -I@top_srcdir@/src -I@top_srcdir@/gd1.3', - # where to look for the necessary libraries - # Perl will figure out which one is valid - 'depend' => {'RRDs.c' => "../src/.libs/librrd_private.a"}, diff --git a/net/rrdtool10/files/patch-ab b/net/rrdtool10/files/patch-ab deleted file mode 100644 index 705d98777aeb..000000000000 --- a/net/rrdtool10/files/patch-ab +++ /dev/null @@ -1,18 +0,0 @@ ---- src/rrd_tool.c.orig Sun Apr 14 11:48:04 2002 -+++ src/rrd_tool.c Wed May 1 15:59:04 2002 -@@ -322,12 +322,12 @@ - datai=data; - printf(" "); - for (i = 0; i<ds_cnt;i++) -- printf("%14s",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(" %0.10e", *(datai++)); -+ printf(" %0.10e ", *(datai++)); - printf("\n"); - } - for (i=0;i<ds_cnt;i++) diff --git a/net/rrdtool10/files/patch-ac b/net/rrdtool10/files/patch-ac deleted file mode 100644 index 2e8a0ecb18dc..000000000000 --- a/net/rrdtool10/files/patch-ac +++ /dev/null @@ -1,23 +0,0 @@ ---- Makefile.in.orig Mon Oct 20 22:43:34 2003 -+++ Makefile.in Mon Oct 20 22:43:25 2003 -@@ -393,13 +393,13 @@ - # lets schedule the perl stuff for installation - # the special call to install-sh is because the -d switch is not portable - # mac os X has its perl module in bundles so it seems --install-data-local: -- $(top_srcdir)/config/mkinstalldirs $(DESTDIR)$(prefix)/lib/perl/auto/RRDs -- $(INSTALL) -m 644 perl-piped/RRDp.pm $(DESTDIR)$(prefix)/lib/perl -- $(INSTALL) -m 644 perl-shared/RRDs.pm $(DESTDIR)$(prefix)/lib/perl -- $(INSTALL) -m 644 perl-shared/blib/arch/auto/RRDs/RRDs.bs $(DESTDIR)$(prefix)/lib/perl/auto/RRDs -- test -f perl-shared/blib/arch/auto/RRDs/RRDs.@SO_EXT@ && $(INSTALL) -m 755 perl-shared/blib/arch/auto/RRDs/RRDs.@SO_EXT@ $(DESTDIR)$(prefix)/lib/perl/auto/RRDs || true -- test -f perl-shared/blib/arch/auto/RRDs/RRDs.bundle && $(INSTALL) -m 755 perl-shared/blib/arch/auto/RRDs/RRDs.bundle $(DESTDIR)$(prefix)/lib/perl/auto/RRDs || true -+install-data-local: site-perl-inst -+# $(top_srcdir)/config/mkinstalldirs $(DESTDIR)$(prefix)/lib/perl/auto/RRDs -+# $(INSTALL) -m 644 perl-piped/RRDp.pm $(DESTDIR)$(prefix)/lib/perl -+# $(INSTALL) -m 644 perl-shared/RRDs.pm $(DESTDIR)$(prefix)/lib/perl -+# $(INSTALL) -m 644 perl-shared/blib/arch/auto/RRDs/RRDs.bs $(DESTDIR)$(prefix)/lib/perl/auto/RRDs -+# test -f perl-shared/blib/arch/auto/RRDs/RRDs.@SO_EXT@ && $(INSTALL) -m 755 perl-shared/blib/arch/auto/RRDs/RRDs.@SO_EXT@ $(DESTDIR)$(prefix)/lib/perl/auto/RRDs || true -+# test -f perl-shared/blib/arch/auto/RRDs/RRDs.bundle && $(INSTALL) -m 755 perl-shared/blib/arch/auto/RRDs/RRDs.bundle $(DESTDIR)$(prefix)/lib/perl/auto/RRDs || true - - perl_piped:: $(top_builddir)/perl-piped - test -d perl-piped \ diff --git a/net/rrdtool10/files/patch-ae b/net/rrdtool10/files/patch-ae deleted file mode 100644 index b1465ab16354..000000000000 --- a/net/rrdtool10/files/patch-ae +++ /dev/null @@ -1,14 +0,0 @@ ---- doc/Makefile.in.orig Sun Apr 14 11:51:02 2002 -+++ doc/Makefile.in Wed May 1 16:05:42 2002 -@@ -110,9 +110,9 @@ - EXTRA_DIST = $(POD) $(HTML) $(TXT) - - # some install rules --idocdir = $(prefix)/doc -+idocdir = $(prefix)/share/doc/rrdtool/ - idoc_DATA = $(POD) $(TXT) --ihtmldir = $(prefix)/html -+ihtmldir = $(prefix)/share/doc/rrdtool/html - ihtml_DATA = $(HTML) - imandir = $(prefix)/man/man1 - iman_DATA = $(MAN) diff --git a/net/rrdtool10/files/patch-af b/net/rrdtool10/files/patch-af deleted file mode 100644 index ab74382bf032..000000000000 --- a/net/rrdtool10/files/patch-af +++ /dev/null @@ -1,11 +0,0 @@ ---- examples/Makefile.in.orig Sun Apr 14 11:51:04 2002 -+++ examples/Makefile.in Wed May 1 16:07:13 2002 -@@ -93,7 +93,7 @@ - - EXTRA_DIST = cgi-demo.cgi.in piped-demo.pl.in shared-demo.pl.in stripes.pl.in bigtops.pl.in minmax.pl.in - --examplesdir = $(prefix)/examples -+examplesdir = $(prefix)/share/examples/rrdtool - examples_SCRIPTS = cgi-demo.cgi piped-demo.pl shared-demo.pl stripes.pl bigtops.pl minmax.pl - mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs - CONFIG_HEADER = ../config/config.h diff --git a/net/rrdtool10/files/patch-ag b/net/rrdtool10/files/patch-ag deleted file mode 100644 index 205d5ac7228c..000000000000 --- a/net/rrdtool10/files/patch-ag +++ /dev/null @@ -1,11 +0,0 @@ ---- contrib/Makefile.in.orig Sun Apr 14 11:51:05 2002 -+++ contrib/Makefile.in Wed May 1 16:08:10 2002 -@@ -88,7 +88,7 @@ - ZLIB_LIB_DIR = @ZLIB_LIB_DIR@ - - SUBDIRS = trytime --contribdir = $(prefix)/contrib -+contribdir = $(prefix)/share/examples/rrdtool - contrib_DATA = README - EXTRA_DIST = rrdview log2rrd rrd-file-icon rrdproc rrdlastds add_ds killspike rrdfetchnames snmpstats rrdexplorer php3 php4 - mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs diff --git a/net/rrdtool10/files/patch-ak b/net/rrdtool10/files/patch-ak deleted file mode 100644 index c96efc161d92..000000000000 --- a/net/rrdtool10/files/patch-ak +++ /dev/null @@ -1,11 +0,0 @@ ---- contrib/trytime/Makefile.in.orig Sun Apr 14 11:51:10 2002 -+++ contrib/trytime/Makefile.in Wed May 1 16:09:23 2002 -@@ -89,7 +89,7 @@ - - INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/gd1.3 - EXTRA_DIST = trytime.c --contribdir = $(prefix)/contrib/trytime -+contribdir = $(prefix)/share/examples/rrdtool/trytime - contrib_DATA = README trytime.c - bin_PROGRAMS = trytime - trytime_SOURCES = trytime.c diff --git a/net/rrdtool10/files/patch-al b/net/rrdtool10/files/patch-al deleted file mode 100644 index 9c459e8988bc..000000000000 --- a/net/rrdtool10/files/patch-al +++ /dev/null @@ -1,20 +0,0 @@ ---- src/parsetime.c.orig Fri Oct 11 14:39:46 2002 -+++ src/parsetime.c Mon Feb 10 20:47:18 2003 -@@ -660,6 +660,7 @@ - { - long mday=0, wday, mon, year = ptv->tm.tm_year; - int tlen; -+ time_t montime; - - switch (sc_tokid) { - case YESTERDAY: -@@ -713,7 +714,8 @@ - tlen = strlen(sc_token); - mon = atol(sc_token); - if (mon > 10*356*24*60*60) { -- ptv->tm=*localtime(&mon); -+ montime = mon; -+ ptv->tm=*localtime(&montime); - token(); - break; - } diff --git a/net/rrdtool10/pkg-descr b/net/rrdtool10/pkg-descr deleted file mode 100644 index 4b15e3d55ab5..000000000000 --- a/net/rrdtool10/pkg-descr +++ /dev/null @@ -1,10 +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. 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/ diff --git a/net/rrdtool10/pkg-plist b/net/rrdtool10/pkg-plist deleted file mode 100644 index 39244904f30e..000000000000 --- a/net/rrdtool10/pkg-plist +++ /dev/null @@ -1,91 +0,0 @@ -bin/rrdtool -bin/rrdcgi -bin/trytime -bin/rrdupdate -lib/librrd.a -lib/librrd.so.0 -lib/librrd.so -include/rrd.h -share/examples/rrdtool/cgi-demo.cgi -share/examples/rrdtool/piped-demo.pl -share/examples/rrdtool/shared-demo.pl -share/examples/rrdtool/stripes.pl -share/examples/rrdtool/bigtops.pl -share/examples/rrdtool/minmax.pl -share/examples/rrdtool/trytime/trytime.c -share/examples/rrdtool/trytime/README -share/examples/rrdtool/README -share/doc/rrdtool/rrdtool.pod -share/doc/rrdtool/rrdinfo.pod -share/doc/rrdtool/rrdlast.pod -share/doc/rrdtool/rrdcreate.pod -share/doc/rrdtool/rrdupdate.pod -share/doc/rrdtool/cdeftutorial.pod -share/doc/rrdtool/rpntutorial.pod -share/doc/rrdtool/rrdgraph.pod -share/doc/rrdtool/bin_dec_hex.pod -share/doc/rrdtool/rrdfetch.pod -share/doc/rrdtool/rrdrestore.pod -share/doc/rrdtool/rrddump.pod -share/doc/rrdtool/rrdtune.pod -share/doc/rrdtool/rrdresize.pod -share/doc/rrdtool/rrdcgi.pod -share/doc/rrdtool/rrdtutorial.pod -share/doc/rrdtool/rrdtutorial.es.pod -share/doc/rrdtool/rrdxport.pod -share/doc/rrdtool/rrd-beginners.pod -share/doc/rrdtool/rrdtool.txt -share/doc/rrdtool/rrdinfo.txt -share/doc/rrdtool/rrdlast.txt -share/doc/rrdtool/rrdcreate.txt -share/doc/rrdtool/rrdupdate.txt -share/doc/rrdtool/cdeftutorial.txt -share/doc/rrdtool/rpntutorial.txt -share/doc/rrdtool/rrdgraph.txt -share/doc/rrdtool/bin_dec_hex.txt -share/doc/rrdtool/rrdfetch.txt -share/doc/rrdtool/rrdrestore.txt -share/doc/rrdtool/rrddump.txt -share/doc/rrdtool/rrdtune.txt -share/doc/rrdtool/rrdresize.txt -share/doc/rrdtool/rrdcgi.txt -share/doc/rrdtool/rrdtutorial.txt -share/doc/rrdtool/rrdtutorial.es.txt -share/doc/rrdtool/RRDs.txt -share/doc/rrdtool/RRDp.txt -share/doc/rrdtool/rrdxport.txt -share/doc/rrdtool/rrd-beginners.txt -share/doc/rrdtool/html/rrdtool.html -share/doc/rrdtool/html/rrdinfo.html -share/doc/rrdtool/html/rrdlast.html -share/doc/rrdtool/html/rrdcreate.html -share/doc/rrdtool/html/rrdupdate.html -share/doc/rrdtool/html/cdeftutorial.html -share/doc/rrdtool/html/rpntutorial.html -share/doc/rrdtool/html/rrdgraph.html -share/doc/rrdtool/html/bin_dec_hex.html -share/doc/rrdtool/html/rrdfetch.html -share/doc/rrdtool/html/rrdrestore.html -share/doc/rrdtool/html/rrddump.html -share/doc/rrdtool/html/rrdtune.html -share/doc/rrdtool/html/rrdresize.html -share/doc/rrdtool/html/rrdcgi.html -share/doc/rrdtool/html/rrdtutorial.html -share/doc/rrdtool/html/rrdtutorial.es.html -share/doc/rrdtool/html/RRDs.html -share/doc/rrdtool/html/RRDp.html -share/doc/rrdtool/html/rrdxport.html -share/doc/rrdtool/html/rrd-beginners.html -%%SITE_PERL%%/RRDp.pm -%%SITE_PERL%%/%%PERL_ARCH%%/auto/RRDp/.packlist -%%SITE_PERL%%/%%PERL_ARCH%%/RRDs.pm -%%SITE_PERL%%/%%PERL_ARCH%%/ntmake.pl -%%SITE_PERL%%/%%PERL_ARCH%%/auto/RRDs/RRDs.so -%%SITE_PERL%%/%%PERL_ARCH%%/auto/RRDs/RRDs.bs -%%SITE_PERL%%/%%PERL_ARCH%%/auto/RRDs/.packlist -@dirrm share/examples/rrdtool/trytime -@dirrm share/examples/rrdtool -@dirrm share/doc/rrdtool/html -@dirrm share/doc/rrdtool -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/RRDp -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/RRDs |