mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-25 04:43:33 +00:00
a6f9551ae0
module does not currently offer fetch method that is available in the RRDs module. It does however create RRD files with a sensible set of default RRA (Round Robin Archive) definitions, and can dynamically add new data source names to an existing RRD file. This module is ideal for quick and simple storage of data within an RRD file if you do not need to, nor want to, bother defining custom RRA definitions. WWW: http://search.cpan.org/dist/RRD-Simple/ PR: ports/101073 Submitted by: chinsan <chinsan.tw(at)gmail.com> Approved by: krion (mentor)
34 lines
902 B
Makefile
34 lines
902 B
Makefile
# New ports collection makefile for: RRD-Simple
|
|
# Date created: 2006/07/21
|
|
# Whom: chinsan <chinsan.tw@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= RRD-Simple
|
|
PORTVERSION= 1.39
|
|
CATEGORIES= net perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
|
MASTER_SITE_SUBDIR= ../by-authors/id/N/NI/NICOLAW
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= chinsan.tw@gmail.com
|
|
COMMENT= Simple interface to create and store data in RRD files
|
|
|
|
BUILD_DEPENDS= ${SITE_PERL}/Test/Deep.pm:${PORTSDIR}/devel/p5-Test-Deep \
|
|
p5-Test-Pod>=0.90:${PORTSDIR}/devel/p5-Test-Pod \
|
|
p5-Test-Pod-Coverage>0:${PORTSDIR}/devel/p5-Test-Pod-Coverage \
|
|
${SITE_PERL}/${PERL_ARCH}/RRDs.pm:${PORTSDIR}/net/rrdtool
|
|
RUN_DEPENDS= ${BUILD_DEPENDS}
|
|
|
|
PERL_MODBUILD= yes
|
|
MAN3= RRD::Simple.3
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${PERL_LEVEL} < 500600
|
|
IGNORE= requires perl 5.6.0 or higher. Please install lang/perl5.8 and try again
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|