pkgsrc/www/php-glpi/Makefile
hauke 9424688368 Update to glpi v9.4.2, with security and bug fixes.
- Security: prevent external redirections
- Fix some performances issues
- Fix various issues on plugins loading (cache conflict, bad locales)
- Fix display of documents in tickets
- Fix display of user's pictures
- Fix lost of some relations and sql errors when transferring items
- Feature: add Historical tab on config page
- And many more!

The full changelog is available:
https://github.com/glpi-project/glpi/milestone/32?closed=1
2019-04-12 13:23:57 +00:00

109 lines
3.5 KiB
Makefile

# $NetBSD: Makefile,v 1.7 2019/04/12 13:23:57 hauke Exp $
DISTNAME= glpi-${GLPI_VERSION}
GLPI_VERSION= 9.4.2
CATEGORIES= www
MASTER_SITES= https://github.com/glpi-project/glpi/releases/download/${GLPI_VERSION}/
EXTRACT_SUFX= .tgz
MAINTAINER= hauke@NetBSD.org
HOMEPAGE= http://glpi-project.org/
COMMENT= IT inventory management software
LICENSE= gnu-gpl-v2
DEPENDS+= ${PHP_PKG_PREFIX}-zlib>=5.4:../../archivers/php-zlib
DEPENDS+= ${PHP_PKG_PREFIX}-mbstring>=5.4:../../converters/php-mbstring
DEPENDS+= ${PHP_PKG_PREFIX}-ldap>=5.4:../../databases/php-ldap
DEPENDS+= ${PHP_PKG_PREFIX}-mysqli>=5.4:../../databases/php-mysqli
DEPENDS+= ${PHP_PKG_PREFIX}-opcache>=5.4:../../devel/php-opcache
DEPENDS+= ${PHP_PKG_PREFIX}-exif>=5.4:../../graphics/php-exif
DEPENDS+= ${PHP_PKG_PREFIX}-gd>=5.4:../../graphics/php-gd
DEPENDS+= ${PHP_PKG_PREFIX}-imap>=5.4:../../mail/php-imap
DEPENDS+= ${PHP_PKG_PREFIX}-xmlrpc>=5.4:../../net/php-xmlrpc
DEPENDS+= ${PHP_PKG_PREFIX}-json>=5.4:../../textproc/php-json
DEPENDS+= ${PHP_PKG_PREFIX}-curl>=5.4:../../www/php-curl
DEPENDS+= freefont-ttf-[0-9]*:../../fonts/freefont-ttf
NO_BUILD= yes
USE_LANGUAGES= # none
USE_TOOLS+= chmod find pax
BUILD_DEFS+= APACHE_USER APACHE_GROUP VARBASE
.include "../../mk/bsd.prefs.mk"
APACHE_USER?= www
APACHE_GROUP?= www
WRKSRC= ${WRKDIR}/glpi
# Config dir managed through web interface (move under {VARBASE}/glpi?)
PKG_SYSCONFSUBDIR= glpi
PKG_SYSCONFDIR_PERMS= ${APACHE_USER} ${APACHE_GROUP} 0700
EGDIR= share/examples/glpi
GLPI_DIR= share/glpi
.for ddd in local_define.php
CONF_FILES+= ${EGDIR}/${ddd} ${PKG_SYSCONFDIR}/${ddd}
.endfor
MAKE_DIRS_PERMS+= ${VARBASE}/glpi ${APACHE_USER} ${APACHE_GROUP} 0700
.for ddd in _cache _cron _dumps _graphs _lock _log _pictures _plugins \
_rss _sessions _tmp _uploads
MAKE_DIRS_PERMS+= ${VARBASE}/glpi/${ddd} \
${APACHE_USER} ${APACHE_GROUP} 0750
.endfor
MAKE_DIRS_PERMS+= ${VARBASE}/log/glpi \
${APACHE_USER} ${REAL_ROOT_GROUP} 0750
SUBST_CLASSES+= path
SUBST_STAGE.path= post-configure
SUBST_MESSAGE.path= Fixing paths.
SUBST_VARS.path= PREFIX VARBASE PKG_SYSCONFDIR APACHE_USER
SUBST_FILES.path= config/local_define.php
SUBST_FILES.path+= inc/downstream.php
SUBST_FILES.path+= config/crontab.sample
SUBST_FILES.path+= config/httpd-glpi.conf
REPLACE_INTERPRETER+= php
REPLACE.php.old= .*php
REPLACE.php.new= ${PREFIX}/bin/php
REPLACE_FILES.php= vendor/tecnickcom/tcpdf/tools/tcpdf_addfont.php
REPLACE_FILES.php+= bin/console
.for ddd in bench.php fetch_windows_zones.php generate_vcards \
generateicalendardata.php vobject
REPLACE_FILES.php+= vendor/sabre/vobject/bin/${ddd}
.endfor
INSTALLATION_DIRS+= ${GLPI_DIR} ${EGDIR}
.include "../../lang/php/phpversion.mk"
.if ${PKG_PHP_VERSION} == 56
DEPENDS+= ${PHP_PKG_PREFIX}-apcu>=4.0:../../www/php-apcu4
.else
DEPENDS+= ${PHP_PKG_PREFIX}-apcu_bc>=1.0:../../www/php-apcu_bc
.endif
post-extract:
for ddd in local_define.php crontab.sample httpd-glpi.conf ; do \
${CP} ${FILESDIR}/$${ddd} ${WRKSRC}/config ; \
done
${CP} ${FILESDIR}/downstream.php ${WRKSRC}/inc
for ddd in ajax css front inc lib locales pics vendor ; do \
find ${WRKSRC}/$${ddd} -type f -exec ${CHMOD} ugo-x \{\} \; ; \
done
cd ${WRKSRC}/install && ${MV} install.php install.php.disabled
${CHMOD} ugo-x ${WRKSRC}/scripts/.htaccess
do-install:
cd ${WRKSRC}/config && ${PAX} -rw * ${DESTDIR}${PREFIX}/${EGDIR}
cd ${WRKSRC} && ${PAX} -rw . ${DESTDIR}${PREFIX}/${GLPI_DIR}
.include "../../mk/apache.mk"
.include "../../mk/mysql.buildlink3.mk"
.include "../../lang/php/phpversion.mk"
.include "../../mk/bsd.pkg.mk"