summaryrefslogtreecommitdiff
blob: 9b1f977c936de488cffcee2c1e5389d8b94605b5 (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-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/dev-python/epydoc/epydoc-1.1.ebuild,v 1.5 2003/06/22 12:15:59 liquidx Exp $

inherit distutils

S=${WORKDIR}/${P}
DESCRIPTION=" Epydoc is a tool for generating API documentation for Python modules, based on their docstrings."
SRC_URI="mirror://sourceforge/epydoc/${P}.tar.gz"
HOMEPAGE="http://epydoc.sourceforge.net/"
LICENSE="MIT"
SLOT="0"
RDEPEND="virtual/python"
DEPEND="$DEPEND"
KEYWORDS="x86"
IUSE=""

src_install() {
    distutils_src_install

    # copy docs (using cp -r cuz of some sub-dirs)
    cp -r ${S}/doc/* ${D}/usr/share/doc/${P}/
    
    # man-pages
    doman ${S}/man/*
   
}