summaryrefslogtreecommitdiff
blob: b353afb3a37a26f6a2d66a12d6d5914fc12b9c92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit eutils distutils

DESCRIPTION="A python library of supporting packages "
HOMEPAGE="http://projects.gunnarwrobel.de/scripts"
SRC_URI="http://build.pardus.de/downloads/${PF}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
S=${WORKDIR}/${PF}

DEPEND="net-zope/zopeinterface"

src_test() {
	cd ${S}
	einfo "Running ${PN} doctests..."
	if ! PYTHONPATH="." ${python} ${PN}/tests/dtest.py; then
		eerror "DocTests failed - please submit a bug report"
		die "DocTesting failed!"
	fi
}