Features * librrd is now fully thread-safe. librrd_th is gone * make lua bindings work with lua 5.1 * configure option to disable doc building --enable-docs=no * new CDEF function SMIN: a,b,c,3,SMIN -> min(a,b,c) * new CDEF function SMAX: a,b,c,3,SMAX -> max(a,b,c) * new CDEF function STDEV: a,b,c,3,STDEV -> stdev(a,b,c) * new CDEF function POW: a,b,POW -> a**b * new CDEF function PERCENT: a,b,c,95,3,PERCENT -> find 95percentile of a,b,c * re-introducted --showtime option on rrdxport * be more careful in determining the locales idea of first day of the week * lots of spelling fixes all around
23 lines
696 B
Makefile
23 lines
696 B
Makefile
# $NetBSD: Makefile,v 1.20 2016/04/23 06:23:49 adam Exp $
|
|
|
|
DISTNAME= rrdtool-1.6.0
|
|
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
|
|
|
|
USE_RUBY_EXTCONF= yes
|
|
EXTRACT_ELEMENTS= ${DISTNAME}/bindings/ruby ${DISTNAME}/src
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}/bindings/ruby
|
|
MAKE_ENV+= ABS_TOP_BUILDDIR=${WRKDIR}/${DISTNAME}
|
|
|
|
pre-configure:
|
|
rm ${WRKDIR}/${DISTNAME}/src/rrd_config.h
|
|
|
|
.include "../../databases/rrdtool/buildlink3.mk"
|
|
.include "../../lang/ruby/modules.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|