31 lines
924 B
Bash
31 lines
924 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/Babel/Babel-0.9.6.ebuild,v 1.9 2012/05/09 00:15:16 aballier Exp $
|
|
|
|
EAPI="3"
|
|
PYTHON_DEPEND="2"
|
|
SUPPORT_PYTHON_ABIS="1"
|
|
RESTRICT_PYTHON_ABIS="3.*"
|
|
DISTUTILS_SRC_TEST="setup.py"
|
|
|
|
inherit distutils
|
|
|
|
DESCRIPTION="A collection of tools for internationalizing Python applications"
|
|
HOMEPAGE="http://babel.edgewall.org/ http://pypi.python.org/pypi/Babel"
|
|
SRC_URI="http://ftp.edgewall.com/pub/babel/${P}.tar.gz"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
|
|
IUSE=""
|
|
|
|
DEPEND="dev-python/pytz
|
|
dev-python/setuptools"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
PYTHON_MODNAME="babel"
|
|
|
|
src_install() {
|
|
distutils_src_install
|
|
dohtml -r doc/* || die "dohtml failed"
|
|
}
|