diff options
author | Naohiro Aota <naota@gentoo.org> | 2013-04-19 09:15:36 +0000 |
---|---|---|
committer | Naohiro Aota <naota@gentoo.org> | 2013-04-19 09:15:36 +0000 |
commit | ed921c83684ce5173cdb344b72d415fc13994401 (patch) | |
tree | 9419b780160d10a5651f2902d3e7cfa23567d64e /app-text | |
parent | migration -> distutils-r1 (diff) | |
download | gentoo-2-ed921c83684ce5173cdb344b72d415fc13994401.tar.gz gentoo-2-ed921c83684ce5173cdb344b72d415fc13994401.tar.bz2 gentoo-2-ed921c83684ce5173cdb344b72d415fc13994401.zip |
Version bump.
(Portage version: 2.1.11.62/cvs/Linux x86_64, signed Manifest commit with key F8551514)
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/mecab/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/mecab/mecab-0.996.ebuild | 53 |
2 files changed, 59 insertions, 1 deletions
diff --git a/app-text/mecab/ChangeLog b/app-text/mecab/ChangeLog index da9b3f5055a1..22761865460a 100644 --- a/app-text/mecab/ChangeLog +++ b/app-text/mecab/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/mecab # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/mecab/ChangeLog,v 1.72 2013/01/29 08:05:49 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/mecab/ChangeLog,v 1.73 2013/04/19 09:15:36 naota Exp $ + +*mecab-0.996 (19 Apr 2013) + + 19 Apr 2013; Naohiro Aota <naota@gentoo.org> +mecab-0.996.ebuild: + Version bump. *mecab-0.995 (29 Jan 2013) diff --git a/app-text/mecab/mecab-0.996.ebuild b/app-text/mecab/mecab-0.996.ebuild new file mode 100644 index 000000000000..2913e3e3799b --- /dev/null +++ b/app-text/mecab/mecab-0.996.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/mecab/mecab-0.996.ebuild,v 1.1 2013/04/19 09:15:36 naota Exp $ + +EAPI="5" +inherit autotools eutils + +DESCRIPTION="Yet Another Part-of-Speech and Morphological Analyzer" +HOMEPAGE="http://mecab.sourceforge.net/" +SRC_URI="http://mecab.googlecode.com/files/${P}.tar.gz" + +LICENSE="|| ( BSD LGPL-2.1 GPL-2 )" +KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +SLOT="0" +IUSE="static-libs unicode" + +DEPEND="dev-lang/perl + virtual/libiconv" +RDEPEND="" +PDEPEND="|| ( + >=app-dicts/mecab-ipadic-2.7.0.20070610[unicode=] + app-dicts/mecab-naist-jdic[unicode=] + )" + +src_prepare() { + sed -i \ + -e "/CFLAGS/s/-O3/${CFLAGS}/" \ + -e "/CXXFLAGS/s/-O3/${CXXFLAGS}/" \ + configure.in || die + epatch "${FILESDIR}/${PN}-0.98-iconv.patch" + eautoreconf +} + +src_configure() { + local myconf + + use unicode && myconf="${myconf} --with-charset=utf8" + + econf \ + $(use_enable static-libs static) \ + ${myconf} +} + +src_install() { + default + + if ! use static-libs ; then + find "${ED}" -name '*.la' -delete + fi + + dodoc AUTHORS README + dohtml -r doc/* +} |