| 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.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*" |
| 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 |
| 44 | |
55 | |
| 45 | DDOCS="CHANGELOG COPYRIGHT KNOWN_BUGS MAINTAINERS PKG-INFO" |
56 | DDOCS="CHANGELOG KNOWN_BUGS MAINTAINERS PKG-INFO CONTRIBUTORS TODO NEWS" |
| 46 | DDOCS="${DDOCS} CONTRIBUTORS TODO" |
|
|
| 47 | DDOCS="${DDOCS} Change* MANIFEST* README*" |
57 | DDOCS="${DDOCS} Change* MANIFEST* README*" |
| 48 | |
58 | |
| 49 | for doc in ${DDOCS}; do |
59 | for doc in ${DDOCS}; do |
| 50 | [ -s "$doc" ] && dodoc $doc |
60 | [ -s "$doc" ] && dodoc $doc |
| 51 | done |
61 | done |
| … | |
… | |
| 93 | } |
103 | } |
| 94 | |
104 | |
| 95 | # e.g. insinto ${ROOT}/usr/include/python${PYVER} |
105 | # e.g. insinto ${ROOT}/usr/include/python${PYVER} |
| 96 | |
106 | |
| 97 | distutils_python_version() { |
107 | distutils_python_version() { |
| 98 | local tmpstr="$(${python} -V 2>&1 )" |
108 | python_version |
| 99 | export PYVER_ALL="${tmpstr#Python }" |
|
|
| 100 | |
|
|
| 101 | export PYVER_MAJOR=$(echo ${PYVER_ALL} | cut -d. -f1) |
|
|
| 102 | export PYVER_MINOR=$(echo ${PYVER_ALL} | cut -d. -f2) |
|
|
| 103 | export PYVER_MICRO=$(echo ${PYVER_ALL} | cut -d. -f3-) |
|
|
| 104 | export PYVER="${PYVER_MAJOR}.${PYVER_MINOR}" |
|
|
| 105 | } |
109 | } |
| 106 | |
110 | |
| 107 | # checks for if tkinter support is compiled into python |
111 | # checks for if tkinter support is compiled into python |
| 108 | distutils_python_tkinter() { |
112 | distutils_python_tkinter() { |
| 109 | if ! python -c "import Tkinter" >/dev/null 2>&1; then |
113 | if ! python -c "import Tkinter" >/dev/null 2>&1; then |
| 110 | eerror "You need to recompile python with Tkinter support." |
114 | eerror "You need to recompile python with Tkinter support." |
| 111 | eerror "That means: USE='tcltk' emerge python" |
115 | eerror "Try adding 'dev-lang/python tk' to:" |
|
|
116 | eerror "/etc/portage/package.use" |
| 112 | echo |
117 | echo |
| 113 | die "missing tkinter support with installed python" |
118 | die "missing tkinter support with installed python" |
| 114 | fi |
119 | fi |
| 115 | } |
120 | } |
| 116 | |
121 | |