summaryrefslogtreecommitdiff
path: root/net-mgmt
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2008-01-03 15:16:03 +0000
committerMartin Wilke <miwi@FreeBSD.org>2008-01-03 15:16:03 +0000
commite78d69fe004dd34efde1340ae457c9b6e2b0c826 (patch)
treeee59b1b1ea469fc3c3784b21646397f8fdd956e7 /net-mgmt
parentAdd gnome-gmail-notifier 0.9.1, a GMail notification applet for the GNOME (diff)
- Update 0.9.0
- Update maintainer mail adress PR: 119232 Submitted by: Denis Shaposhnikov <dsh@vlink.ru> (maintainer)
Notes
Notes: svn path=/head/; revision=204919
Diffstat (limited to 'net-mgmt')
-rw-r--r--net-mgmt/nagiosgraph/Makefile6
-rw-r--r--net-mgmt/nagiosgraph/distinfo6
-rw-r--r--net-mgmt/nagiosgraph/files/patch-insert.pl22
-rw-r--r--net-mgmt/nagiosgraph/files/patch-show.cgi13
4 files changed, 6 insertions, 41 deletions
diff --git a/net-mgmt/nagiosgraph/Makefile b/net-mgmt/nagiosgraph/Makefile
index 9b5119388070..9918b432c079 100644
--- a/net-mgmt/nagiosgraph/Makefile
+++ b/net-mgmt/nagiosgraph/Makefile
@@ -6,13 +6,13 @@
#
PORTNAME= nagiosgraph
-PORTVERSION= 0.8.2
-PORTREVISION= 3
+PORTVERSION= 0.9.0
CATEGORIES= net-mgmt
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
+EXTRACT_SUFX= .tgz
-MAINTAINER= dsh@vlink.ru
+MAINTAINER= dsh@wizard.volgograd.ru
COMMENT= Generate rrdtool\'s graphs by performance data from nagios plugins
RUN_DEPENDS= ${LOCALBASE}/bin/nagios:${PORTSDIR}/net-mgmt/nagios \
diff --git a/net-mgmt/nagiosgraph/distinfo b/net-mgmt/nagiosgraph/distinfo
index 4e0d6ca6f784..ff11affe4595 100644
--- a/net-mgmt/nagiosgraph/distinfo
+++ b/net-mgmt/nagiosgraph/distinfo
@@ -1,3 +1,3 @@
-MD5 (nagiosgraph-0.8.2.tar.gz) = 7e756b4e9190fceee89d60e3717786a5
-SHA256 (nagiosgraph-0.8.2.tar.gz) = 238bdb138c1060a4ae568ea7db2e5b65f96237a4d12745b674958e2b6bcb0d86
-SIZE (nagiosgraph-0.8.2.tar.gz) = 12407
+MD5 (nagiosgraph-0.9.0.tgz) = 4450d5d3f28d4ba379fc225e8aee893e
+SHA256 (nagiosgraph-0.9.0.tgz) = d93957c6f1435f9a10191e07c3fb6b42203a68f9537d9d9509879b9e5fa8dfff
+SIZE (nagiosgraph-0.9.0.tgz) = 20149
diff --git a/net-mgmt/nagiosgraph/files/patch-insert.pl b/net-mgmt/nagiosgraph/files/patch-insert.pl
deleted file mode 100644
index 252d0e4f0d0a..000000000000
--- a/net-mgmt/nagiosgraph/files/patch-insert.pl
+++ /dev/null
@@ -1,22 +0,0 @@
-Index: insert.pl
-===================================================================
---- insert.pl (.../vendor/nagiosgraph/0.8.2/insert.pl) (revision 1211)
-+++ insert.pl (.../trunk/src/nagiosgraph/insert.pl) (revision 1211)
-@@ -148,9 +148,14 @@
- if ( $ARGV[0] ) {
- @inputlines = $ARGV[0];
- } elsif ( defined $Config{perflog} ) {
-- open PERFLOG, $Config{perflog};
-- @inputlines = <PERFLOG>;
-- close PERFLOG
-+ if (-s $Config{perflog}) {
-+ my $worklog = $Config{perflog} . ".nagiosgraph";
-+ rename($Config{perflog}, $worklog);
-+ open PERFLOG, $worklog;
-+ @inputlines = <PERFLOG>;
-+ close PERFLOG;
-+ unlink($worklog);
-+ }
- }
-
- # Quit if there are no data to process
diff --git a/net-mgmt/nagiosgraph/files/patch-show.cgi b/net-mgmt/nagiosgraph/files/patch-show.cgi
deleted file mode 100644
index 5bd58eb780f3..000000000000
--- a/net-mgmt/nagiosgraph/files/patch-show.cgi
+++ /dev/null
@@ -1,13 +0,0 @@
-Index: show.cgi
-===================================================================
---- show.cgi (revision 402)
-+++ show.cgi (working copy)
-@@ -252,7 +252,7 @@
- @style = ( -style => {-src => "$Config{stylesheet}"} );
- }
- print header, start_html(-id=>"nagiosgraph", -title => "nagiosgraph: $host-$service",
-- -meta => { -http_equiv => "Refresh", -content => "300" },
-+ -head => meta({-http_equiv => 'refresh', -content => '300'}),
- @style
- );
- page($host,$service,$geom,$rrdopts,@db);