Changes for 3.2.7:
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
2017-07-26 10:24:06 +02:00
|
|
|
# $NetBSD: Makefile,v 1.4 2017/07/26 08:24:06 adam Exp $
|
2017-05-21 19:30:03 +02:00
|
|
|
|
|
|
|
.include "../../sysutils/zabbix/Makefile.common"
|
|
|
|
|
|
|
|
PKGNAME= ${DISTNAME:S/-/-frontend-/}
|
|
|
|
COMMENT= Zabbix PHP frontend
|
|
|
|
|
|
|
|
USE_TOOLS+= pax
|
|
|
|
NO_BUILD= yes
|
|
|
|
|
2017-07-03 15:04:01 +02:00
|
|
|
do-configure:
|
|
|
|
${DO_NADA}
|
|
|
|
|
|
|
|
REPLACE_SH+= ${WRKSRC}/frontends/php/locale/*.sh
|
|
|
|
|
2017-05-21 19:30:03 +02:00
|
|
|
.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
|
2017-06-06 11:12:59 +02:00
|
|
|
DEPENDS+= ${PHP_PKG_PREFIX}-mysqli>=5.4.0:../../databases/php-mysqli
|
2017-05-21 19:30:03 +02:00
|
|
|
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:
|
2017-07-03 15:04:01 +02:00
|
|
|
rm -f ${WRKSRC}/frontends/php/locale/*.orig
|
2017-05-21 19:30:03 +02:00
|
|
|
cd ${WRKSRC}/frontends; ${PAX} -rw php ${DESTDIR}${PREFIX}/share/zabbix/
|
|
|
|
|
|
|
|
.include "../../lang/php/phpversion.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|