1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/distutils.eclass,v 1.19 2003/10/17 07:14:26 liquidx Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/distutils.eclass,v 1.20 2003/10/19 11:40:25 lanius Exp $ |
4 | # |
4 | # |
5 | # Author: Jon Nelson <jnelson@gentoo.org> |
5 | # Author: Jon Nelson <jnelson@gentoo.org> |
6 | # Current Maintainer: Alastair Tse <liquidx@gentoo.org> |
6 | # Current Maintainer: Alastair Tse <liquidx@gentoo.org> |
7 | # |
7 | # |
8 | # The distutils eclass is designed to allow easier installation of |
8 | # The distutils eclass is designed to allow easier installation of |
… | |
… | |
42 | if has_version ">=dev-lang/python-2.3"; then |
42 | if has_version ">=dev-lang/python-2.3"; then |
43 | ${python} setup.py install --root=${D} --no-compile "$@" || die |
43 | ${python} setup.py install --root=${D} --no-compile "$@" || die |
44 | else |
44 | else |
45 | ${python} setup.py install --root=${D} "$@" || die |
45 | ${python} setup.py install --root=${D} "$@" || die |
46 | fi |
46 | fi |
47 | |
47 | |
48 | dodoc CHANGELOG COPYRIGHT KNOWN_BUGS MAINTAINERS PKG-INFO |
48 | DDOCS="CHANGELOG COPYRIGHT KNOWN_BUGS MAINTAINERS PKG-INFO" |
49 | dodoc CONTRIBUTORS LICENSE COPYING* |
49 | DDOCS="${DDOCS} CONTRIBUTORS LICENSE COPYING*" |
50 | dodoc Change* MANIFEST* README* |
50 | DDOCS="${DDOCS} Change* MANIFEST* README*" |
51 | |
51 | |
|
|
52 | for doc in ${DDOCS}; do |
|
|
53 | [ -s "$doc" ] && dodoc $doc |
|
|
54 | done |
|
|
55 | |
52 | [ -n "${DOCS}" ] && dodoc ${DOCS} |
56 | [ -n "${DOCS}" ] && dodoc ${DOCS} |
53 | |
57 | |
54 | # deprecated! please use DOCS instead. |
58 | # deprecated! please use DOCS instead. |
55 | [ -n "${mydoc}" ] && dodoc ${mydoc} |
59 | [ -n "${mydoc}" ] && dodoc ${mydoc} |
56 | } |
60 | } |