diff options
| author | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-09-01 16:33:09 +0000 |
|---|---|---|
| committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-09-01 16:33:09 +0000 |
| commit | 8901c97d1268a3e5a236e33a7624116a6d4af04f (patch) | |
| tree | ebb104d4e4859dfae91de591c24abfb3d7b599d5 /graphics/orca | |
| parent | Do not insist on c++11. (diff) | |
Remove non staged ports without pending PR from g*
Diffstat (limited to 'graphics/orca')
| -rw-r--r-- | graphics/orca/Makefile | 30 | ||||
| -rw-r--r-- | graphics/orca/distinfo | 2 | ||||
| -rw-r--r-- | graphics/orca/files/patch-Makefile.in | 20 | ||||
| -rw-r--r-- | graphics/orca/files/patch-lib_Orca_ImageFile.pm | 27 | ||||
| -rw-r--r-- | graphics/orca/files/patch-src_Makefile.in | 11 | ||||
| -rw-r--r-- | graphics/orca/pkg-descr | 18 | ||||
| -rw-r--r-- | graphics/orca/pkg-message | 4 | ||||
| -rw-r--r-- | graphics/orca/pkg-plist | 15 |
8 files changed, 0 insertions, 127 deletions
diff --git a/graphics/orca/Makefile b/graphics/orca/Makefile deleted file mode 100644 index 5e9bca0e81e4..000000000000 --- a/graphics/orca/Makefile +++ /dev/null @@ -1,30 +0,0 @@ -# Created by: jsellens -# $FreeBSD$ - -PORTNAME= orca -PORTVERSION= 0.27 -PORTREVISION= 2 -PORTEPOCH= 1 -CATEGORIES= graphics -MASTER_SITES= http://www.orcaware.com/orca/pub/ -PKGNAMESUFFIX= -plot - -MAINTAINER= ports@FreeBSD.org -COMMENT= Tool for plotting arbitrary data from text files onto a Web server - -BUILD_DEPENDS= \ - p5-TimeDate>=0:${PORTSDIR}/devel/p5-TimeDate \ - p5-Math-Interpolate>=0:${PORTSDIR}/math/p5-Math-Interpolate \ - rrdtool>=0:${PORTSDIR}/databases/rrdtool - -USES= perl5 -HAS_CONFIGURE= yes -CONFIGURE_ARGS= --prefix=${PREFIX} --with-html-dir=${PREFIX}/www/data/orca - -MAN1= orca.1 - -NO_STAGE= yes -post-install: - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.mk> diff --git a/graphics/orca/distinfo b/graphics/orca/distinfo deleted file mode 100644 index 723551d16835..000000000000 --- a/graphics/orca/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (orca-0.27.tar.gz) = ebb3bbf5a9799bef036e0d540c34d45270496e8c8d1816a82c8a578ad740f052 -SIZE (orca-0.27.tar.gz) = 1696384 diff --git a/graphics/orca/files/patch-Makefile.in b/graphics/orca/files/patch-Makefile.in deleted file mode 100644 index c50c6646b404..000000000000 --- a/graphics/orca/files/patch-Makefile.in +++ /dev/null @@ -1,20 +0,0 @@ ---- Makefile.in.orig Wed Aug 7 20:08:36 2002 -+++ Makefile.in Tue Feb 18 23:58:27 2003 -@@ -1,6 +1,7 @@ - @SET_MAKE@ - --SUBDIRS = packages lib src @ORCALLATOR_SUBDIR@ docs contrib -+# SUBDIRS = packages lib src @ORCALLATOR_SUBDIR@ docs contrib -+SUBDIRS = packages lib src docs contrib - prefix = @prefix@ - MKDIR = @MKDIR@ - MAKE_RRDTOOL = @MAKE_RRDTOOL@ -@@ -30,8 +31,6 @@ - - install: $(INSTALL_RRDTOOL) - $(MKDIR) $(VAR_DIR) -- $(MKDIR) $(ORCALLATOR_DIR) -- $(MKDIR) $(RRD_DIR)/orcallator - @for dir in $(SUBDIRS); do \ - if test -d $$dir; then \ - echo "cd $$dir"; \ diff --git a/graphics/orca/files/patch-lib_Orca_ImageFile.pm b/graphics/orca/files/patch-lib_Orca_ImageFile.pm deleted file mode 100644 index 34ced9c6043d..000000000000 --- a/graphics/orca/files/patch-lib_Orca_ImageFile.pm +++ /dev/null @@ -1,27 +0,0 @@ ---- lib/Orca/ImageFile.pm 2005/07/11 05:21:08 461 -+++ lib/Orca/ImageFile.pm 2005/07/21 02:48:44 467 -@@ -400,6 +400,14 @@ - - my $plot_ref = $self->[I_PLOT_REF]; - -+ # An incompatible change was introduced in RRDtool 1.2 where colons -+ # in COMMENT arguments to RRDs::graph must be escaped with a -+ # backslash. -+ my $plot_end_time_ctime = localtime($plot_end_time); -+ if ($RRDs::VERSION >= 1.2) { -+ $plot_end_time_ctime =~ s/:/\\:/g; -+ } -+ - my ($graph_return, $image_width, $image_height) = - RRDs::graph - $image_filename, -@@ -410,7 +418,7 @@ - '-w', $plot_ref->{plot_width}, - '-h', $plot_ref->{plot_height}, - 'COMMENT:\s', -- 'COMMENT:Last data entered at ' . localtime($plot_end_time) . '.'; -+ "COMMENT:Last data entered at $plot_end_time_ctime."; - if (my $error = RRDs::error) { - warn "$0: warning: cannot create '$image_filename': $error\n"; - return; - diff --git a/graphics/orca/files/patch-src_Makefile.in b/graphics/orca/files/patch-src_Makefile.in deleted file mode 100644 index 11de46f4eca3..000000000000 --- a/graphics/orca/files/patch-src_Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- src/Makefile.in.orig Wed Jul 31 01:20:01 2002 -+++ src/Makefile.in Tue Feb 18 23:19:08 2003 -@@ -9,7 +9,7 @@ - RRD_DIR = @RRD_DIR@ - VAR_DIR = @VAR_DIR@ - ORCALLATOR_DIR = $(VAR_DIR)/orcallator --PERL_SCRIPTS = orca upgrade_installation -+PERL_SCRIPTS = orca - SHELL_SCRIPTS = - TARGETS = $(PERL_SCRIPTS) $(SHELL_SCRIPTS) - diff --git a/graphics/orca/pkg-descr b/graphics/orca/pkg-descr deleted file mode 100644 index 99203de3b9d5..000000000000 --- a/graphics/orca/pkg-descr +++ /dev/null @@ -1,18 +0,0 @@ -This is a port of Orca which is Blair Zajac's incredibly useful -tool for making web-viewable graphs of arbitrary data from text -files. - -Uses a configuration file which describes which text files to read, -what the columns in the files mean, and how that information should -be graphed. - -Often run as a daemon, automatically updating as files change. -Often run with the Orcallator.se script for Solaris machines and -corresponding configuration file (just because you collect the data -on a Solaris box doesn't mean you have to graph it on one too). - -Written in Perl, uses RRDtool for data storage and graph generation. - -Lots more information and examples at - -WWW: http://www.orcaware.com/orca/ diff --git a/graphics/orca/pkg-message b/graphics/orca/pkg-message deleted file mode 100644 index 6914a99e1b93..000000000000 --- a/graphics/orca/pkg-message +++ /dev/null @@ -1,4 +0,0 @@ - -Note that the orcallator and contrib components have not been -installed in this version of the port. I suspect that this is -probably acceptable at this point. diff --git a/graphics/orca/pkg-plist b/graphics/orca/pkg-plist deleted file mode 100644 index 7c17e57bcaa8..000000000000 --- a/graphics/orca/pkg-plist +++ /dev/null @@ -1,15 +0,0 @@ -bin/orca -lib/Orca/Config.pm -lib/Orca/Constants.pm -lib/Orca/DataFile.pm -lib/Orca/HTMLFile.pm -lib/Orca/ImageFile.pm -lib/Orca/NewState.pm -lib/Orca/OldState.pm -lib/Orca/OpenFileHash.pm -lib/Orca/RRDFile.pm -lib/Orca/SourceFile.pm -lib/Orca/SourceFileIDs.pm -lib/Orca/Utils.pm -@dirrm var/orca -@dirrm lib/Orca |
