diff options
Diffstat (limited to 'app-text/cabocha/cabocha-0.60_pre4.ebuild')
-rw-r--r-- | app-text/cabocha/cabocha-0.60_pre4.ebuild | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/app-text/cabocha/cabocha-0.60_pre4.ebuild b/app-text/cabocha/cabocha-0.60_pre4.ebuild new file mode 100644 index 000000000000..72a882c10186 --- /dev/null +++ b/app-text/cabocha/cabocha-0.60_pre4.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/cabocha/cabocha-0.60_pre4.ebuild,v 1.1 2008/10/08 00:24:19 matsuu Exp $ + +WANT_AUTOCONF="latest" +WANT_AUTOMAKE="latest" + +inherit autotools eutils multilib + +MY_P="${P/_}" +DESCRIPTION="Yet Another Japanese Dependency Structure Analyzer" +HOMEPAGE="http://chasen.org/~taku/software/cabocha/" +SRC_URI="mirror://sourceforge/cabocha/${MY_P}.tar.bz2" + +LICENSE="|| ( LGPL-2.1 BSD )" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +#IUSE="java perl python ruby unicode" +IUSE="unicode" + +DEPEND="app-text/crf++ + app-text/mecab" + +S="${WORKDIR}/${MY_P}" + +src_unpack() { + unpack ${A} + cd "${S}" + sed -i -e "/^modeldir/s|lib|$(get_libdir)|" model/Makefile.am || die + eautoreconf +} + +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 ChangeLog README TODO +} |