diff options
Diffstat (limited to 'app-text/mecab')
-rw-r--r-- | app-text/mecab/ChangeLog | 9 | ||||
-rw-r--r-- | app-text/mecab/files/digest-mecab-0.95 | 3 | ||||
-rw-r--r-- | app-text/mecab/mecab-0.95.ebuild | 35 |
3 files changed, 45 insertions, 2 deletions
diff --git a/app-text/mecab/ChangeLog b/app-text/mecab/ChangeLog index 97517c13a6a7..08e133eb4eae 100644 --- a/app-text/mecab/ChangeLog +++ b/app-text/mecab/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/mecab -# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/mecab/ChangeLog,v 1.31 2006/12/29 13:03:00 gustavoz Exp $ +# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/mecab/ChangeLog,v 1.32 2007/03/12 14:34:28 hattya Exp $ + +*mecab-0.95 (12 Mar 2007) + + 12 Mar 2007; Akinori Hattori <hattya@gentoo.org> +mecab-0.95.ebuild: + new upstream release. 29 Dec 2006; Gustavo Zacarias <gustavoz@gentoo.org> mecab-0.92.ebuild: Stable on sparc diff --git a/app-text/mecab/files/digest-mecab-0.95 b/app-text/mecab/files/digest-mecab-0.95 new file mode 100644 index 000000000000..87ac351ffc8a --- /dev/null +++ b/app-text/mecab/files/digest-mecab-0.95 @@ -0,0 +1,3 @@ +MD5 043418ea1a36b4d4720d2711ba7c0e36 mecab-0.95.tar.gz 1385805 +RMD160 bd8393ddae802fc98a999dd68f25564e8317f5c0 mecab-0.95.tar.gz 1385805 +SHA256 005de362036b842dcf6566290103a02bffb151f9df6edc1834c4720195af8191 mecab-0.95.tar.gz 1385805 diff --git a/app-text/mecab/mecab-0.95.ebuild b/app-text/mecab/mecab-0.95.ebuild new file mode 100644 index 000000000000..c4e444fa6851 --- /dev/null +++ b/app-text/mecab/mecab-0.95.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/mecab/mecab-0.95.ebuild,v 1.1 2007/03/12 14:34:28 hattya Exp $ + +IUSE="unicode" + +DESCRIPTION="Yet Another Part-of-Speech and Morphological Analyzer" +HOMEPAGE="http://mecab.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="|| ( BSD LGPL-2.1 GPL-2 )" +KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" +SLOT="0" + +DEPEND="dev-lang/perl" +PDEPEND=">=app-dicts/mecab-ipadic-2.7.0.20060707" + +src_compile() { + + local myconf + + use unicode && myconf="${myconf} --with-charset=utf8" + + econf ${myconf} || die + emake || die + +} + +src_install() { + + emake DESTDIR="${D}" install || die + dodoc AUTHORS README || die + dohtml -r doc || die + +} |