28 lines
698 B
Bash
28 lines
698 B
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-python/nltk/nltk-2.0.1_rc1.ebuild,v 1.4 2012/02/25 16:25:58 patrick Exp $
|
|
|
|
EAPI=3
|
|
|
|
PYTHON_DEPEND="2"
|
|
SUPPORT_PYTHON_ABIS=1
|
|
RESTRICT_PYTHON_ABIS="3.* 2.7-pypy-*"
|
|
|
|
inherit distutils
|
|
|
|
MY_P=${P/_rc/rc}
|
|
DESCRIPTION="Natural Language Toolkit"
|
|
SRC_URI="http://nltk.googlecode.com/files/${MY_P}.zip"
|
|
HOMEPAGE="http://nltk.org/"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
|
|
IUSE=""
|
|
|
|
RDEPEND="dev-python/numpy
|
|
dev-python/pyyaml"
|
|
DEPEND="${RDEPEND}
|
|
app-arch/unzip"
|
|
|
|
S=${WORKDIR}/${MY_P}
|