diff options
author | Chad Huneycutt <chadh@gentoo.org> | 2001-08-07 01:39:54 +0000 |
---|---|---|
committer | Chad Huneycutt <chadh@gentoo.org> | 2001-08-07 01:39:54 +0000 |
commit | f98e4455cc27552b7646e9b32ea408f082dd47b7 (patch) | |
tree | cc1b9025b2e5024ae3e90e0b344ee5d86bfafa37 /dev-python/python-docs | |
parent | yay, should work now :) (diff) | |
download | gentoo-2-f98e4455cc27552b7646e9b32ea408f082dd47b7.tar.gz gentoo-2-f98e4455cc27552b7646e9b32ea408f082dd47b7.tar.bz2 gentoo-2-f98e4455cc27552b7646e9b32ea408f082dd47b7.zip |
ebuild submitted by karltk
Diffstat (limited to 'dev-python/python-docs')
-rw-r--r-- | dev-python/python-docs/python-docs-2.0.1.ebuild | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/dev-python/python-docs/python-docs-2.0.1.ebuild b/dev-python/python-docs/python-docs-2.0.1.ebuild new file mode 100644 index 000000000000..10b347df01b7 --- /dev/null +++ b/dev-python/python-docs/python-docs-2.0.1.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Karl Trygve Kalleberg <karltk@prosalg.no> +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-docs/python-docs-2.0.1.ebuild,v 1.1 2001/08/07 01:39:54 chadh Exp $ + +A=html-2.0.1.tar.bz2 +S=${WORKDIR}/${P} +DESCRIPTION="HTML documentation for Python" +SRC_URI="http://www.python.org/ftp/python/doc/2.0.1/html-2.0.1.tar.bz2" +HOMEPAGE="http://www.python.org/doc/2.0.1/" + +src_unpack() { + mkdir ${S} + cd ${S} + unpack ${A} +} + +src_install() { + docinto html + cp -R ${S}/* ${D}/usr/share/doc/${P}/html + chown -R root.root ${D}/usr/share/doc/${P}/html + find ${D}/usr/share/doc/${P}/html -type d -exec chmod 0755 \{\} \; + find ${D}/usr/share/doc/${P}/html -type f -exec chmod 0644 \{\} \; +} + |