blob: 47db4159d9b9e9e450855e0973da0cbed03d661f (
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
29
30
31
32
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/happydoc/happydoc-2.1.ebuild,v 1.10 2004/06/25 01:31:00 agriffis Exp $
inherit distutils
MY_PN="HappyDoc"
MY_PV=${PV//./_}
S=${WORKDIR}/${MY_PN}-r${MY_PV}
DESCRIPTION="tool for extracting documentation from Python sourcecode"
SRC_URI="mirror://sourceforge/${PN}/${MY_PN}_r${MY_PV}.tar.gz"
HOMEPAGE="http://happydoc.sourceforge.net/"
SLOT="0"
LICENSE="as-is"
KEYWORDS="x86 sparc alpha"
IUSE=""
DEPEND="virtual/python"
src_install() {
mydoc="INSTALL.txt LICENSE.txt CHANGES.txt README.txt"
distutils_src_install
insinto /usr/share/doc/${PF}
doins test_happydoc.py
# manually install its weird documentation tree
dohtml -r srcdocs/${MY_PN}-r${MY_PV}/*
dohtml srcdocs/index.html
dohtml -r srcdocs/home/dhellmann/Personal/Devel/HappyDoc/dist/HappyDoc-r2_1/
}
|