61fa1a15d6
ChangeLogs - 9.5.3: https://github.com/glpi-project/glpi/milestone/44?closed=1 - 9.5.2: https://github.com/glpi-project/glpi/milestone/43?closed=1 - 9.5.1: https://github.com/glpi-project/glpi/milestone/42?closed=1 - 9.5.0: https://github.com/glpi-project/glpi/milestone/42?closed=1 - 9.4.6: https://github.com/glpi-project/glpi/milestone/39?closed=1 - 9.4.5: https://github.com/glpi-project/glpi/milestone/38?closed=1 PR: 251680, 251744 Submitted by: Mathias Monnerville (maintainer) MFH: 2020Q4 (bugfix release)
43 lines
970 B
Makefile
43 lines
970 B
Makefile
# Created by: Mathias Monnerville <mathias@monnerville.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= glpi
|
|
PORTVERSION= 9.5.3
|
|
PORTEPOCH= 1
|
|
CATEGORIES= www
|
|
MASTER_SITES= https://github.com/glpi-project/glpi/releases/download/${PORTVERSION}/
|
|
|
|
MAINTAINER= mathias@monnerville.com
|
|
COMMENT= Free IT and asset management software
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USES= cpe gettext php tar:tgz
|
|
CPE_VENDOR= glpi-project
|
|
USE_PHP= bz2 ctype curl exif fileinfo gd iconv intl json mbstring \
|
|
mysqli opcache openssl session simplexml sodium xml xmlrpc zip zlib
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
GLPIDIR?= www/${PORTNAME}
|
|
|
|
SUB_FILES= pkg-message
|
|
SUB_LIST= GLPIDIR=${GLPIDIR} PREFIX=${PREFIX}
|
|
|
|
OPTIONS_DEFINE= LDAP IMAP
|
|
OPTIONS_DEFAULT= LDAP IMAP
|
|
|
|
IMAP_DESC= IMAP support
|
|
LDAP_USE= PHP=ldap
|
|
IMAP_USE= PHP=imap
|
|
|
|
post-extract:
|
|
@${FIND} ${WRKSRC} -name '*~' -delete
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${WWWDIR}
|
|
(cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR})
|
|
|
|
.include <bsd.port.mk>
|