| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/dev-python/mecab-python/mecab-python-0.98.ebuild,v 1.4 2012/04/05 05:16:04 jdhore Exp $
|
| 4 |
|
| 5 |
EAPI="3"
|
| 6 |
PYTHON_DEPEND="2"
|
| 7 |
SUPPORT_PYTHON_ABIS="1"
|
| 8 |
RESTRICT_PYTHON_ABIS="3.* *-jython"
|
| 9 |
|
| 10 |
inherit distutils
|
| 11 |
|
| 12 |
DESCRIPTION="Python binding for MeCab"
|
| 13 |
HOMEPAGE="http://mecab.sourceforge.net/"
|
| 14 |
SRC_URI="mirror://sourceforge/${PN/-*}/${P}.tar.gz"
|
| 15 |
|
| 16 |
LICENSE="|| ( BSD LGPL-2.1 GPL-2 )"
|
| 17 |
SLOT="0"
|
| 18 |
KEYWORDS="amd64 ~ia64 ppc64 x86"
|
| 19 |
IUSE=""
|
| 20 |
|
| 21 |
DEPEND=">=app-text/mecab-${PV}"
|
| 22 |
RDEPEND="${DEPEND}"
|
| 23 |
|
| 24 |
DOCS="test.py"
|
| 25 |
PYTHON_MODNAME="MeCab.py"
|
| 26 |
|
| 27 |
src_install() {
|
| 28 |
distutils_src_install
|
| 29 |
dohtml bindings.html || die
|
| 30 |
}
|