blob: 000e70b217ca2095dc4cd0c8889801a9aa1e9f8d (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/happydoc/happydoc-2.0.1.ebuild,v 1.9 2002/12/15 10:44:18 bjb Exp $
# HappyDoc version numbering is not very compatible with portage -- kludgeing
S=${WORKDIR}/HappyDoc-r2_0_1/
DESCRIPTION="HappyDoc is a tool for extracting documentation from Python sourcecode."
SRC_URI="http://unc.dl.sourceforge.net/sourceforge/happydoc/HappyDoc_r2_0_1.tar.gz"
HOMEPAGE="http://happydoc.sourceforge.net/"
DEPEND="virtual/python"
SLOT="0"
LICENSE="as-is"
KEYWORDS="x86 sparc alpha"
src_compile() {
python setup.py build || die
}
src_install() {
python setup.py install --root=${D} --prefix=/usr || die
dodoc INSTALL.txt LICENSE.txt CHANGES.txt README.txt test_happydoc.py
dohtml -r srcdocs/*
}
|