blob: cc729961554b1ff116b0911187d61fbfb92a74f5 (
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 kolab related scripts "
HOMEPAGE="http://projects.gunnarwrobel.de/scripts"
SRC_URI="http://dev.gentoo.org/~wrobel/${PN}/${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
# }
|