blob: f6dcd93b70d292f493dbfc421a5ae61ea8182606 (
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
36
37
38
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/cabocha/cabocha-0.52.ebuild,v 1.2 2006/02/02 22:48:09 usata Exp $
inherit eutils
DESCRIPTION="Yet Another Japanese Dependency Structure Analyzer"
HOMEPAGE="http://chasen.org/~taku/software/cabocha/"
SRC_URI="http://chasen.org/~taku/software/cabocha/src/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
#IUSE="perl python ruby"
DEPEND="app-text/yamcha
|| ( app-text/chasen app-text/mecab )"
#RDEPEND=""
src_unpack() {
unpack ${A}
cd ${S}
# http://cl.it.okayama-u.ac.jp/study/installmemo.html
epatch ${FILESDIR}/${P}-amd64.patch
}
src_test() {
make check || die
}
src_install() {
make DESTDIR=${D} install || die
dodoc AUTHORS README TODO
}
|