# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-web/twisted-web2-0.1.ebuild,v 1.0 2005/09/23 09:03:19 humpback Exp $ inherit distutils # for alphas,.. MY_PV="${PV/_alpha/a}" MY_PN="TwistedWeb2" MY_P="${MY_PN}-${MY_PV}" DESCRIPTION="Twisted.Web2 is the next generation Web Server Framework" HOMEPAGE="http://twistedmatrix.com/projects/web2/" SRC_URI="http://tmrc.mit.edu/mirror/twisted/Web2/${MY_P}.tar.bz2" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~ppc ~sparc ~x86 ~amd64" IUSE="doc" DEPEND=">=dev-python/twisted-2.0.0" S=${WORKDIR}/${MY_P} src_install() { distutils_src_install if use doc; then dodir /usr/share/doc/${P} cp -r ${S}/docs ${D}/usr/share/doc/${P}/ fi }