diff options
author | wiz <wiz@pkgsrc.org> | 2008-04-14 09:39:00 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2008-04-14 09:39:00 +0000 |
commit | b1e93b42f7b08f849b2f25d04c7a5a05a132e481 (patch) | |
tree | bea790548c1545a908dd339cfd21cf38651db6e2 /textproc/hunspell/Makefile | |
parent | c19497e84ff7aae62fa84cb78d2cd247a24c1463 (diff) | |
download | pkgsrc-b1e93b42f7b08f849b2f25d04c7a5a05a132e481.tar.gz |
Update to 1.2.2.
pkgsrc change:
buildlink3.mk:
Bump API_DEPENDS, since shlib name changed. No dependencies in pkgsrc.
Release notes:
2008-04-12: Hunspell 1.2.2 release:
- extended dictionary (dic file) support to use multiple base and
special dictionaries.
- new and improved options of command line hunspell:
-m: morphological analysis or flag debug mode (without affix
rule data it signs the flag of the affix rules)
-s: stemming mode
-D: list available dictionaries and search path
-d: support extra dictionaries by comma separated list. Example:
hunspell -d en_US,en_med,de_DE,de_med,de_geo UNESCO.txt
- forbidding in personal dictionary (with asterisk, / signs affixation)
- optional compressed dictionary format "hzip" for aff and dic files
usage:
hzip example.aff example.dic
mv example.aff example.dic /tmp
hunspell -d example
hunzip example.aff.hz >example.aff
hunzip example.dic.hz >example.dic
- new affix compression tool "affixcompress": compression tool for
large (millions of words) dictionaries.
- support encrypted dictionaries for closed OpenOffice.org extensions or
other commercial programs
- improved manual
- bug fixes
2007-11-01: Hunspell 1.2.1 release:
- new memory efficient condition checking algorithm for affix rules
- new morphological functions:
- stem() for stemming
- analyze() for morphological analysis
- generate() for morphological generation
- new demos:
- analyze: stemming, morphological analysis and generation
- chmorph: morphological conversion of texts
Diffstat (limited to 'textproc/hunspell/Makefile')
-rw-r--r-- | textproc/hunspell/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/textproc/hunspell/Makefile b/textproc/hunspell/Makefile index e0d5a109de4..5b0278e38aa 100644 --- a/textproc/hunspell/Makefile +++ b/textproc/hunspell/Makefile @@ -1,9 +1,7 @@ -# $NetBSD: Makefile,v 1.5 2008/02/22 17:04:34 jlam Exp $ +# $NetBSD: Makefile,v 1.6 2008/04/14 09:39:00 wiz Exp $ # -DISTNAME= hunspell-1.1.12-2 -PKGNAME= ${DISTNAME:C/-([0-9]+)$/.\1/} -PKGREVISION= 2 +DISTNAME= hunspell-1.2.2 CATEGORIES= textproc MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=hunspell/} |