diff options
Diffstat (limited to 'dev-python/testoob/testoob-1.0.ebuild')
-rw-r--r-- | dev-python/testoob/testoob-1.0.ebuild | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/dev-python/testoob/testoob-1.0.ebuild b/dev-python/testoob/testoob-1.0.ebuild new file mode 100644 index 000000000000..2a1666d7b720 --- /dev/null +++ b/dev-python/testoob/testoob-1.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/testoob/testoob-1.0.ebuild,v 1.1 2006/04/30 18:25:52 lucass Exp $ + +inherit distutils eutils + +DESCRIPTION="Advanced Python testing framework" +HOMEPAGE="http://testoob.sourceforge.net/" +SRC_URI="mirror://sourceforge/testoob/${P}.tar.bz2" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~ia64 ~sparc ~x86" +IUSE="pdf threads" + +DEPEND="virtual/python" +RDEPEND="${DEPEND} + dev-python/4suite + pdf? ( dev-python/reportlab ) + threads? ( dev-python/twisted )" + +DOCS="docs/*" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}/${P}-fix.diff" +} |