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 | d40b3911656be4508027ab159305f2bcd19d89f6 (patch) | |
tree | 6b4447df15b2855cab3973fb5be649f68bc0c299 /dev-python | |
parent | yay, should work now :) (diff) | |
download | historical-d40b3911656be4508027ab159305f2bcd19d89f6.tar.gz historical-d40b3911656be4508027ab159305f2bcd19d89f6.tar.bz2 historical-d40b3911656be4508027ab159305f2bcd19d89f6.zip |
ebuild submitted by karltk
Diffstat (limited to 'dev-python')
-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 \{\} \; +} + |