diff options
author | mef <mef@pkgsrc.org> | 2017-02-12 02:14:01 +0000 |
---|---|---|
committer | mef <mef@pkgsrc.org> | 2017-02-12 02:14:01 +0000 |
commit | 573295e87af4269245b081dde2b4a2057cb7f566 (patch) | |
tree | e66753041a0da9dafb0ef2468e16bb5a75706fad /mail/courier-unicode/Makefile | |
parent | 8dbe428ac08b6b85eb3f9c133c9c71051eee0cf1 (diff) | |
download | pkgsrc-573295e87af4269245b081dde2b4a2057cb7f566.tar.gz |
Import courier-unicode-1.4 as mail/courier-unicode.
This library implements several algorithms related to the 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 "&", 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
- Look up the Unicode script property
- Look up the category property
This library also implements C++ bindings for these algorithms.
Diffstat (limited to 'mail/courier-unicode/Makefile')
-rw-r--r-- | mail/courier-unicode/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/mail/courier-unicode/Makefile b/mail/courier-unicode/Makefile new file mode 100644 index 00000000000..2af15130219 --- /dev/null +++ b/mail/courier-unicode/Makefile @@ -0,0 +1,20 @@ +# $NetBSD: Makefile,v 1.1 2017/02/12 02:14:01 mef Exp $ + +DISTNAME= courier-unicode-1.4 +CATEGORIES= mail +MASTER_SITES= https://sourceforge.net/projects/courier/files/courier-unicode/${PKGVERSION_NOREV}/ +EXTRACT_SUFX= .tar.bz2 + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://www.courier-mta.org/unicode/ +COMMENT= Implements several algorithms related to the Unicode Standard +LICENSE= gnu-gpl-v3 + +USE_TOOLS+= gmake autoconf aclocal automake +USE_LANGUAGES+= c c++ +GNU_CONFIGURE= yes + +pre-configure: + (cd ${WRKSRC}; autoconf; aclocal; automake) + +.include "../../mk/bsd.pkg.mk" |