openbsd-ports/sysutils/collectd/Makefile
2011-07-07 00:22:37 +00:00

92 lines
2.6 KiB
Makefile

# $OpenBSD: Makefile,v 1.10 2011/07/07 00:22:37 ajacoutot Exp $
COMMENT-main = system metrics collection engine
COMMENT-mysql = collectd mysql plugin
COMMENT-pgsql = collectd postgresql plugin
COMMENT-rrdtool = collectd rrdtool plugin
COMMENT-snmp = collectd snmp plugin
V = 4.10.2
DISTNAME = collectd-$V
PKGNAME-main = collectd-$V
PKGNAME-mysql = collectd-mysql-$V
PKGNAME-pgsql = collectd-pgsql-$V
PKGNAME-rrdtool = collectd-rrdtool-$V
PKGNAME-snmp = collectd-snmp-$V
CATEGORIES = sysutils
REVISION-main= 0
HOMEPAGE = http://www.collectd.org/
SHARED_LIBS += collectdclient 0.0
SHARED_ONLY = Yes
# GPLv2
PERMIT_PACKAGE_CDROM = Yes
PERMIT_PACKAGE_FTP = Yes
PERMIT_DISTFILES_CDROM =Yes
PERMIT_DISTFILES_FTP = Yes
MASTER_SITES = ${HOMEPAGE}/files/
MODULES = devel/gettext
MULTI_PACKAGES = -main -mysql -pgsql -rrdtool -snmp
WANTLIB-mysql = crypto m ssl z mysqlclient
LIB_DEPENDS-mysql = databases/mysql
RUN_DEPENDS-mysql = collectd-$V:${BASE_PKGPATH},-main
WANTLIB-pgsql = pq
LIB_DEPENDS-pgsql = databases/postgresql
RUN_DEPENDS-pgsql = collectd-$V:${BASE_PKGPATH},-main
WANTLIB-rrdtool = art_lgpl_2 freetype m png z rrd_th
LIB_DEPENDS-rrdtool = net/rrdtool
RUN_DEPENDS-rrdtool = collectd-$V:${BASE_PKGPATH},-main
WANTLIB-snmp = crypto netsnmp
LIB_DEPENDS-snmp = net/net-snmp
RUN_DEPENDS-snmp = collectd-$V:${BASE_PKGPATH},-main
LIB_DEPENDS += net/curl \
textproc/libxml \
sysutils/libstatgrab \
security/libgcrypt \
devel/libtool,-ltdl
WANTLIB += c crypto gpg-error idn kvm curl xml2 ltdl
WANTLIB += m pcap pthread ssl xml2 z statgrab gcrypt ${MODGETTEXT_WANTLIB}
CONFIGURE_STYLE = gnu
USE_LIBTOOL = Yes
LIBTOOL_FLAGS = --tag=disable-static
USE_GROFF = Yes
CONFIGURE_ARGS +=--with-ltdl-include=${LOCALBASE}/include \
--with-ltdl-lib=${LOCALBASE}/lib \
--with-librrd=${LOCALBASE} \
--with-libstatgrab=${LOCALBASE} \
--with-libnetsnmp=${LOCALBASE}/bin/net-snmp-config \
--localstatedir=/var \
--without-python \
--enable-all-plugins=no
ENABLED_PLUGINS = apache apcups ascent bind cpu csv curl curl_xml \
df disk dns email exec filecount interface load \
logfile match_empty_counter match_hashed match_regex \
match_timediff match_value memcached memory mysql \
network nginx ntpd olsrd openvpn postgresql powerdns \
rrdtool snmp swap syslog table tail \
target_notification target_replace target_scale \
target_set tcpconns teamspeak2 ted unixsock uptime \
users uuid write_http
.for _plugin in ${ENABLED_PLUGINS}
CONFIGURE_ARGS += --enable-${_plugin}
.endfor
CONFIGURE_ENV += CPPFLAGS='-I${LOCALBASE}/include' \
LDFLAGS='-L${LOCALBASE}/lib -L${X11BASE}/lib -pthread'
.include <bsd.port.mk>