e141c28e1f
PR: 203679 Submitted by: yasu@utahime.org Approved by: loic.blot@unix-experience.fr (maintainer)
60 lines
1.6 KiB
Makefile
60 lines
1.6 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= rainloop
|
|
PORTVERSION= 1.9.3
|
|
CATEGORIES?= mail www
|
|
MASTER_SITES= http://repository.rainloop.net/v2/webmail/${PORTVERSION}/
|
|
DISTNAME= ${PORTNAME}${PKGNAMESUFFIX}-${PORTVERSION}.${RBUILD}-${RHASH}
|
|
|
|
MAINTAINER= loic.blot@unix-experience.fr
|
|
COMMENT= Modern and interactive webmail
|
|
|
|
.if !defined(PKGNAMESUFFIX)
|
|
LICENSE= RainLoop
|
|
LICENSE_NAME= RainLoop Software License
|
|
LICENSE_TEXT= License can be found at: http://www.rainloop.net/licensing/
|
|
LICENSE_PERMS= auto-accept
|
|
.endif
|
|
|
|
.if !defined(PKGNAMESUFFIX)
|
|
# Refresh using info from http://repository.rainloop.net/v2/core.stable.json
|
|
RHASH= e5a505507a5bf04426aa8578dd85c6d1
|
|
.endif
|
|
|
|
.if defined(PKGNAMESUFFIX)
|
|
# Refresh using info from http://repository.rainloop.net/v2/core.open.json
|
|
RHASH= 4903b60f0199347bca03c1a26125e907
|
|
.endif
|
|
|
|
# Refresh using info from http://repository.rainloop.net/v2/core.(stable|open).json
|
|
RBUILD= 363
|
|
|
|
.if !defined(PKGNAMESUFFIX)
|
|
RESTRICTED= Redistribution in any form is prohibited
|
|
.endif
|
|
USES= zip
|
|
NO_BUILD= yes
|
|
NO_ARCH= yes
|
|
NO_WRKSUBDIR= yes
|
|
WANT_PHP_WEB= yes
|
|
USE_PHP= curl iconv json xml dom openssl pcre spl zlib
|
|
RVER= ${PORTVERSION}.${RBUILD}
|
|
PLIST_SUB= VER="${RVER}" WWWOWN="${WWWOWN}" WWWGRP="${WWWGRP}"
|
|
|
|
OPTIONS_RADIO= DB
|
|
OPTIONS_RADIO_DB= MYSQL PGSQL SQLITE
|
|
OPTIONS_DEFAULT= SQLITE
|
|
|
|
MYSQL_USE= PHP=pdo_mysql
|
|
PGSQL_USE= PHP=pdo_pgsql
|
|
SQLITE_USE= PHP=pdo_sqlite
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${WWWDIR}/data
|
|
${INSTALL_DATA} ${WRKSRC}/data/* ${STAGEDIR}${WWWDIR}/data
|
|
${INSTALL_DATA} ${WRKSRC}/index.php ${STAGEDIR}${WWWDIR}
|
|
(cd ${WRKSRC} && ${COPYTREE_SHARE} rainloop ${STAGEDIR}${WWWDIR})
|
|
|
|
.include <bsd.port.mk>
|