mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
307a70b894
Most notably, this version of rrdtools.so is thread safe, so the rrdtools_th.so library is removed. Bump portrevision for depending ports due to shlib version bump. For full changelog: http://oss.oetiker.ch/rrdtool/pub/CHANGES Reviewed by: kwm Differential Revision: D6168
39 lines
868 B
Makefile
39 lines
868 B
Makefile
# Created by: sobomax
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= rrdmerge
|
|
PORTVERSION= 0.0.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= databases
|
|
MASTER_SITES= http://download.sippysoft.com/thirdparty/
|
|
DISTNAME= ${PORTNAME}-${GITREVISION}
|
|
|
|
MAINTAINER= sobomax@FreeBSD.org
|
|
COMMENT= Utility to merge existing RRD data from backups into new RRD files
|
|
|
|
LICENSE= GPLv3+
|
|
|
|
RUN_DEPENDS= rrdtool:databases/rrdtool
|
|
|
|
USES= python shebangfix tar:tbz2
|
|
SHEBANG_FILES= rrdmergetree
|
|
GITREVISION= b05d69bfac64
|
|
bash_CMD= /bin/sh
|
|
NO_BUILD= yes
|
|
NO_ARCH= yes
|
|
PLIST_FILES= bin/${PORTNAME} bin/${PORTNAME}tree
|
|
|
|
PORTDOCS= *
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/rrdmerge ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_SCRIPT} ${WRKSRC}/rrdmergetree ${STAGEDIR}${PREFIX}/bin
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_MAN} ${WRKSRC}/README.rst ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|