# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ NEED_PYTHON=2.3 inherit distutils DESCRIPTION="A flexible template engine based on Django templates." HOMEPAGE="http://jinja.pocoo.org/" MY_PN="Jinja" MY_P="${MY_PN}-${PV}" SRC_URI="http://pypi.python.org/packages/source/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" S="${WORKDIR}/${MY_P}" DEPEND="dev-python/setuptools" RDEPEND="" IUSE="doc" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86" src_install() { distutils_src_install if use doc; then dohtml docs/html/* dodoc docs/src/* fi } pkg_preinst() { # installed at the completely wrong place rm -r "${D}/usr/docs" }