66f6985027
* Make use of USE_MYSQL * Convert scripts to rc.subr * Fix plist * Fix pkg-message not displayed during 'make install' * Depend on net/php4-nms * Allow to connect to remote MySQL DB * Even more... PR: 58061 Submitted by: Sergey Akifyev <asa@gascom.ru>
85 lines
2.5 KiB
Makefile
85 lines
2.5 KiB
Makefile
# Ports collection makefile for: zabbix
|
|
# Date created: Jun 18 2003
|
|
# Whom: Sergey Akifyev <asa@gascom.ru>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= zabbix
|
|
PORTVERSION= 1.0b10
|
|
PORTREVISION= 1
|
|
CATEGORIES= net
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR=${PORTNAME}
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION:S|b|beta|}
|
|
|
|
MAINTAINER= asa@gascom.ru
|
|
COMMENT= Very advanced network monitoring system
|
|
|
|
.ifdef(ZABBIX_AGENT_ONLY)
|
|
PKGNAMESUFFIX= -agent
|
|
PLIST= ${MASTERDIR}/pkg-plist.agent
|
|
PKGMESSAGE= nonexistent
|
|
.else
|
|
LIB_DEPENDS= netsnmp.5:${PORTSDIR}/net/net-snmp
|
|
RUN_DEPENDS= php:${PORTSDIR}/lang/php4-nms
|
|
|
|
USE_MYSQL= yes
|
|
CONFIGURE_ARGS= --with-mysql --with-net-snmp
|
|
PKGMESSAGE= ${WRKDIR}/pkg-message
|
|
.endif
|
|
|
|
USE_RC_SUBR= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= CPPFLAGS=-I${LOCALBASE}/include
|
|
|
|
ZABBIX_BINARIES=zabbix_agent zabbix_agentd zabbix_sender
|
|
ZABBIX_CONFIGS= zabbix_agent.conf zabbix_agentd.conf
|
|
.ifndef(ZABBIX_AGENT_ONLY)
|
|
ZABBIX_BINARIES+=zabbix_suckerd zabbix_trapper zabbix_trapperd
|
|
ZABBIX_CONFIGS+=zabbix_suckerd.conf zabbix_trapper.conf zabbix_trapperd.conf
|
|
.endif
|
|
|
|
SCRIPT_REGEX= -e 's|%PREFIX%|${PREFIX}|g' -e 's|%LOCALBASE%|${LOCALBASE}|g'
|
|
|
|
pre-patch:
|
|
.if !defined(ZABBIX_AGENT_ONLY)
|
|
@${SED} ${SCRIPT_REGEX} ${PKGDIR}/pkg-message > ${PKGMESSAGE}
|
|
@${SED} ${SCRIPT_REGEX} ${PKGDIR}/scripts/zabbix.sh.sample > \
|
|
${WRKDIR}/zabbix.sh.sample
|
|
.endif
|
|
@${SED} ${SCRIPT_REGEX} ${PKGDIR}/scripts/zabbix-agent.sh.sample > \
|
|
${WRKDIR}/zabbix-agent.sh.sample
|
|
|
|
do-install:
|
|
.for FILE in ${ZABBIX_BINARIES}
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bin/${FILE} ${PREFIX}/bin
|
|
.endfor
|
|
${MKDIR} ${PREFIX}/etc/zabbix
|
|
${LN} -sf ${PREFIX}/etc/zabbix /etc/zabbix
|
|
.for FILE in ${ZABBIX_CONFIGS}
|
|
${INSTALL_DATA} ${WRKSRC}/misc/conf/${FILE} \
|
|
${PREFIX}/etc/zabbix/${FILE}.sample
|
|
.endfor
|
|
.ifndef(ZABBIX_AGENT_ONLY)
|
|
${MKDIR} ${PREFIX}/share/zabbix
|
|
${MKDIR} ${PREFIX}/share/zabbix/create
|
|
${INSTALL_DATA} ${MASTERDIR}/scripts/dbsetup.sh \
|
|
${PREFIX}/share/zabbix/create
|
|
${CP} -Rf ${WRKSRC}/frontends/* ${PREFIX}/share/zabbix
|
|
${CP} -Rf ${WRKSRC}/create/* ${PREFIX}/share/zabbix/create
|
|
${CP} -Rf ${WRKSRC}/upgrades/dbpatches ${PREFIX}/share/zabbix
|
|
${INSTALL_SCRIPT} ${MASTERDIR}/scripts/dbsetup.sh \
|
|
${PREFIX}/share/zabbix/create
|
|
${INSTALL_SCRIPT} ${MASTERDIR}/scripts/zabbix.sh.sample \
|
|
${PREFIX}/etc/rc.d
|
|
.endif
|
|
${INSTALL_SCRIPT} ${MASTERDIR}/scripts/zabbix-agent.sh.sample \
|
|
${PREFIX}/etc/rc.d
|
|
${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL
|
|
.ifndef(ZABBIX_AGENT_ONLY)
|
|
${CAT} ${PKGMESSAGE}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|