diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2012-01-21 02:58:14 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2012-01-21 02:58:14 +0000 |
commit | a2f25a4da087ac25bbb00a917a489686b4614e7b (patch) | |
tree | aa364e4914ccba21eea251aa159dd8cb3213560f /dev-python/mecab-python | |
parent | Version bumped. (diff) | |
download | gentoo-2-a2f25a4da087ac25bbb00a917a489686b4614e7b.tar.gz gentoo-2-a2f25a4da087ac25bbb00a917a489686b4614e7b.tar.bz2 gentoo-2-a2f25a4da087ac25bbb00a917a489686b4614e7b.zip |
Version bumped.
(Portage version: 2.1.10.44/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/mecab-python')
-rw-r--r-- | dev-python/mecab-python/ChangeLog | 9 | ||||
-rw-r--r-- | dev-python/mecab-python/mecab-python-0.991.ebuild | 30 |
2 files changed, 37 insertions, 2 deletions
diff --git a/dev-python/mecab-python/ChangeLog b/dev-python/mecab-python/ChangeLog index f1efba1e4e99..6b98bf495746 100644 --- a/dev-python/mecab-python/ChangeLog +++ b/dev-python/mecab-python/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/mecab-python -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/mecab-python/ChangeLog,v 1.12 2011/04/07 18:18:07 arfrever Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/mecab-python/ChangeLog,v 1.13 2012/01/21 02:58:14 matsuu Exp $ + +*mecab-python-0.991 (21 Jan 2012) + + 21 Jan 2012; MATSUU Takuto <matsuu@gentoo.org> +mecab-python-0.991.ebuild: + Version bumped. 07 Apr 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> mecab-python-0.97.ebuild, mecab-python-0.98.ebuild: diff --git a/dev-python/mecab-python/mecab-python-0.991.ebuild b/dev-python/mecab-python/mecab-python-0.991.ebuild new file mode 100644 index 000000000000..e540bb2b729e --- /dev/null +++ b/dev-python/mecab-python/mecab-python-0.991.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/mecab-python/mecab-python-0.991.ebuild,v 1.1 2012/01/21 02:58:14 matsuu Exp $ + +EAPI="4" +PYTHON_DEPEND="2" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="3.* *-jython" + +inherit distutils + +DESCRIPTION="Python binding for MeCab" +HOMEPAGE="http://mecab.sourceforge.net/" +SRC_URI="http://mecab.googlecode.com/files/${P}.tar.gz" + +LICENSE="|| ( BSD LGPL-2.1 GPL-2 )" +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~ppc64 ~x86" +IUSE="" + +DEPEND=">=app-text/mecab-${PV}" +RDEPEND="${DEPEND}" + +DOCS="test.py" +PYTHON_MODNAME="MeCab.py" + +src_install() { + distutils_src_install + dohtml bindings.html || die +} |