2d9952d0be
New Features ------------ * allows rrdrestore to read input from stdin * add documentation for RRDs::xport * RPN operators MINNAN and MAXNAN * --left-axis-format option to rrd_graph Bugfixes -------- * properly verify validity of user suplied format strings * remove graph functions from python module when compiled without graphing support * verify that only short integers are used in COMPUTE rpn expressions * eliminate duplicate setlocale calls * fixed endless loop and double frees in rrd_restore * fixed missing variable initializations in rrd_graph * fixed JSON output format to actually be valid JSON * detect failing fallocate and fall back to seeking * fixed format string in ruby bindings
22 lines
677 B
Makefile
22 lines
677 B
Makefile
# $NetBSD: Makefile,v 1.17 2014/10/07 10:36:20 adam Exp $
|
|
|
|
DISTNAME= rrdtool-1.4.9
|
|
PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= databases graphics net
|
|
MASTER_SITES= http://oss.oetiker.ch/rrdtool/pub/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://oss.oetiker.ch/rrdtool/
|
|
COMMENT= Ruby binding for rrdtool
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
# rrdtool explicitly forbids any use of -ffast-math
|
|
#BUILDLINK_TRANSFORM+= rm:-ffast-math
|
|
|
|
USE_RUBY_EXTCONF= yes
|
|
EXTRACT_ELEMENTS= ${DISTNAME}/bindings/ruby ${DISTNAME}/src
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}/bindings/ruby
|
|
|
|
.include "../../databases/rrdtool/buildlink3.mk"
|
|
.include "../../lang/ruby/modules.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|