diff options
author | Clement Laforet <clement@FreeBSD.org> | 2005-02-26 21:16:23 +0000 |
---|---|---|
committer | Clement Laforet <clement@FreeBSD.org> | 2005-02-26 21:16:23 +0000 |
commit | ded858b341cc272a01e4d56700a407d2a916b6c6 (patch) | |
tree | d0dd0c8d22b1a22233012c4d8107cc7df2fc4670 /net/cactid/Makefile | |
parent | 926485a39dccaf5d091e629c9436531955507b8a (diff) |
- Add cactid 0.8.6d
Cactid is a poller for Cacti that primarily strives to be as fast as
possible. For this reason it is written in native C, makes use of POSIX
threads, and is linked directly against the net-snmp library for
minmumal SNMP polling overhead. Cactid is a replacement for the default
cmd.php poller so you must decide if using Cactid makes sense for your
installation.
WWW: http://www.cacti.net/cactid_info.php
Notes
Notes:
svn path=/head/; revision=129856
Diffstat (limited to 'net/cactid/Makefile')
-rw-r--r-- | net/cactid/Makefile | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/net/cactid/Makefile b/net/cactid/Makefile new file mode 100644 index 000000000000..00e4525a509e --- /dev/null +++ b/net/cactid/Makefile @@ -0,0 +1,34 @@ +# New ports collection makefile for: cactid +# Date created: Feb 26 2005 +# Whom: clement@FreeBSD.org +# +# $FreeBSD$ +# + +PORTNAME= cactid +PORTVERSION= 0.8.6.d +CATEGORIES= net +MASTER_SITES= http://www.cacti.net/downloads/cactid/ +DISTNAME= cacti-${PORTNAME}-0.8.6d + +MAINTAINER= ports@FreeBSD.org +COMMENT= A multithreaded poller for Cacti written in C + +LIB_DEPENDS= netsnmp.7:${PORTSDIR}/net-mgmt/net-snmp + +GNU_CONFIGURE= YES +USE_MYSQL= YES +USE_OPENSSL= YES +USE_REINPLACE= YES + +post-patch: + @${REINPLACE_CMD} 's,%%PREFIX%%,${PREFIX},' \ + ${WRKSRC}/cactid.h + +post-install: + @${MKDIR} ${EXAMPLESDIR} + @${INSTALL_DATA} ${WRKSRC}/cactid.conf ${EXAMPLESDIR} + @[ -e ${PREFIX}/etc/cactid.conf ] || \ + ${INSTALL_DATA} ${EXAMPLESDIR}/cactid.conf ${PREFIX}/etc/ + +.include <bsd.port.mk> |