blob: 22a4ade08521097c76ad1089f62a471214d8e796 (
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-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.20060707.ebuild,v 1.8 2007/05/06 04:46:18 dertobi123 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
}
|