mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
ba90b3874b
The Host sFlow agent exports physical and virtual server performance metrics using the sFlow protocol. The agent provides scalable, multi-vendor, multi-OS performance monitoring with minimal impact on the systems being monitored. WWW: http://host-sflow.sourceforge.net/ Feature safe: yes
37 lines
1.1 KiB
Makefile
37 lines
1.1 KiB
Makefile
# Created by: Ryan Steinmetz <zi@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= hsflowd
|
|
PORTVERSION= 1.22.2
|
|
CATEGORIES= net
|
|
MASTER_SITES= SF/host-sflow/REL-1_22/ \
|
|
http://mirrors.rit.edu/zi/
|
|
|
|
MAINTAINER= zi@FreeBSD.org
|
|
COMMENT= Agent that exports metrics using the sFlow protocol
|
|
|
|
MAKE_JOBS_UNSAFE= no
|
|
SUB_FILES= pkg-message
|
|
USE_RC_SUBR= ${PORTNAME}
|
|
MAKE_ENV= BINDIR=${PREFIX}/sbin INITDIR=${PREFIX}/etc/rc.d \
|
|
CONFDIR=${ETCDIR}
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|gcc|${CC}|g' \
|
|
-e '/scripts\/hsflowd /d' \
|
|
-e 's|hsflowd.conf|hsflowd.conf.sample|g' \
|
|
${WRKSRC}/src/FreeBSD/Makefile ${WRKSRC}/src/sflow/Makefile \
|
|
${WRKSRC}/src/json/Makefile
|
|
@${REINPLACE_CMD} -e 's|/etc|${ETCDIR}|g' ${WRKSRC}/src/FreeBSD/hsflowd.h
|
|
@${REINPLACE_CMD} -e 's|/usr|${PREFIX}|g' \
|
|
${WRKSRC}/src/FreeBSD/scripts/hsflowd
|
|
@${MV} ${WRKSRC}/src/FreeBSD/scripts/hsflowd.conf \
|
|
${WRKSRC}/src/FreeBSD/scripts/hsflowd.conf.sample
|
|
|
|
post-install:
|
|
@if [ ! -f ${ETCDIR}/hsflowd.conf ]; then \
|
|
${CP} ${ETCDIR}/hsflowd.conf.sample ${ETCDIR}/hsflowd.conf ; \
|
|
fi
|
|
|
|
.include <bsd.port.mk>
|