pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

zabbix50: Use database-specific name for server and proxy



Module Name:	pkgsrc-wip
Committed By:	Juraj Lutter <otis%NetBSD.org@localhost>
Pushed By:	otis
Date:		Mon Oct 19 19:37:08 2020 +0000
Changeset:	02ea6384bfc3d9942e49ac8ca1700a6580cc8375

Modified Files:
	zabbix50-proxy/Makefile
	zabbix50-server/Makefile

Log Message:
zabbix50: Use database-specific name for server and proxy

To allow building and installing packages with differnet DB types
on different server/proxy hosts, use apropriate PKGNAME when building.

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=02ea6384bfc3d9942e49ac8ca1700a6580cc8375

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 zabbix50-proxy/Makefile  | 2 +-
 zabbix50-server/Makefile | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diffs:
diff --git a/zabbix50-proxy/Makefile b/zabbix50-proxy/Makefile
index b680fc89c9..cceede8a3c 100644
--- a/zabbix50-proxy/Makefile
+++ b/zabbix50-proxy/Makefile
@@ -2,7 +2,7 @@
 
 .include "../../sysutils/zabbix50-server/Makefile.common"
 
-PKGNAME=	${DISTNAME:S/-/-proxy-/}
+PKGNAME=	${DISTNAME:S/-/-proxy-${ZABBIX_DB_TYPE}-/}
 COMMENT=	Enterprise-class Monitoring Solution for Everyone
 
 CONFLICTS+=	zabbix-[0-9]*
diff --git a/zabbix50-server/Makefile b/zabbix50-server/Makefile
index 6286c95740..8513235700 100644
--- a/zabbix50-server/Makefile
+++ b/zabbix50-server/Makefile
@@ -4,7 +4,7 @@
 #
 .include "Makefile.common"
 
-PKGNAME=	${DISTNAME:S/-/-server-/}
+PKGNAME=	${DISTNAME:S/-/-server-${ZABBIX_DB_TYPE}-/}
 COMMENT=	Enterprise-class Monitoring Solution for Everyone
 
 CONFLICTS+=	zabbix-[0-9]*


Home | Main Index | Thread Index | Old Index