summaryrefslogtreecommitdiff
blob: 8f2d833c9aadb8574d47543660e5966fdb7ae94c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Copyright 1999-2006 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.92.ebuild,v 1.1 2006/07/10 06:02:49 usata Exp $

inherit distutils

DESCRIPTION="Python Bindings for MeCab"
HOMEPAGE="http://mecab.sourceforge.jp/"
SRC_URI="mirror://sourceforge.jp/mecab/20900/${P}.tar.gz"

LICENSE="|| ( GPL-2 LGPL-2.1 BSD )"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

DEPEND=">=app-text/mecab-${PV}"

DOCS="test.py"

src_test() {
	python test.py || die "test.py failed"
}


src_install() {
	DOCS="test.py"
	distutils_src_install
	dohtml bindings.html || die "dohtml failed"
}