diff options
Diffstat (limited to 'dev-python/epydoc/epydoc-2.0.ebuild')
-rw-r--r-- | dev-python/epydoc/epydoc-2.0.ebuild | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/dev-python/epydoc/epydoc-2.0.ebuild b/dev-python/epydoc/epydoc-2.0.ebuild new file mode 100644 index 000000000000..60a9fa5bbe6c --- /dev/null +++ b/dev-python/epydoc/epydoc-2.0.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/epydoc/epydoc-2.0.ebuild,v 1.1 2004/01/10 04:48:49 aether Exp $ + +inherit distutils + +DESCRIPTION="tool for generating API documentation for Python modules, based on their docstrings" +HOMEPAGE="http://epydoc.sourceforge.net/" +SRC_URI="mirror://sourceforge/epydoc/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="x86" + +RDEPEND="virtual/python" + +src_install() { + distutils_src_install + + # copy docs (using cp -r cuz of some sub-dirs) + cp -r ${S}/doc/* ${D}/usr/share/doc/${PF}/ + prepalldocs + doman ${S}/man/* +} |