| 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.30 2005/12/07 17:57:12 marienz Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/distutils.eclass,v 1.33 2006/08/14 21:01:01 liquidx 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 |
| … | |
… | |
| 21 | |
21 | |
| 22 | inherit python eutils |
22 | inherit python 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*" |
| 28 | python="python2.1" |
28 | python="python2.1" |
|
|
29 | elif [ "${PYTHON_SLOT_VERSION}" = "2.3" ] ; then |
|
|
30 | DEPEND="=dev-lang/python-2.3*" |
|
|
31 | python="python2.3" |
| 29 | else |
32 | else |
| 30 | DEPEND="virtual/python" |
33 | DEPEND="virtual/python" |
| 31 | python="python" |
34 | python="python" |
| 32 | fi |
35 | fi |
| 33 | |
36 | |
| 34 | distutils_src_compile() { |
37 | distutils_src_compile() { |
| 35 | ${python} setup.py build "$@" || die "compilation failed" |
38 | ${python} setup.py build "$@" || die "compilation failed" |
| 36 | } |
39 | } |
| 37 | |
40 | |
| 38 | distutils_src_install() { |
41 | distutils_src_install() { |
|
|
42 | |
|
|
43 | # need this for python-2.5 + setuptools in cases where |
|
|
44 | # a package uses distutils but does not install anything |
|
|
45 | # in site-packages. (eg. dev-java/java-config-2.x) |
|
|
46 | # - liquidx (14/08/2006) |
|
|
47 | pylibdir="$(${python} -c 'from distutils.sysconfig import get_python_lib; print get_python_lib()')" |
|
|
48 | [ -n "${pylibdir}" ] && dodir "${pylibdir}" |
|
|
49 | |
| 39 | if has_version ">=dev-lang/python-2.3"; then |
50 | if has_version ">=dev-lang/python-2.3"; then |
| 40 | ${python} setup.py install --root=${D} --no-compile "$@" || die |
51 | ${python} setup.py install --root=${D} --no-compile "$@" || die |
| 41 | else |
52 | else |
| 42 | ${python} setup.py install --root=${D} "$@" || die |
53 | ${python} setup.py install --root=${D} "$@" || die |
| 43 | fi |
54 | fi |
| … | |
… | |
| 106 | |
117 | |
| 107 | # checks for if tkinter support is compiled into python |
118 | # checks for if tkinter support is compiled into python |
| 108 | distutils_python_tkinter() { |
119 | distutils_python_tkinter() { |
| 109 | if ! python -c "import Tkinter" >/dev/null 2>&1; then |
120 | if ! python -c "import Tkinter" >/dev/null 2>&1; then |
| 110 | eerror "You need to recompile python with Tkinter support." |
121 | eerror "You need to recompile python with Tkinter support." |
| 111 | eerror "That means: USE='tcltk' emerge python" |
122 | eerror "Try adding 'dev-lang/python X tk' to:" |
|
|
123 | eerror "/etc/portage/package.use" |
| 112 | echo |
124 | echo |
| 113 | die "missing tkinter support with installed python" |
125 | die "missing tkinter support with installed python" |
| 114 | fi |
126 | fi |
| 115 | } |
127 | } |
| 116 | |
128 | |