diff options
author | 2001-11-10 12:19:00 +0000 | |
---|---|---|
committer | 2001-11-10 12:19:00 +0000 | |
commit | 8b0de2854b90f275160eb5d068717f5e217739b1 (patch) | |
tree | f52504be46ffea88b90590fe18b64681c4777c52 /dev-python/python-docs | |
parent | A=-fix, try->die, tab-fixes, stylefixes, ... (diff) | |
download | gentoo-2-8b0de2854b90f275160eb5d068717f5e217739b1.tar.gz gentoo-2-8b0de2854b90f275160eb5d068717f5e217739b1.tar.bz2 gentoo-2-8b0de2854b90f275160eb5d068717f5e217739b1.zip |
A=-fix, try->die, tab-fixes, stylefixes, ...
Diffstat (limited to 'dev-python/python-docs')
-rw-r--r-- | dev-python/python-docs/python-docs-2.0.1.ebuild | 20 |
1 files changed, 9 insertions, 11 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 index 10b347df01b7..e04a0c77be28 100644 --- a/dev-python/python-docs/python-docs-2.0.1.ebuild +++ b/dev-python/python-docs/python-docs-2.0.1.ebuild @@ -1,25 +1,23 @@ # 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 $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-docs/python-docs-2.0.1.ebuild,v 1.2 2001/11/10 12:14:29 hallski 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} + 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 \{\} \; + 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 \{\} \; } - |