diff options
author | obache <obache> | 2012-02-27 11:53:06 +0000 |
---|---|---|
committer | obache <obache> | 2012-02-27 11:53:06 +0000 |
commit | 41bdd87aa0dfe520f992efe350aaa11c7aa682a4 (patch) | |
tree | 1ee942f73364b1cd2b8383a5024e223cf68053da /textproc/mecab | |
parent | aca58b767f8c28902c3133884ac357eb6bd0aafe (diff) | |
download | pkgsrc-41bdd87aa0dfe520f992efe350aaa11c7aa682a4.tar.gz |
Update mecab to 0.993.
2012-01-27 MeCab 0.993
* Fix to works well for MeCab::Tagger::formatNode()
* To reduce stack size, save almost of local variables(arrays) to heap.
2012-01-14 MeCab 0.992
* Fix typos in source codes.
2012-01-14 MeCab 0.991
* Fix parse error with null strings or space strings.
* Fix failure for creation of user dictionaries.
2011-12-24 MeCab 0.99
* Add MeCab::Model MeCab::Lattice classes.
Improve usabilities on multi threads environment. Multiple threads can parse
with shareing same dictionary.
* Remove function for automatic dictionary reference share when refereing same
dictionaly (You can do same works with MeCab::Model).
* Add function for atomic dictionaly update in parsing. Model::swap()
* Change Windows version to Unicode binary.
* Remove experimental online learning, HMM and EM learning codes.
* Remove MeCab::Node:(begin|end)_node_list members.
* minor bug fixes.
Diffstat (limited to 'textproc/mecab')
-rw-r--r-- | textproc/mecab/Makefile.common | 6 | ||||
-rw-r--r-- | textproc/mecab/buildlink3.mk | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/textproc/mecab/Makefile.common b/textproc/mecab/Makefile.common index 73e47579f12..17d6f4461ff 100644 --- a/textproc/mecab/Makefile.common +++ b/textproc/mecab/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.4 2009/10/14 08:22:35 obache Exp $ +# $NetBSD: Makefile.common,v 1.5 2012/02/27 11:53:07 obache Exp $ # # used by textproc/mecab-base/Makefile # used by textproc/java-mecab/Makefile @@ -8,10 +8,10 @@ # used by textproc/mecab-ipadic/Makefile # used by textproc/mecab-jumandic/Makefile -MECAB_VERSION= 0.98 +MECAB_VERSION= 0.993 CATEGORIES= japanese textproc -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=mecab/} +MASTER_SITES= http://mecab.googlecode.com/files/ MAINTAINER= obache@NetBSD.org HOMEPAGE= http://mecab.sourceforge.net/ diff --git a/textproc/mecab/buildlink3.mk b/textproc/mecab/buildlink3.mk index e5a56e36801..1609365842d 100644 --- a/textproc/mecab/buildlink3.mk +++ b/textproc/mecab/buildlink3.mk @@ -1,11 +1,11 @@ -# $NetBSD: buildlink3.mk,v 1.2 2009/03/20 19:25:31 joerg Exp $ +# $NetBSD: buildlink3.mk,v 1.3 2012/02/27 11:53:07 obache Exp $ BUILDLINK_TREE+= mecab .if !defined(MECAB_BUILDLINK3_MK) MECAB_BUILDLINK3_MK:= -BUILDLINK_API_DEPENDS.mecab+= mecab>=0.90 +BUILDLINK_API_DEPENDS.mecab+= mecab>=0.99 BUILDLINK_PKGSRCDIR.mecab?= ../../textproc/mecab .include "../../textproc/mecab-base/buildlink3.mk" |