diff options
author | obache <obache@pkgsrc.org> | 2008-02-04 04:58:52 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2008-02-04 04:58:52 +0000 |
commit | 198e32f40051d8118d4fd7c6f63cd47f434ac5aa (patch) | |
tree | 19ab6f6f376a34b533f00d7a006010705b0258a7 /textproc/mecab | |
parent | 3abd1a38e81d2e9ed787e63d18f236a9de6d7b21 (diff) | |
download | pkgsrc-198e32f40051d8118d4fd7c6f63cd47f434ac5aa.tar.gz |
Update mecab to 0.97.
Pkgsrc changes:
* fix some pkglint warining
* add DESTDIR support.
Changes:
* Fix a bug of exclusive control when dictionary is opened in MultiThreading environment.
* When installing the Windows version, it came to be able to specify the character-code of the dictionary.
* Fix a problem that was not able to be compiled correctly by some compilers.
* Add API that changes partial, analytical mode (Tagger::set_partial())
* Add API that changes generation level of lattice (Tagger::set_lattice_level())
* Add API that changes temperature parameter (Tagger::set_theta())
* Add API that changes all candidate output mode (Tagger::set_all_morphs())
Diffstat (limited to 'textproc/mecab')
-rw-r--r-- | textproc/mecab/Makefile | 11 | ||||
-rw-r--r-- | textproc/mecab/Makefile.common | 11 |
2 files changed, 12 insertions, 10 deletions
diff --git a/textproc/mecab/Makefile b/textproc/mecab/Makefile index 69ceed660fd..a51fc858a13 100644 --- a/textproc/mecab/Makefile +++ b/textproc/mecab/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2007/10/25 22:01:06 jlam Exp $ +# $NetBSD: Makefile,v 1.3 2008/02/04 04:58:52 obache Exp $ .include "Makefile.common" @@ -8,13 +8,8 @@ DISTFILES= #empty COMMENT= Yet Another Part-of-Speech and Morphological Analyzer DEPENDS+= {mecab-ipadic>=2.7.0,mecab-jumandic>=5.1}:../../textproc/mecab-ipadic +DEPENDS+= mecab-base>=${MECAB_VERSION}:../../textproc/mecab-base -NO_CHECKSUM= yes -NO_CONFIGURE= yes -NO_BUILD= yes -PLIST_SRC= #empty +META_PACKAGE= yes -do-install: #empty - -.include "../../textproc/mecab-base/buildlink3.mk" .include "../../mk/bsd.pkg.mk" diff --git a/textproc/mecab/Makefile.common b/textproc/mecab/Makefile.common index b9fb44653e1..01bb43d5e97 100644 --- a/textproc/mecab/Makefile.common +++ b/textproc/mecab/Makefile.common @@ -1,7 +1,14 @@ -# $NetBSD: Makefile.common,v 1.2 2007/06/23 04:31:55 obache Exp $ +# $NetBSD: Makefile.common,v 1.3 2008/02/04 04:58:53 obache Exp $ # +# used by textproc/mecab-base/Makefile +# used by textproc/java-mecab/Makefile +# used by textproc/p5-mecab/Makefile +# used by textproc/py-mecab/Makefile +# used by textproc/ruby-mecab/Makefile +# used by textproc/mecab-ipadic/Makefile +# used by textproc/mecab-jumandic/Makefile -MECAB_VERSION= 0.96 +MECAB_VERSION= 0.97 CATEGORIES= japanese textproc MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=mecab/} |