2432c92fc8
New features: * updated Catalan, Chinese (China), English (United States), Japanese, Korean, Polish, Portuguese (Brazil), Ukrainian translations Bug fixes: * fixed history page to display values in chronological order * fixed security vulnerability with execution of the remote commands on server; thanks to MATSUDA Daiki, Ron Waisberg for report * items use global regexps with multiple subexpressions * fixed memory leak when using UserParameter with suppressed characters passed in arguments * fixed collecting value of VMware host memory balloon size * fixed incorrectly escaped IT Service parent name * fixed sorting of host interfaces; fixed selection of the default host interface * fixed update in mass update form when inventory mode is not set explicitly * fixed missed page number in problems export * fixed unchecked checkboxes after deleting script, mediatype or proxy * fixed user's access level to display popup content * removed link from uneditable template and host names in all configuration sections * improved LDAP authentication module status check for authentication form * fixed incorrectly displayed calendar date in maintenance edit form * fixed trigger wizard expressions sorting as well as wizard crash due incorrect expression removal * fixed nested host group filter in top 100 triggers, item configuration list and dashboard widgets * fixed permissions and performance issues with event.get and problem.get methods * fixed handling of database failure during ID selection * fixed problem with lost IDs of unlinkable templates * fixed Oracle batch insert return value * fixed displaying hints with no content inside * fixed undefined index error in host import form while importing templates * fixed cookie vulnerability for tabbed forms * fixed duplicated error messages in screens section
40 lines
1.3 KiB
Makefile
40 lines
1.3 KiB
Makefile
# $NetBSD: Makefile,v 1.4 2017/07/26 08:24:06 adam Exp $
|
|
|
|
.include "../../sysutils/zabbix/Makefile.common"
|
|
|
|
PKGNAME= ${DISTNAME:S/-/-frontend-/}
|
|
COMMENT= Zabbix PHP frontend
|
|
|
|
USE_TOOLS+= pax
|
|
NO_BUILD= yes
|
|
|
|
do-configure:
|
|
${DO_NADA}
|
|
|
|
REPLACE_SH+= ${WRKSRC}/frontends/php/locale/*.sh
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
BUILD_DEFS+= APACHE_GROUP APACHE_USER
|
|
PKG_GROUPS_VARS+= ${APACHE_GROUP}
|
|
PKG_USERS_VARS= ${APACHE_USER}
|
|
|
|
DEPENDS+= ${PHP_PKG_PREFIX}-bcmath>=5.4.0:../../math/php-bcmath
|
|
DEPENDS+= ${PHP_PKG_PREFIX}-gd>=5.4.0:../../graphics/php-gd
|
|
DEPENDS+= ${PHP_PKG_PREFIX}-gettext>=5.4.0:../../devel/php-gettext
|
|
DEPENDS+= ${PHP_PKG_PREFIX}-json>=5.4.0:../../textproc/php-json
|
|
DEPENDS+= ${PHP_PKG_PREFIX}-ldap>=5.4.0:../../databases/php-ldap
|
|
DEPENDS+= ${PHP_PKG_PREFIX}-mbstring>=5.4.0:../../converters/php-mbstring
|
|
DEPENDS+= ${PHP_PKG_PREFIX}-mysqli>=5.4.0:../../databases/php-mysqli
|
|
DEPENDS+= ${PHP_PKG_PREFIX}-pgsql>=5.4.0:../../databases/php-pgsql
|
|
DEPENDS+= ${PHP_PKG_PREFIX}-sockets>=5.4.0:../../net/php-sockets
|
|
DEPENDS+= ${PHP_PKG_PREFIX}-sysvsem>=5.4.0:../../devel/php-sysvsem
|
|
|
|
INSTALLATION_DIRS+= share/zabbix/frontend
|
|
|
|
do-install:
|
|
rm -f ${WRKSRC}/frontends/php/locale/*.orig
|
|
cd ${WRKSRC}/frontends; ${PAX} -rw php ${DESTDIR}${PREFIX}/share/zabbix/
|
|
|
|
.include "../../lang/php/phpversion.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|