diff options
author | miwi <miwi@FreeBSD.org> | 2007-06-11 13:13:47 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2007-06-11 13:13:47 +0800 |
commit | 14dce7d4d3108152886fc9f3a151994fcd40e87e (patch) | |
tree | 861cb1f2045b8c59be2ba5a16119f97e43ac5b3b /net | |
parent | 88f1209f61155c82e7a68d3fd18ba49645985152 (diff) | |
download | freebsd-ports-graphics-14dce7d4d3108152886fc9f3a151994fcd40e87e.tar.gz freebsd-ports-graphics-14dce7d4d3108152886fc9f3a151994fcd40e87e.tar.zst freebsd-ports-graphics-14dce7d4d3108152886fc9f3a151994fcd40e87e.zip |
RRDman is a set of utilities that manipulate the RRDtool database files.
Currently it consists of the following utilities:
* rrd_hwreapply: Re-apply Holt-Winters prediction parameters to RRD data
RRDman is hosted as a subproject of RRFW
WWW: http://rrfw.sourceforge.net/rrdman/
PR: ports/113449
Submitted by: Janos Mohacsi <janos.mohacsi at bsd.hu>
Diffstat (limited to 'net')
-rw-r--r-- | net/Makefile | 1 | ||||
-rw-r--r-- | net/rrdman/Makefile | 25 | ||||
-rw-r--r-- | net/rrdman/distinfo | 3 | ||||
-rw-r--r-- | net/rrdman/pkg-descr | 8 |
4 files changed, 37 insertions, 0 deletions
diff --git a/net/Makefile b/net/Makefile index d63c0c3bd80..671e5ee2361 100644 --- a/net/Makefile +++ b/net/Makefile @@ -730,6 +730,7 @@ SUBDIR += rmsg SUBDIR += roadrunner SUBDIR += rp-pppoe + SUBDIR += rrdman SUBDIR += rrdtool SUBDIR += rrdtool10 SUBDIR += rshell diff --git a/net/rrdman/Makefile b/net/rrdman/Makefile new file mode 100644 index 00000000000..70b4591deeb --- /dev/null +++ b/net/rrdman/Makefile @@ -0,0 +1,25 @@ +# New ports collection makefile for: rrdman +# Date created: 2007-06-07 +# Whom: Janos Mohacsi <janos.mohacsi@bsd.hu> +# +# $FreeBSD$ +# + +PORTNAME= rrdman +PORTVERSION= 1.0.1 +CATEGORIES= net +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= rrfw + +MAINTAINER= janos.mohacsi@bsd.hu +COMMENT= Apply Holt-Winters prediction parameters to RRD data + +BUILD_DEPENDS= rrdtool:${PORTSDIR}/net/rrdtool +RUN_DEPENDS= ${BUILD_DEPENDS} + +GNU_CONFIGURE= YES +USE_PERl5= YES +PLIST_FILES= bin/rrd_hwreapply +MAN1= rrd_hwreapply.1 + +.include <bsd.port.mk> diff --git a/net/rrdman/distinfo b/net/rrdman/distinfo new file mode 100644 index 00000000000..71f2b6aa835 --- /dev/null +++ b/net/rrdman/distinfo @@ -0,0 +1,3 @@ +MD5 (rrdman-1.0.1.tar.gz) = 5847dbc6e1db86be6e14a18243623a2b +SHA256 (rrdman-1.0.1.tar.gz) = 69b2c7649893c490dcf3b9437094baaacdbce997032b58a0dc10abf27f5d5c12 +SIZE (rrdman-1.0.1.tar.gz) = 85414 diff --git a/net/rrdman/pkg-descr b/net/rrdman/pkg-descr new file mode 100644 index 00000000000..db29cc7aca6 --- /dev/null +++ b/net/rrdman/pkg-descr @@ -0,0 +1,8 @@ +RRDman is a set of utilities that manipulate the RRDtool database files. +Currently it consists of the following utilities: + + * rrd_hwreapply: Re-apply Holt-Winters prediction parameters to RRD data + +RRDman is hosted as a subproject of RRFW + +WWW: http://rrfw.sourceforge.net/rrdman/ |