pkgsrc/mail/roundcube/Makefile.common
taca bd92419840 mail/roundcube: update to 1.3.10
RELEASE 1.3.10
--------------
- Managesieve: Fix so "Create filter" option does not show up when Filters menu is disabled (#6723)
- Fix compatibility with kolab/net_ldap3 > 1.0.7 (#6785)
- Fix bug where bmp images couldn't be displayed on some systems (#6728)
- Fix bug in parsing vCard data using PHP 7.3 due to an invalid regexp (#6744)
- Fix bug where bold/strong text was converted to upper-case on html-to-text conversion (6758)
- Fix bug in rcube_utils::parse_hosts() where %t, %d, %z could return only tld (#6746)
- Fix bug where Next/Prev button in mail view didn't work with multi-folder search result (#6793)
- Fix bug where selection of columns on messages list wasn't working
- Fix bug in converting multi-page Tiff images to Jpeg (#6824)
- Fix wrong messages order after returning to a multi-folder search result (#6836)
- Fix PHP 7.4 deprecation: implode() wrong parameter order (#6866)
- Fix bug where it was possible to bypass the position:fixed CSS check in received messages (#6898)
- Fix bug where some strict remote URIs in url() style were unintentionally blocked (#6899)
- Fix bug where it was possible to bypass the CSS jail in HTML messages using :root pseudo-class (#6897)
- Fix bug where it was possible to bypass href URI check with data:application/xhtml+xml URIs (#6896)
2019-09-01 13:08:09 +00:00

49 lines
1.2 KiB
Text

# $NetBSD: Makefile.common,v 1.14 2019/09/01 13:08:09 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.10
USE_LANGUAGES= # none
USE_TOOLS+= pax
EXTRACT_USING= gtar
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