pkgsrc/mail/roundcube/Makefile.common
taca 533e393e11 mail/roundcube: update to 1.3.7
RELEASE 1.3.7
-------------
- Fix PHP Warning: Use of undefined constant IDNA_DEFAULT on systems without php-intl (#6244)
- Fix bug where some parts of quota information could have been ignored (#6280)
- Fix bug where some escape sequences in html styles could bypass security checks
- Fix bug where some forbidden characters on Cyrus-IMAP were not prevented from use in folder names
- Fix bug where only attachments with the same name would be ignored on zip download (#6301)
- Fix bug where unicode contact names could have been broken/emptied or caused DB errors (#6299)
- Fix bug where after "mark all folders as read" action message counters were not reset (#6307)
- Enigma: [EFAIL] Don't decrypt PGP messages with no MDC protection (#6289)
- Fix bug where some HTML comments could have been malformed by HTML parser (#6333)
2018-08-09 15:03:56 +00:00

48 lines
1.2 KiB
Text

# $NetBSD: Makefile.common,v 1.11 2018/08/09 15:03:56 taca Exp $
#
# used by mail/roundcube/Makefile
# used by mail/roundcube/plugins.mk
DISTNAME= roundcubemail-${RC_VERS}
CATEGORIES= mail
MASTER_SITES= ${MASTER_SITE_GITHUB:=roundcube/}
GITHUB_PROJECT= roundcubemail
HOMEPAGE= http://roundcube.net/
DISTFILES+= ${DISTNAME}${EXTRACT_SUFX}
DIST_SUBDIR= roundcube
RC_VERS= 1.3.7
USE_LANGUAGES= # none
USE_TOOLS+= pax
NO_BUILD= yes
PKG_SYSCONFSUBDIR?= roundcube
PKG_GROUPS_VARS+= WWW_GROUP
PKG_USERS_VARS= WWW_USER
BUILD_DEFS+= VARBASE WWW_USER WWW_GROUP APACHE_USER APACHE_GROUP
RCDIR= share/roundcube
EGDIR= share/examples/roundcube
DOCDIR= share/doc/roundcube
MESSAGE_SUBST+= DOCDIR="${PREFIX}/${DOCDIR}" \
PKG_SYSCONFDIR=${PKG_SYSCONFDIR}
MESSAGE_SUBST+= VARBASE=${VARBASE} RCDIR="${PREFIX}/${RCDIR}"
FILES_SUBST+= RCDIR="${PREFIX}/${RCDIR}"
.for d in ${CONF_PLUGINS}
INSTALLATION_DIRS+= ${EGDIR}/plugins/${d}
.endfor
.include "../../mail/roundcube/options.mk"
.include "../../lang/php/phpversion.mk"
post-install:
.for f in ${CONF_PLUGINS}
cd ${DESTDIR}${PREFIX} && \
${TEST} -f ${EGDIR}/plugins/${f}/config.inc.php || \
${MV} ${RCDIR}/plugins/${f}/config.inc.php.dist \
${EGDIR}/plugins/${f}/config.inc.php
.endfor