36 lines
1,018 B
Bash
36 lines
1,018 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.10 2012/09/26 01:13:57 hasufell Exp $
|
|
|
|
EAPI="3"
|
|
PYTHON_DEPEND="2"
|
|
SUPPORT_PYTHON_ABIS="1"
|
|
RESTRICT_PYTHON_ABIS="3.*"
|
|
DISTUTILS_SRC_TEST="setup.py"
|
|
|
|
inherit eutils 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_prepare() {
|
|
epatch "${FILESDIR}"/${P}-setuptools.patch
|
|
distutils_src_prepare
|
|
}
|
|
|
|
src_install() {
|
|
distutils_src_install
|
|
dohtml -r doc/* || die "dohtml failed"
|
|
}
|