aboutsummaryrefslogtreecommitdiff
path: root/devel/courier-unicode
Commit message (Collapse)AuthorAgeFilesLines
* - Update to devel/courier-unicode to 1.4Guido Falsi2015-09-073-5/+19
| | | | | | | - Chase shlib bump Notes: svn path=/head/; revision=396348
* - Update mail/courier-unicode to 1.3Guido Falsi2015-06-303-4/+4
| | | | | | | | | | - Update mail/maildrop to 2.8.3 - Add make.conf variable for maildrop to force it choosing a non standard mailbox directory [1] Reported by: Jim Trigg <jktrigg at gmail.com> [1] Notes: svn path=/head/; revision=390950
* - Update courier-unicode to 1.2Guido Falsi2015-04-303-9/+9
| | | | | | | | | | | | | | - Update courier-imap to 4.16.1 - Update maildrop to 2.8.2 - Update sqwebmail to 5.8.2 - Update courier-authlib to 0.66.2 - Some plist and Makefile modernization Approved by: oliver@ (as maintainer of various of these ports) Differential Revision: https://reviews.freebsd.org/D2391 Notes: svn path=/head/; revision=385029
* converters/libiconv:Tijl Coosemans2015-04-151-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Remove const qualifier from iconv(3) to match POSIX: http://pubs.opengroup.org/onlinepubs/9699919799/functions/iconv.html - Patch iconv.h to expose more GNU extensions when LIBICONV_PLUG is defined because the base system iconv supports these extensions too. Add/remove patches to/from ports to call iconv with non-const arguments. This breaks some ports on FreeBSD 10 because base system iconv.h still has the const qualifier. Fix this by letting USES=iconv add a build dependency on converters/libiconv so ports can use its iconv.h (with LIBICONV_PLUG defined) instead of the base system iconv.h. This exposed some ports that link with libiconv when it is available instead of using libc iconv. In these cases one of the following changes has been made: - patch configure scripts to test for libc iconv first - add ac_cv_lib_iconv_libiconv=no or similar to CONFIGURE_ARGS to disable some configure tests - converters/wkhtmltopdf: this includes Qt4 so add a patch from devel/qt4 - lang/gcc5-aux: respect CFLAGS and friends during configure such that LIBICONV_PLUG is defined in the iconv test, also switch to external gettext - mail/gnarwl: replace patches with CPPFLAGS/LIBS - multimedia/ffmpeg2theora: remove iconv test from SConstruct and use ICONV_LIB in port Makefile instead, also fix a bug in subtitles.c - net-im/licq: finish conversion to cmake - net-mgmt/bandwidthd, net-mgmt/icinga, net-mgmt/nagios, net-mgmt/nagios4: don't need iconv - textproc/p5-XML-TinyXML: finish conversion to USES=perl5 Other changes: - databases/qdbm and slaves: respect CFLAGS and friends, also enable bzip2 and lzo support - games/ldmud: respect CFLAGS and friends - graphics/inventor: replace some patches with MAKE_ARGS/MAKE_ENV to respect CFLAGS and friends, also remove FreeBSD/alpha patch and add missing xorg dependencies PR: 199099 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=384038
* Courier library which implements several algorithms related to theGuido Falsi2014-09-034-0/+105
Unicode Standard: - Look up uppercase, lowercase, and titlecase equivalents of a unicode character. - Implementation of grapheme and work breaking rules. - Implementation of line breaking rules. - Several ancillary functions, like looking up the unicode character that corresponds to some HTML 4.0 entity (such as "&amp;", for example), and determining the normal width or a double-width status of a unicode character. Also, an adaptation of the iconv(3) API for this unicode library. This library also implements C++ bindings for these algorithms. WWW: http://www.courier-mta.org/unicode/ Notes: svn path=/head/; revision=367191