aboutsummaryrefslogtreecommitdiff
path: root/databases/rrdtool
diff options
context:
space:
mode:
Diffstat (limited to 'databases/rrdtool')
-rw-r--r--databases/rrdtool/Makefile38
-rw-r--r--databases/rrdtool/distinfo1
-rw-r--r--databases/rrdtool/files/patch-aa12
-rw-r--r--databases/rrdtool/files/patch-ab18
-rw-r--r--databases/rrdtool/files/patch-ac21
-rw-r--r--databases/rrdtool/files/patch-ae14
-rw-r--r--databases/rrdtool/files/patch-af11
-rw-r--r--databases/rrdtool/files/patch-ag11
-rw-r--r--databases/rrdtool/files/patch-ah11
-rw-r--r--databases/rrdtool/files/patch-ai11
-rw-r--r--databases/rrdtool/files/patch-aj11
-rw-r--r--databases/rrdtool/files/patch-ak11
-rw-r--r--databases/rrdtool/files/patch-al11
-rw-r--r--databases/rrdtool/files/patch-am11
-rw-r--r--databases/rrdtool/files/patch-an11
-rw-r--r--databases/rrdtool/files/patch-ao11
-rw-r--r--databases/rrdtool/pkg-comment1
-rw-r--r--databases/rrdtool/pkg-descr13
-rw-r--r--databases/rrdtool/pkg-plist98
19 files changed, 0 insertions, 326 deletions
diff --git a/databases/rrdtool/Makefile b/databases/rrdtool/Makefile
deleted file mode 100644
index 09808fdfea86..000000000000
--- a/databases/rrdtool/Makefile
+++ /dev/null
@@ -1,38 +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.13
-CATEGORIES= net
-MASTER_SITES= http://ee-staff.ethz.ch/~oetiker/webtools/rrdtool/pub/
-
-MAINTAINER= dima@Chg.RU
-
-USE_PERL5= yes
-MAKE_ENV+= PERL=${PERL}
-
-USE_LIBTOOL= yes
-INSTALLS_SHLIB= yes
-CONFIGURE_ARGS= --enable-shared=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 cdeftutorial.1 \
- rpntutorial.1
-MAN3= RRDp.3 RRDs.3
-MAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION}
-
-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 8262aec2a102..000000000000
--- a/databases/rrdtool/distinfo
+++ /dev/null
@@ -1 +0,0 @@
-MD5 (rrdtool-1.0.13.tar.gz) = 51311e66400ad776cf04a8fcf6594115
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 c23c3688906d..000000000000
--- a/databases/rrdtool/files/patch-ab
+++ /dev/null
@@ -1,18 +0,0 @@
---- src/rrd_tool.c.orig Wed Nov 24 17:06:43 1999
-+++ src/rrd_tool.c Fri Nov 26 15:41:04 1999
-@@ -202,12 +202,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(" %13.2f", *(datai++));
-+ printf(" %14.2f ", *(datai++));
- printf("\n");
- }
- for (i=0;i<ds_cnt;i++)
diff --git a/databases/rrdtool/files/patch-ac b/databases/rrdtool/files/patch-ac
deleted file mode 100644
index 685e54f8fc67..000000000000
--- a/databases/rrdtool/files/patch-ac
+++ /dev/null
@@ -1,21 +0,0 @@
---- Makefile.in.orig Fri Jan 7 22:59:16 2000
-+++ Makefile.in Fri Jan 7 22:59:21 2000
-@@ -373,12 +373,12 @@
-
-
- # lets schedule the perl stuff for installation
--install-data-local:
-- $(INSTALL) -d -m 755 $(prefix)/lib/perl/auto/RRDs
-- $(INSTALL) -m 644 perl-piped/RRDp.pm $(prefix)/lib/perl
-- $(INSTALL) -m 644 perl-shared/RRDs.pm $(prefix)/lib/perl
-- $(INSTALL) -m 644 perl-shared/blib/arch/auto/RRDs/RRDs.bs $(prefix)/lib/perl/auto/RRDs
-- $(INSTALL) -m 755 perl-shared/blib/arch/auto/RRDs/RRDs.so $(prefix)/lib/perl/auto/RRDs
-+install-data-local: site-perl-inst
-+# $(INSTALL) -d -m 755 $(prefix)/lib/perl/auto/RRDs
-+# $(INSTALL) -m 644 perl-piped/RRDp.pm $(prefix)/lib/perl
-+# $(INSTALL) -m 644 perl-shared/RRDs.pm $(prefix)/lib/perl
-+# $(INSTALL) -m 644 perl-shared/blib/arch/auto/RRDs/RRDs.bs $(prefix)/lib/perl/auto/RRDs
-+# $(INSTALL) -m 755 perl-shared/blib/arch/auto/RRDs/RRDs.so $(prefix)/lib/perl/auto/RRDs
-
- # rules for building the perl module
- perl_piped: perl-piped/Makefile
diff --git a/databases/rrdtool/files/patch-ae b/databases/rrdtool/files/patch-ae
deleted file mode 100644
index 98feb795d0ff..000000000000
--- a/databases/rrdtool/files/patch-ae
+++ /dev/null
@@ -1,14 +0,0 @@
---- doc/Makefile.in.orig Fri Jan 7 20:56:21 2000
-+++ doc/Makefile.in Fri Jan 7 20:57:05 2000
-@@ -96,9 +96,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/databases/rrdtool/files/patch-af b/databases/rrdtool/files/patch-af
deleted file mode 100644
index a109c319e248..000000000000
--- a/databases/rrdtool/files/patch-af
+++ /dev/null
@@ -1,11 +0,0 @@
---- examples/Makefile.in.orig Fri Jan 7 20:58:16 2000
-+++ examples/Makefile.in Fri Jan 7 20:59:13 2000
-@@ -81,7 +81,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/databases/rrdtool/files/patch-ag b/databases/rrdtool/files/patch-ag
deleted file mode 100644
index 00a71b9b165d..000000000000
--- a/databases/rrdtool/files/patch-ag
+++ /dev/null
@@ -1,11 +0,0 @@
---- contrib/Makefile.in.orig Fri Jan 7 21:04:47 2000
-+++ contrib/Makefile.in Fri Jan 7 21:04:24 2000
-@@ -77,7 +77,7 @@
-
- SUBDIRS = log2rrd rrd-file-icon trytime rrdproc
-
--contribdir = $(prefix)/contrib
-+contribdir = $(prefix)/share/examples/rrdtool
- contrib_DATA = README
- mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
- CONFIG_HEADER = ../config/config.h
diff --git a/databases/rrdtool/files/patch-ah b/databases/rrdtool/files/patch-ah
deleted file mode 100644
index ba81028f2075..000000000000
--- a/databases/rrdtool/files/patch-ah
+++ /dev/null
@@ -1,11 +0,0 @@
---- contrib/log2rrd/Makefile.in.orig Fri Jan 7 21:07:22 2000
-+++ contrib/log2rrd/Makefile.in Fri Jan 7 21:07:45 2000
-@@ -77,7 +77,7 @@
-
- EXTRA_DIST = log2rrd.pl.in
-
--contribdir = $(prefix)/contrib/log2rrd
-+contribdir = $(prefix)/share/examples/rrdtool/log2rrd
- contrib_DATA = README
- contrib_SCRIPTS = log2rrd.pl
- mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
diff --git a/databases/rrdtool/files/patch-ai b/databases/rrdtool/files/patch-ai
deleted file mode 100644
index 005a791e0dc8..000000000000
--- a/databases/rrdtool/files/patch-ai
+++ /dev/null
@@ -1,11 +0,0 @@
---- contrib/rrd-file-icon/Makefile.in.orig Fri Jan 7 21:08:22 2000
-+++ contrib/rrd-file-icon/Makefile.in Fri Jan 7 21:08:46 2000
-@@ -76,7 +76,7 @@
- ZLIB_LIB_DIR = @ZLIB_LIB_DIR@
-
- EXTRA_DIST = rrd.png
--contribdir = $(prefix)/contrib/rrd-file-icon
-+contribdir = $(prefix)/share/examples/rrdtool/rrd-file-icon
- contrib_DATA = README rrd.png
- mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
- CONFIG_HEADER = ../../config/config.h
diff --git a/databases/rrdtool/files/patch-aj b/databases/rrdtool/files/patch-aj
deleted file mode 100644
index 6af2fc2b9ba2..000000000000
--- a/databases/rrdtool/files/patch-aj
+++ /dev/null
@@ -1,11 +0,0 @@
---- contrib/rrdproc/Makefile.in.orig Fri Jan 7 21:09:17 2000
-+++ contrib/rrdproc/Makefile.in Fri Jan 7 21:09:36 2000
-@@ -76,7 +76,7 @@
- ZLIB_LIB_DIR = @ZLIB_LIB_DIR@
-
- EXTRA_DIST = rrdproc.c
--contribdir = $(prefix)/contrib/rrdproc
-+contribdir = $(prefix)/share/examples/rrdtool/rrdproc
- contrib_DATA = README rrdproc.c
- mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
- CONFIG_HEADER = ../../config/config.h
diff --git a/databases/rrdtool/files/patch-ak b/databases/rrdtool/files/patch-ak
deleted file mode 100644
index f998e6995400..000000000000
--- a/databases/rrdtool/files/patch-ak
+++ /dev/null
@@ -1,11 +0,0 @@
---- contrib/trytime/Makefile.in.orig Fri Jan 7 21:11:21 2000
-+++ contrib/trytime/Makefile.in Fri Jan 7 21:11:41 2000
-@@ -76,7 +76,7 @@
- ZLIB_LIB_DIR = @ZLIB_LIB_DIR@
-
- EXTRA_DIST = trytime.c
--contribdir = $(prefix)/contrib/trytime
-+contribdir = $(prefix)/share/examples/rrdtool/trytime
- contrib_DATA = README trytime.c
- mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
- CONFIG_HEADER = ../../config/config.h
diff --git a/databases/rrdtool/files/patch-al b/databases/rrdtool/files/patch-al
deleted file mode 100644
index c74995d8f0cb..000000000000
--- a/databases/rrdtool/files/patch-al
+++ /dev/null
@@ -1,11 +0,0 @@
---- contrib/rrdlastds/Makefile.in.orig Sat Feb 12 18:22:45 2000
-+++ contrib/rrdlastds/Makefile.in Sat Feb 12 18:23:30 2000
-@@ -77,7 +77,7 @@
-
- EXTRA_DIST = rrdlastds.pl.in
-
--contribdir = $(prefix)/contrib/rrdlastds
-+contribdir = $(prefix)/share/examples/rrdtool/rrdlastds
- contrib_DATA = README
- contrib_SCRIPTS = rrdlastds.pl
- mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
diff --git a/databases/rrdtool/files/patch-am b/databases/rrdtool/files/patch-am
deleted file mode 100644
index c6cae0440881..000000000000
--- a/databases/rrdtool/files/patch-am
+++ /dev/null
@@ -1,11 +0,0 @@
---- contrib/add_ds/Makefile.in.orig Sat Feb 12 18:26:00 2000
-+++ contrib/add_ds/Makefile.in Sat Feb 12 18:26:17 2000
-@@ -77,7 +77,7 @@
-
- EXTRA_DIST = add_ds.pl.in batch.pl.in
-
--contribdir = $(prefix)/contrib/add_ds
-+contribdir = $(prefix)/share/examples/rrdtool/add_ds
- contrib_DATA = README
- contrib_SCRIPTS = add_ds.pl batch.pl
- mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
diff --git a/databases/rrdtool/files/patch-an b/databases/rrdtool/files/patch-an
deleted file mode 100644
index 6d4b4a9cd45d..000000000000
--- a/databases/rrdtool/files/patch-an
+++ /dev/null
@@ -1,11 +0,0 @@
---- contrib/killspike/Makefile.in.orig Sat Feb 12 18:27:04 2000
-+++ contrib/killspike/Makefile.in Sat Feb 12 18:27:19 2000
-@@ -77,7 +77,7 @@
-
- EXTRA_DIST = killspike.pl.in
-
--contribdir = $(prefix)/contrib/killspike
-+contribdir = $(prefix)/share/examples/rrdtool/killspike
- contrib_DATA = README
- contrib_SCRIPTS = killspike.pl
- mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
diff --git a/databases/rrdtool/files/patch-ao b/databases/rrdtool/files/patch-ao
deleted file mode 100644
index 3dc1cc622454..000000000000
--- a/databases/rrdtool/files/patch-ao
+++ /dev/null
@@ -1,11 +0,0 @@
---- contrib/rrdfetchnames/Makefile.in.orig Mon Feb 14 23:27:59 2000
-+++ contrib/rrdfetchnames/Makefile.in Mon Feb 14 23:28:17 2000
-@@ -77,7 +77,7 @@
-
- EXTRA_DIST = rrdfetchnames.pl.in
-
--contribdir = $(prefix)/contrib/rrdfetchnames
-+contribdir = $(prefix)/share/examples/rrdtool/rrdfetchnames
- contrib_DATA = README
- contrib_SCRIPTS = rrdfetchnames.pl
- mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
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 a5160007dbdc..000000000000
--- a/databases/rrdtool/pkg-plist
+++ /dev/null
@@ -1,98 +0,0 @@
-bin/rrdtool
-bin/rrdcgi
-lib/librrd.a
-lib/librrd.so.0
-lib/librrd.so
-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/log2rrd/log2rrd.pl
-share/examples/rrdtool/log2rrd/README
-share/examples/rrdtool/rrd-file-icon/rrd.png
-share/examples/rrdtool/rrd-file-icon/README
-share/examples/rrdtool/trytime/trytime.c
-share/examples/rrdtool/trytime/README
-share/examples/rrdtool/rrdproc/rrdproc.c
-share/examples/rrdtool/rrdproc/README
-share/examples/rrdtool/rrdlastds/README
-share/examples/rrdtool/rrdlastds/rrdlastds.pl
-share/examples/rrdtool/add_ds/add_ds.pl
-share/examples/rrdtool/add_ds/batch.pl
-share/examples/rrdtool/add_ds/README
-share/examples/rrdtool/killspike/killspike.pl
-share/examples/rrdtool/killspike/README
-share/examples/rrdtool/rrdfetchnames/rrdfetchnames.pl
-share/examples/rrdtool/rrdfetchnames/README
-share/examples/rrdtool/README
-share/doc/rrdtool/rrdtool.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/rrdtool.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/RRDs.txt
-share/doc/rrdtool/RRDp.txt
-share/doc/rrdtool/html/rrdtool.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/RRDs.html
-share/doc/rrdtool/html/RRDp.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%%/ntmake.pl
-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/log2rrd
-@dirrm share/examples/rrdtool/trytime
-@dirrm share/examples/rrdtool/rrdproc
-@dirrm share/examples/rrdtool/rrd-file-icon
-@dirrm share/examples/rrdtool/add_ds
-@dirrm share/examples/rrdtool/killspike
-@dirrm share/examples/rrdtool/rrdfetchnames
-@dirrm share/examples/rrdtool/rrdlastds
-@dirrm share/examples/rrdtool
-@dirrm share/doc/rrdtool/html
-@dirrm share/doc/rrdtool
-@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/RRDp
-@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/RRDs