changelog: https://github.com/glpi-project/glpi/blob/9.3/bugfixes/CHANGELOG.md#931-2018-09-12 PR: 232239 Submitted by: Mathias Monnerville <mathias@monnerville.com> (maintainer) Sponsored by: Netzkommune GmbH
42 lines
944 B
Makefile
42 lines
944 B
Makefile
# Created by: Mathias Monnerville <mathias@monnerville.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= glpi
|
|
PORTVERSION= 9.3.1
|
|
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= ctype curl dom fileinfo filter gd json mbstring mysqli \
|
|
pcre session simplexml wddx xml xmlrpc 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>
|