blob: 7c1af154b9d158e10f0c2696f09f95048f5baa3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/mecab/mecab-0.92.ebuild,v 1.2 2006/07/14 13:04:47 hattya Exp $
IUSE="unicode"
DESCRIPTION="Yet Another Part-of-Speech and Morphological Analyzer"
HOMEPAGE="http://mecab.sourceforge.jp/"
SRC_URI="mirror://sourceforge.jp/${PN}/20896/${P}.tar.gz"
LICENSE="LGPL-2.1"
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 doc/* || die
}
|