| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2004 Gentoo Foundation |
| 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.33 2006/08/14 21:01:01 liquidx Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/distutils.eclass,v 1.36 2006/10/14 20:27:21 swegener 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 |
| … | |
… | |
| 44 | # a package uses distutils but does not install anything |
44 | # a package uses distutils but does not install anything |
| 45 | # in site-packages. (eg. dev-java/java-config-2.x) |
45 | # in site-packages. (eg. dev-java/java-config-2.x) |
| 46 | # - liquidx (14/08/2006) |
46 | # - liquidx (14/08/2006) |
| 47 | pylibdir="$(${python} -c 'from distutils.sysconfig import get_python_lib; print get_python_lib()')" |
47 | pylibdir="$(${python} -c 'from distutils.sysconfig import get_python_lib; print get_python_lib()')" |
| 48 | [ -n "${pylibdir}" ] && dodir "${pylibdir}" |
48 | [ -n "${pylibdir}" ] && dodir "${pylibdir}" |
| 49 | |
49 | |
| 50 | if has_version ">=dev-lang/python-2.3"; then |
50 | if has_version ">=dev-lang/python-2.3"; then |
| 51 | ${python} setup.py install --root=${D} --no-compile "$@" || die |
51 | ${python} setup.py install --root=${D} --no-compile "$@" || die |
| 52 | else |
52 | else |
| 53 | ${python} setup.py install --root=${D} "$@" || die |
53 | ${python} setup.py install --root=${D} "$@" || die |
| 54 | fi |
54 | fi |
| 55 | |
55 | |
| 56 | DDOCS="CHANGELOG COPYRIGHT KNOWN_BUGS MAINTAINERS PKG-INFO" |
56 | DDOCS="CHANGELOG KNOWN_BUGS MAINTAINERS PKG-INFO CONTRIBUTORS TODO" |
| 57 | DDOCS="${DDOCS} CONTRIBUTORS TODO" |
|
|
| 58 | DDOCS="${DDOCS} Change* MANIFEST* README*" |
57 | DDOCS="${DDOCS} Change* MANIFEST* README*" |
| 59 | |
58 | |
| 60 | for doc in ${DDOCS}; do |
59 | for doc in ${DDOCS}; do |
| 61 | [ -s "$doc" ] && dodoc $doc |
60 | [ -s "$doc" ] && dodoc $doc |
| 62 | done |
61 | done |
| … | |
… | |
| 104 | } |
103 | } |
| 105 | |
104 | |
| 106 | # e.g. insinto ${ROOT}/usr/include/python${PYVER} |
105 | # e.g. insinto ${ROOT}/usr/include/python${PYVER} |
| 107 | |
106 | |
| 108 | distutils_python_version() { |
107 | distutils_python_version() { |
| 109 | local tmpstr="$(${python} -V 2>&1 )" |
108 | python_version |
| 110 | export PYVER_ALL="${tmpstr#Python }" |
|
|
| 111 | |
|
|
| 112 | export PYVER_MAJOR=$(echo ${PYVER_ALL} | cut -d. -f1) |
|
|
| 113 | export PYVER_MINOR=$(echo ${PYVER_ALL} | cut -d. -f2) |
|
|
| 114 | export PYVER_MICRO=$(echo ${PYVER_ALL} | cut -d. -f3-) |
|
|
| 115 | export PYVER="${PYVER_MAJOR}.${PYVER_MINOR}" |
|
|
| 116 | } |
109 | } |
| 117 | |
110 | |
| 118 | # checks for if tkinter support is compiled into python |
111 | # checks for if tkinter support is compiled into python |
| 119 | distutils_python_tkinter() { |
112 | distutils_python_tkinter() { |
| 120 | if ! python -c "import Tkinter" >/dev/null 2>&1; then |
113 | if ! python -c "import Tkinter" >/dev/null 2>&1; then |