blob: 9818ef747b84f53d3bc63977909375ee634fcbde (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyunit/pyunit-1.4.1.ebuild,v 1.2 2003/02/13 11:39:03 vapier Exp $
DESCRIPTION="PyUnit - the standard unit testing framework for Python"
HOMEPAGE="http://pyunit.sourceforge.net/"
SRC_URI="http://unc.dl.sourceforge.net/sourceforge/pyunit/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="x86 ppc"
IUSE=""
DEPEND=">=python-2.0"
RDEPEND=""
S="${WORKDIR}/${P}"
inherit distutils
src_install() {
mydoc="CHANGES examples/*"
distutils_src_install
dohtml -r doc/PyUnit.html
}
|