File:  [cvs.NetBSD.org] / pkgsrc / sysutils / zabbix50-proxy / Makefile
Revision 1.15: download - view: text, annotated - select for diffs
Sun Feb 12 11:09:04 2023 UTC (2 years, 2 months ago) by otis
Branches: MAIN
CVS tags: HEAD
zabbix50: Update to 5.0.31

- Update to 5.0.31
- Consolidate distinfo to zabbix50-server

Release notes:
- Added single field search option to oracle archive.info, ts.stats, pdb.info,
  cdb.info and diskgroups.stats keys for Zabbix agent 2
- Improved error logging during the agent start for Windows service
- Fixed the `history.get` API method blocking `drop_chunks` requests during
  housekeeping
- Fixed the severity sign overlapping a trigger name in the map element
  configuration
- Fixed incorrectly quoted parsing of the function parameter
- Fixed actions not being displayed in an *Action log* widget
- Removed `kernel.maxproc` from the processes graph in Linux by Zabbix agent
  templates
- Improved value cache warmup when retrieving the two last values with one day
  update interval
- Updated tablespaces query for the Oracle plugin in Zabbix agent 2
- Fixed an infinite loop of the SMART plugin for Zabbix agent 2
- Fixed the configuration of Redis plugin in Zabbix agent 2 configuration files
- Changed the order in which the escalation steps and recovery operations are
  executed
- Fixed Zabbix JS timeout validation
- Fixed trends being deleted from cache and retrieved from a database when data
  is older than one hour after receiving
- Optimized API queries when searching by names in the hosts and items tables
- Moved some static items under LLD rules to improve the performance in Oracle
  by Zabbix agent 2 template
- Extended the description for an OPSGenie media type
- Fixed the availability of an SNMP interface in the case of wrong credentials
- Added the overriding to skip metadata collection on ZFS and BTRFS for Nix
  templates
- Fixed crash on the Oracle database when connection is lost
- Fixed Windows agent 2 unicode path support for log* items
- Fixed the agent 2 timeout behavior for the `net.tcp.port` item
- Fixed README for PostgreSQL by Zabbix agent 2 template
- Fixed fatal PHP error in case incorrect variable type for controller action
  is given
- Fixed an undefined offset error during the host import process
- Reverted the PostgreSQL connection to be per database for Zabbix agent 2
  PostgreSQL plugin
- Fixed the alignment of a draggable object
- Fixed Zabbix agent 2 to remove and re-add the performance counters on failed
  collection and to keep query always open
- Updated the Oracle plugin and Oracle agent 2 template documentation grant
  select variables and added new grant
- Changed `system.sw.packages[<package>,<manager>,<format>]` to
  `system.sw.packages[<regexp>,<manager>,<format>]`

For complete list, see https://www.zabbix.com/rn/rn5.0.31

# $NetBSD: Makefile,v 1.15 2023/02/12 11:09:04 otis Exp $

.include "../../sysutils/zabbix50-server/Makefile.common"

PKGNAME=	${DISTNAME:S/-/-proxy-${ZABBIX_DB_TYPE}-/}
COMMENT=	Enterprise-class Monitoring Solution for Everyone

PATCHDIR=	${.CURDIR}/../../sysutils/zabbix50-server/patches
DISTINFO_FILE=	${.CURDIR}/../../sysutils/zabbix50-server/distinfo

CONFLICTS+=	zabbix-[0-9]*
CONFLICTS+=	zabbix-proxy-[0-9]*

DEPENDS+=	fping-[0-9]*:../../net/fping

USE_TOOLS+=		aclocal autoconf automake pax pkg-config
GNU_CONFIGURE=		yes
CONFIGURE_ARGS+=	--enable-proxy
CONFIGURE_ARGS+=	--sysconfdir=${PKG_SYSCONFDIR}
CONFIGURE_ARGS+=	--datarootdir=${PREFIX}/share/${PKGBASE}
CONFIGURE_ARGS+=	--with-iconv=${BUILDLINK_PREFIX.iconv}
CONFIGURE_ARGS+=	--with-ldap=${BUILDLINK_PREFIX.openldap-client}
CONFIGURE_ARGS+=	--with-libcurl
CONFIGURE_ARGS+=	--with-libevent=${BUILDLINK_PREFIX.libevent}
CONFIGURE_ARGS+=	--with-libpcre=${BUILDLINK_PREFIX.pcre}
CONFIGURE_ARGS+=	--with-libxml2
CONFIGURE_ARGS+=	--with-openssl=${BUILDLINK_PREFIX.openssl}
CONFIGURE_ARGS+=	--with-zlib=${BUILDLINK_PREFIX.zlib}

EGDIR=		share/examples/${PKGBASE}
CONF_FILES+=	${EGDIR}/zabbix_proxy.conf ${PKG_SYSCONFDIR}/zabbix_proxy.conf

RCD_SCRIPTS=	zabbix_proxy
SMF_NAME=	zabbix-proxy

INSTALLATION_DIRS+=	${EGDIR} share/${PKGBASE}

SUBST_CLASSES+=			fix-paths
SUBST_STAGE.fix-paths=		pre-configure
SUBST_MESSAGE.fix-paths=	Fixing absolute paths.
SUBST_FILES.fix-paths=		conf/*.conf
SUBST_FILES.fix-paths+=		man/*.man
SUBST_SED.fix-paths=		-e 's,/usr/local/etc,${PKG_SYSCONFDIR},g'

SUBST_CLASSES+=			fix-pkgbase
SUBST_STAGE.fix-pkgbase=	pre-configure
SUBST_MESSAGE.fix-pkgbase=	Fixing PKGBASE.
SUBST_FILES.fix-pkgbase=	src/zabbix_proxy/Makefile.*
SUBST_SED.fix-pkgbase=		-e 's,%%PKGBASE%%,${PKGBASE},g'

PLIST_SUBST+=			PKGBASE=${PKGBASE}

CFLAGS.SunOS+=			-DDUK_USE_BYTEORDER=1

.include "../../mk/bsd.prefs.mk"

pre-configure:
	cd ${WRKSRC} && \
	   aclocal -I m4 && automake -ai --foreign && autoconf -I m4

post-install:
	cd ${WRKSRC}/database/${ZABBIX_DB_TYPE} && \
		${PAX} -rw . ${DESTDIR}${PREFIX}/share/${PKGBASE}/
	${RM} ${DESTDIR}${PREFIX}/share/${PKGBASE}/Makefile*
	${RM} ${DESTDIR}${PREFIX}/share/${PKGBASE}/data.sql
	${RM} ${DESTDIR}${PREFIX}/share/${PKGBASE}/images.sql
	${MV} ${DESTDIR}${PREFIX}/bin/zabbix_js \
	   ${DESTDIR}${PREFIX}/bin/zabbix_proxy_js

.include "options.mk"

.include "../../converters/libiconv/buildlink3.mk"
.include "../../databases/openldap-client/buildlink3.mk"
.include "../../devel/libevent/buildlink3.mk"
.include "../../devel/zlib/buildlink3.mk"
.include "../../security/openssl/buildlink3.mk"
.include "../../textproc/libxml2/buildlink3.mk"
.include "../../www/curl/buildlink3.mk"
.include "../../devel/pcre/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"

CVSweb <webmaster@jp.NetBSD.org>