Since the original RRDBot project has been abandoned a long time ago, the proposal is to switching to an active fork https://github.com/REANNZ/rrdbot that has minor bug fixes and enhancements. The REANNZ (Research and Education Advanced Network New Zealand) is a new Zealand's National Research and Education Network. They fork net-mgmt/rrdbot in 2015 and start doing changes and improvements in the existing source code You can see the git history in the github repo[1] (159 commits), but I also kept a full diff between the previous official version and the new repo version [2]. [1] https://github.com/REANNZ/rrdbot/commits/master [2] https://people.freebsd.org/~rodrigo/rrdbot-0.9.7_switch_orig.diff The new repo doesn't provide official release numbers, so we kept the latest version number completed by the packaging date in the dYYYYMMDD format. PR: 244757 Submitted by: Alexander Moisseev <moiseev@mezonplus.ru>
36 lines
714 B
Makefile
36 lines
714 B
Makefile
# Created by: Jeremy Chadwick <koitsu@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= rrdbot
|
|
PORTVERSION= 0.9.7.d20200312
|
|
CATEGORIES= net-mgmt
|
|
|
|
MAINTAINER= rodrigo@FreeBSD.org
|
|
COMMENT= Threaded SNMP polling daemon which stores data in RRDs
|
|
|
|
LIB_DEPENDS= librrd.so:databases/rrdtool
|
|
|
|
USES= autoreconf
|
|
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --libdir=${LOCALBASE}/lib --includedir=${LOCALBASE}/include \
|
|
--datarootdir=${PREFIX}/share/rrdbot
|
|
|
|
SUB_FILES= pkg-message
|
|
USE_RC_SUBR= rrdbot
|
|
|
|
USE_GITHUB= YES
|
|
GH_ACCOUNT= REANNZ
|
|
GH_TAGNAME= 396ca60
|
|
|
|
.if defined(WITH_DEBUG)
|
|
CONFIGURE_ARGS+= --enable-debug
|
|
.endif
|
|
|
|
.if defined(WITHOUT_IPV6)
|
|
CONFIGURE_ARGS+= --disable-ipv6
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|