# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI=4 PYTHON_DEPEND="2" SUPPORT_PYTHON_ABIS=1 RESTRICT_PYTHON_ABIS="3.* *-jython" inherit distutils DESCRIPTION="A reusable application for the Django web framework" HOMEPAGE="http://pypi.python.org/pypi/ordereddict/1.1" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" KEYWORDS="~amd64 ~x86" IUSE="doc" LICENSE="BSD" SLOT="0" RDEPEND="" DEPEND="${RDEPEND} dev-python/setuptools doc? ( dev-python/sphinx )" src_compile() { distutils_src_compile if use doc; then sphinx-build -b html Doc/ glossary fi } src_install() { distutils_src_install if use doc; then dohtml -r glossary fi }