mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-25 04:43:33 +00:00
eeb45e075e
Summary: - Update to 5.0.15 - Reformat a bit according to portclippy and portfmt - Rework pidfile and logfile handling (now under /var/{run,log}/zabbix) - Provide sample config for agentd - Changelog: https://www.zabbix.com/rn/rn5.0.15 PR: 258076 Reviewed by: pg@pakhom.spb.ru (maintainer) Differential Revision: https://reviews.freebsd.org/D31845
33 lines
705 B
Makefile
33 lines
705 B
Makefile
# Created by: Pakhom Golynga <pg@pakhom.spb.ru>
|
|
|
|
PORTNAME= zabbix5
|
|
CATEGORIES= net-mgmt
|
|
PKGNAMESUFFIX= -frontend
|
|
|
|
MASTERDIR= ${.CURDIR}/../zabbix5-server
|
|
|
|
USES+= php:web
|
|
USE_PHP= bcmath ctype dom fileinfo filter gd gettext hash json ldap \
|
|
mbstring pcre session simplexml snmp sockets xml xmlreader \
|
|
xmlwriter
|
|
|
|
PATCHDIR=
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
PLIST= ${PKGDIR}/pkg-plist.frontend
|
|
|
|
OPTIONS_DEFINE= MYSQLI ORACLE PGSQL
|
|
OPTIONS_DEFAULT= MYSQLI
|
|
MYSQLI_DESC= MySQLI backend
|
|
|
|
MYSQLI_USE= PHP=mysqli
|
|
ORACLE_CONFIGURE_WITH= oracle
|
|
PGSQL_USE= PHP=pgsql
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${WWWDIR}
|
|
(cd ${WRKSRC}/ui && \
|
|
${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR})
|
|
|
|
.include "${MASTERDIR}/Makefile"
|