You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-dicts/mecab-ipadic/mecab-ipadic-2.7.0.20070801...

36 lines
767 B

# Copyright 1999-2012 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.20070801.ebuild,v 1.10 2012/05/17 16:37:30 aballier 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 ~arm hppa ia64 ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd"
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
}