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-text/mecab/mecab-0.98.ebuild

49 lines
1.0 KiB

# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/mecab/mecab-0.98.ebuild,v 1.3 2010/05/02 11:01:57 aballier Exp $
EAPI="2"
inherit autotools eutils
DESCRIPTION="Yet Another Part-of-Speech and Morphological Analyzer"
HOMEPAGE="http://mecab.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="|| ( BSD LGPL-2.1 GPL-2 )"
KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
SLOT="0"
IUSE="unicode"
RESTRICT="test"
DEPEND="dev-lang/perl
virtual/libiconv"
PDEPEND=">=app-dicts/mecab-ipadic-2.7.0.20070610"
src_prepare() {
sed -i \
-e "/CFLAGS/s/-O3/${CFLAGS}/" \
-e "/CXXFLAGS/s/-O3/${CXXFLAGS}/" \
configure.in || die
epatch "${FILESDIR}/${P}-iconv.patch"
eautoreconf
}
src_configure() {
local myconf
use unicode && myconf="${myconf} --with-charset=utf8"
econf ${myconf} || die
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS README || die
dohtml -r doc || die
}