| 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.34 2006/08/16 16:24:20 liquidx Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/distutils.eclass,v 1.39 2007/05/01 13:44:37 betelgeuse 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 |
| … | |
… | |
| 17 | # |
17 | # |
| 18 | # - Variables: |
18 | # - Variables: |
| 19 | # PYTHON_SLOT_VERSION - for Zope support |
19 | # PYTHON_SLOT_VERSION - for Zope support |
| 20 | # DOCS - additional DOCS |
20 | # DOCS - additional DOCS |
| 21 | |
21 | |
| 22 | inherit python eutils |
22 | inherit python multilib eutils |
| 23 | |
23 | |
| 24 | # This helps make it possible to add extensions to python slots. |
24 | # This helps make it possible to add extensions to python slots. |
| 25 | # Normally only a -py21- ebuild would set PYTHON_SLOT_VERSION. |
25 | # Normally only a -py21- ebuild would set PYTHON_SLOT_VERSION. |
| 26 | if [ "${PYTHON_SLOT_VERSION}" = "2.1" ] ; then |
26 | if [ "${PYTHON_SLOT_VERSION}" = "2.1" ] ; then |
| 27 | DEPEND="=dev-lang/python-2.1*" |
27 | DEPEND="=dev-lang/python-2.1*" |
| … | |
… | |
| 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 NEWS" |
| 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 |
| … | |
… | |
| 111 | |
110 | |
| 112 | # checks for if tkinter support is compiled into python |
111 | # checks for if tkinter support is compiled into python |
| 113 | distutils_python_tkinter() { |
112 | distutils_python_tkinter() { |
| 114 | if ! python -c "import Tkinter" >/dev/null 2>&1; then |
113 | if ! python -c "import Tkinter" >/dev/null 2>&1; then |
| 115 | eerror "You need to recompile python with Tkinter support." |
114 | eerror "You need to recompile python with Tkinter support." |
| 116 | eerror "Try adding 'dev-lang/python X tk' to:" |
115 | eerror "Try adding 'dev-lang/python tk' to:" |
| 117 | eerror "/etc/portage/package.use" |
116 | eerror "/etc/portage/package.use" |
| 118 | echo |
117 | echo |
| 119 | die "missing tkinter support with installed python" |
118 | die "missing tkinter support with installed python" |
| 120 | fi |
119 | fi |
| 121 | } |
120 | } |