blob: 5c4c11eaf8e0f13abd171fa5bddf8432242e822e (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyenchant/pyenchant-1.1.5.ebuild,v 1.5 2007/07/11 06:19:47 mr_bones_ Exp $
inherit distutils
DESCRIPTION="Python wrapper for the Enchant spellchecking wrapper library"
SRC_URI="mirror://sourceforge/pyenchant/${P}.tar.gz"
HOMEPAGE="http://pyenchant.sourceforge.net"
IUSE=""
SLOT="0"
KEYWORDS="amd64 x86"
LICENSE="LGPL-2.1"
DEPEND=">=dev-lang/python-2.3
>=app-text/enchant-1.1.6
>=dev-python/setuptools-0.6_alpha11"
DOCS="TODO.txt"
src_test() {
"${python}" setup.py test || die "test failed"
}
|