diff options
Diffstat (limited to 'app-text/mecab/mecab-0.98.ebuild')
-rw-r--r-- | app-text/mecab/mecab-0.98.ebuild | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/app-text/mecab/mecab-0.98.ebuild b/app-text/mecab/mecab-0.98.ebuild index 78b35f2c644c..e05c3e1ee184 100644 --- a/app-text/mecab/mecab-0.98.ebuild +++ b/app-text/mecab/mecab-0.98.ebuild @@ -1,22 +1,23 @@ -# Copyright 1999-2009 Gentoo Foundation +# 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.2 2009/12/27 17:18:09 armin76 Exp $ +# $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 +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" +KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" SLOT="0" IUSE="unicode" RESTRICT="test" -DEPEND="dev-lang/perl" +DEPEND="dev-lang/perl + virtual/libiconv" PDEPEND=">=app-dicts/mecab-ipadic-2.7.0.20070610" src_prepare() { @@ -24,6 +25,7 @@ src_prepare() { -e "/CFLAGS/s/-O3/${CFLAGS}/" \ -e "/CXXFLAGS/s/-O3/${CXXFLAGS}/" \ configure.in || die + epatch "${FILESDIR}/${P}-iconv.patch" eautoreconf } |