summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkinori Hattori <hattya@gentoo.org>2007-07-11 13:02:58 +0000
committerAkinori Hattori <hattya@gentoo.org>2007-07-11 13:02:58 +0000
commit3ccee7736d1b36775bd44b153086249662cb7254 (patch)
tree4bd020e23af882fd5c9f6fdac26b7843c6e4ec2b /app-dicts/mecab-ipadic
parentStable on sparc wrt #184696 (diff)
downloadgentoo-2-3ccee7736d1b36775bd44b153086249662cb7254.tar.gz
gentoo-2-3ccee7736d1b36775bd44b153086249662cb7254.tar.bz2
gentoo-2-3ccee7736d1b36775bd44b153086249662cb7254.zip
new upstream release.
(Portage version: 2.1.2.9)
Diffstat (limited to 'app-dicts/mecab-ipadic')
-rw-r--r--app-dicts/mecab-ipadic/ChangeLog8
-rw-r--r--app-dicts/mecab-ipadic/files/digest-mecab-ipadic-2.7.0.200706103
-rw-r--r--app-dicts/mecab-ipadic/mecab-ipadic-2.7.0.20070610.ebuild35
3 files changed, 45 insertions, 1 deletions
diff --git a/app-dicts/mecab-ipadic/ChangeLog b/app-dicts/mecab-ipadic/ChangeLog
index f4ae8b02701e..b5053bdc87f3 100644
--- a/app-dicts/mecab-ipadic/ChangeLog
+++ b/app-dicts/mecab-ipadic/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for app-dicts/mecab-ipadic
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-dicts/mecab-ipadic/ChangeLog,v 1.10 2007/05/06 04:46:18 dertobi123 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-dicts/mecab-ipadic/ChangeLog,v 1.11 2007/07/11 13:02:58 hattya Exp $
+
+*mecab-ipadic-2.7.0.20070610 (11 Jul 2007)
+
+ 11 Jul 2007; Akinori Hattori <hattya@gentoo.org>
+ +mecab-ipadic-2.7.0.20070610.ebuild:
+ new upstream release.
06 May 2007; Tobias Scherbaum <dertobi123@gentoo.org>
mecab-ipadic-2.7.0.20060707.ebuild:
diff --git a/app-dicts/mecab-ipadic/files/digest-mecab-ipadic-2.7.0.20070610 b/app-dicts/mecab-ipadic/files/digest-mecab-ipadic-2.7.0.20070610
new file mode 100644
index 000000000000..21813f8b0183
--- /dev/null
+++ b/app-dicts/mecab-ipadic/files/digest-mecab-ipadic-2.7.0.20070610
@@ -0,0 +1,3 @@
+MD5 948f283cfcafbd562317c79df147da68 mecab-ipadic-2.7.0-20070610.tar.gz 12125695
+RMD160 d402f7b4eef1b169e1d49810987e79314a572d29 mecab-ipadic-2.7.0-20070610.tar.gz 12125695
+SHA256 77a678efddb6f932b4c87fdd299458c3122591044102517e526587a0582ff9d3 mecab-ipadic-2.7.0-20070610.tar.gz 12125695
diff --git a/app-dicts/mecab-ipadic/mecab-ipadic-2.7.0.20070610.ebuild b/app-dicts/mecab-ipadic/mecab-ipadic-2.7.0.20070610.ebuild
new file mode 100644
index 000000000000..61d9e03a5126
--- /dev/null
+++ b/app-dicts/mecab-ipadic/mecab-ipadic-2.7.0.20070610.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-dicts/mecab-ipadic/mecab-ipadic-2.7.0.20070610.ebuild,v 1.1 2007/07/11 13:02:58 hattya Exp $
+
+IUSE="unicode"
+
+MY_P="${PN}-${PV%.*}-${PV/*.}"
+
+DESCRIPTION="IPA dictionary for MeCab"
+HOMEPAGE="http://mecab.sourceforge.net/"
+SRC_URI="mirror://sourceforge/mecab/${MY_P}.tar.gz"
+
+LICENSE="ipadic"
+KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+SLOT="0"
+S="${WORKDIR}/${MY_P}"
+
+DEPEND=">=app-text/mecab-0.90"
+
+src_compile() {
+
+ local myconf
+
+ use unicode && myconf="${myconf} --with-charset=utf8"
+
+ econf ${myconf} || die
+ emake || die
+
+}
+
+src_install() {
+
+ emake DESTDIR="${D}" install || die
+
+}