diff options
author | pgj <pgj@FreeBSD.org> | 2011-05-09 02:40:59 +0800 |
---|---|---|
committer | pgj <pgj@FreeBSD.org> | 2011-05-09 02:40:59 +0800 |
commit | 8f038253eb9c10c402eecb3e3741922588e1235f (patch) | |
tree | f5e7e6f16f3c4c3bd89ab0de0f58587a42c07a37 /textproc | |
parent | dfcd7d4862539aecdd52498cba1a3be65714a9b2 (diff) | |
download | freebsd-ports-gnome-8f038253eb9c10c402eecb3e3741922588e1235f.tar.gz freebsd-ports-gnome-8f038253eb9c10c402eecb3e3741922588e1235f.tar.zst freebsd-ports-gnome-8f038253eb9c10c402eecb3e3741922588e1235f.zip |
Unicode encoding and decoding functions for utf8, iso-latin-* and somes other
encodings, used in the Haskell XML Toolbox. ISO Latin 1 - 16, utf8, utf16,
ASCII are supported. Decoding is done with lasy functions, errors may be
detected or ignored.
WWW: http://www.fh-wedel.de/~si/HXmlToolbox/index.html
Obtained from: FreeBSD Haskell
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/hs-hxt-unicode/Makefile | 20 | ||||
-rw-r--r-- | textproc/hs-hxt-unicode/distinfo | 2 | ||||
-rw-r--r-- | textproc/hs-hxt-unicode/pkg-descr | 6 |
3 files changed, 28 insertions, 0 deletions
diff --git a/textproc/hs-hxt-unicode/Makefile b/textproc/hs-hxt-unicode/Makefile new file mode 100644 index 000000000000..a137256bc76d --- /dev/null +++ b/textproc/hs-hxt-unicode/Makefile @@ -0,0 +1,20 @@ +# New ports collection makefile for: hs-hxt-unicode +# Date created: March 13, 2011 +# Whom: haskell@FreeBSD.org +# +# $FreeBSD$ +# + +PORTNAME= hxt-unicode +PORTVERSION= 9.0.1 +CATEGORIES= textproc haskell + +MAINTAINER= haskell@FreeBSD.org +COMMENT= Unicode functions for utf8, iso-latin-* and other encodings + +CABAL_SETUP= Setup.hs + +USE_CABAL= hxt-charproperties>=9 + +.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk" +.include <bsd.port.mk> diff --git a/textproc/hs-hxt-unicode/distinfo b/textproc/hs-hxt-unicode/distinfo new file mode 100644 index 000000000000..606acd185d1d --- /dev/null +++ b/textproc/hs-hxt-unicode/distinfo @@ -0,0 +1,2 @@ +SHA256 (cabal/hxt-unicode-9.0.1.tar.gz) = d59bab6541d01e8c7e260c5084f6c2f4346c564bb2c53262d3ffdca8f8f9183d +SIZE (cabal/hxt-unicode-9.0.1.tar.gz) = 13980 diff --git a/textproc/hs-hxt-unicode/pkg-descr b/textproc/hs-hxt-unicode/pkg-descr new file mode 100644 index 000000000000..4fb7a2f39976 --- /dev/null +++ b/textproc/hs-hxt-unicode/pkg-descr @@ -0,0 +1,6 @@ +Unicode encoding and decoding functions for utf8, iso-latin-* and somes other +encodings, used in the Haskell XML Toolbox. ISO Latin 1 - 16, utf8, utf16, +ASCII are supported. Decoding is done with lasy functions, errors may be +detected or ignored. + +WWW: http://www.fh-wedel.de/~si/HXmlToolbox/index.html |