diff options
author | abs <abs@pkgsrc.org> | 2009-03-11 12:55:10 +0000 |
---|---|---|
committer | abs <abs@pkgsrc.org> | 2009-03-11 12:55:10 +0000 |
commit | 920ea450145c6b7f0fb48c0799d9b56c47e958c1 (patch) | |
tree | 7cff736018574f2a2cb37973ca01658acbae2ac7 /mail/roundcube/Makefile | |
parent | c442dc0f291208c25525678bea97f8a0301720fe (diff) | |
download | pkgsrc-920ea450145c6b7f0fb48c0799d9b56c47e958c1.tar.gz |
Updated mail/roundcube to 0.2.1
pkgsrc changes
- add PKG_DESTDIR_SUPPORT= user-destdir
distribution changes:
- Use US-ASCII as failover when Unicode searching fails (#1485762)
- Fix errors handling in IMAP command continuations (#1485762)
- Fix FETCH result parsing for servers returning flags at the end of result (#1485763)
- Fix datetime columns defaults in mysql's DDL (#1485641)
- Fix attaching more than nine inline images (#1485759)
- Support 'UNICODE-1-1-UTF-7' alias for UTF-7 encoding (#1485758)
- Fix mime-type detection using a hard-coded map (#1485311)
- Don't return empty string if charset conversion failed (#1485757)
- Disable concurrent autocomplete query results display (#1485743)
- Fix new lines stripped from message footer (#1485751)
- Fix IE problem with mouse click autocomplete (#1485739)
- Fix html body washing on reply/forward + fix attachments handling (#1485676)
- Fix multiple recipients input parsing (#1485733)
- Fix replying to message with html attachment (#1485676)
- Use default_charset for messages without specified charset (#1485661, #1484961)
- Support non-standard "GMT-XXXX" literal in date header (#1485729)
- Added TNEF support to decode MS Outlook attachments (winmail.dat)
- Fix "value continuation" MIME headers by adding required semicolon (#1485727)
- Fix pressing select all/unread multiple times (#1485723)
- Fix selecting all unread does not honor new messages (#1485724)
- Fix some base64 encoded attachments handling (#1485725)
- Support NGINX as IMAP backend: better BAD response handling (#1485720)
- Performance fix: don't fetch attachment parts headers twice to parse filename
- Fix checking for recent messages on various IMAP servers (#1485702)
- Performance fix: Don't fetch quota and recent messages in "message view" mode
- Fix displaying of alternative-inside-alternative messages (#1485713)
- Fix MDNSent flag checking, use arbitrary keywords (asterisk) flag (#1485706)
- Fix creation of folders with '&' sign in name
- Fix parsing of email addresses without angle brackets (#1485693)
- Save spellcheck corrections when switching from plain to html editor (and spellchecking is on)
- Fix large search results on server without SORT capability (#1485668)
- Get rid of preg_replace() with eval modifier and create_function usage (#1485686)
- Bring back <base> and <link> tags in HTML messages
- Fix XSS vulnerability through background attributes as reported by Julien Cayssol
- Fix problems with backslash as IMAP hierarchy delimiter (#1484467)
- Secure vcard export by getting rid of preg's 'e' modifier use (#1485689)
- Fix authentication when submitting form with existing session (#1485679)
- Allow absolute URLs to images in HTML messages/sigs (#1485666)
- Fix message body which contains both inline attachments and emotions
- Fix SQL query execution errors handling in rcube_mdb2 class (#1485509)
- Fix address names with '@' sign handling (#1485654)
- Improve messages display performance
- Fix messages searching with 'to:' modifier
Diffstat (limited to 'mail/roundcube/Makefile')
-rw-r--r-- | mail/roundcube/Makefile | 45 |
1 files changed, 24 insertions, 21 deletions
diff --git a/mail/roundcube/Makefile b/mail/roundcube/Makefile index 2048f784101..3a84aa342a0 100644 --- a/mail/roundcube/Makefile +++ b/mail/roundcube/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.16 2009/02/28 17:35:04 adrianp Exp $ +# $NetBSD: Makefile,v 1.17 2009/03/11 12:55:10 abs Exp $ # DISTNAME= roundcubemail-${RCVERSION}-dep -PKGREVISION= 1 PKGNAME= ${DISTNAME:S/mail-${RCVERSION}-dep/-${VERSION}/} CATEGORIES= mail MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=roundcubemail/} @@ -14,9 +13,13 @@ COMMENT= Browser-based multilingual IMAP client USE_TOOLS+= pax USE_LANGUAGES= # none NO_BUILD= yes -RCVERSION= 0.2-stable +RCVERSION= 0.2.1 VERSION= ${RCVERSION:S/-//} +PKG_DESTDIR_SUPPORT= user-destdir +INSTALLATION_DIRS= ${RCDIR}/program ${RCDIR}/skins ${EGDIR}/SQL ${DOCDIR} +INSTALLATION_DIRS+= ${RCDIR}/bin + .include "../../mk/bsd.prefs.mk" .include "../../lang/php/phpversion.mk" @@ -93,9 +96,6 @@ EMPTY_DIRS= plugins/cleanup plugins/emotions/images \ themes/advanced/jscripts themes/advanced/docs/en \ themes/advanced/images themes/advanced/docs -INSTALLATION_DIRS= ${RCDIR}/program ${RCDIR}/skins ${EGDIR}/SQL ${DOCDIR} -INSTALLATION_DIRS+= ${RCDIR}/bin - .include "../../mk/apache.mk" .include "options.mk" @@ -110,28 +110,31 @@ pre-install: . endfor do-install: - ${INSTALL_DATA} ${WRKSRC}/roundcube.conf ${EGDIR}/roundcube.conf - ${INSTALL_DATA} ${WRKSRC}/INSTALL ${DOCDIR} - ${INSTALL_DATA} ${WRKSRC}/LICENSE ${DOCDIR} - ${INSTALL_DATA} ${WRKSRC}/README ${DOCDIR} - ${INSTALL_DATA} ${WRKSRC}/UPGRADING ${DOCDIR} + ${INSTALL_DATA} ${WRKSRC}/roundcube.conf \ + ${DESTDIR}${EGDIR}/roundcube.conf + ${INSTALL_DATA} ${WRKSRC}/INSTALL ${DESTDIR}${DOCDIR} + ${INSTALL_DATA} ${WRKSRC}/LICENSE ${DESTDIR}${DOCDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${DESTDIR}${DOCDIR} + ${INSTALL_DATA} ${WRKSRC}/UPGRADING ${DESTDIR}${DOCDIR} - ${INSTALL_DATA} ${WRKSRC}/SQL/*.sql ${EGDIR}/SQL/ + ${INSTALL_DATA} ${WRKSRC}/SQL/*.sql ${DESTDIR}${EGDIR}/SQL/ - ${INSTALL_DATA} ${WRKSRC}/.htaccess ${RCDIR}/ - ${INSTALL_DATA} ${WRKSRC}/index.php ${RCDIR}/ - ${INSTALL_DATA} ${WRKSRC}/robots.txt ${RCDIR}/ + ${INSTALL_DATA} ${WRKSRC}/.htaccess ${DESTDIR}${RCDIR}/ + ${INSTALL_DATA} ${WRKSRC}/index.php ${DESTDIR}${RCDIR}/ + ${INSTALL_DATA} ${WRKSRC}/robots.txt ${DESTDIR}${RCDIR}/ ${INSTALL_DATA} ${WRKSRC}/config/db.inc.php.dist \ - ${EGDIR}/db.inc.php.dist + ${DESTDIR}${EGDIR}/db.inc.php.dist ${INSTALL_DATA} ${WRKSRC}/config/main.inc.php.dist \ - ${EGDIR}/main.inc.php.dist + ${DESTDIR}${EGDIR}/main.inc.php.dist . for i in ${PAX_DIRS} - cd ${WRKSRC}/${i} && ${PAX} -rw . ${RCDIR}/${i} - ${FIND} ${RCDIR}/${i} -type f | ${XARGS} ${CHMOD} ${SHAREMODE} - ${FIND} ${RCDIR}/${i} -type d | ${XARGS} ${CHMOD} ${PKGDIRMODE} - ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${RCDIR}/${i} + cd ${WRKSRC}/${i} && ${PAX} -rw . ${DESTDIR}${RCDIR}/${i} + ${FIND} ${DESTDIR}${RCDIR}/${i} -type f | \ + ${XARGS} ${CHMOD} ${SHAREMODE} + ${FIND} ${DESTDIR}${RCDIR}/${i} -type d | \ + ${XARGS} ${CHMOD} ${PKGDIRMODE} + ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${DESTDIR}${RCDIR}/${i} . endfor .include "../../mk/bsd.pkg.mk" |