| 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.27 2005/07/06 20:23:20 agriffis 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 |
| 9 | # distutils-based python modules and their incorporation into |
9 | # distutils-based python modules and their incorporation into |
| 10 | # the Gentoo Linux system. |
10 | # the Gentoo Linux system. |
| 11 | # |
11 | # |
| 12 | # - Features: |
12 | # - Features: |
| 13 | # distutils_src_compile() - does python setup.py build |
13 | # distutils_src_compile() - does python setup.py build |
| 14 | # distutils_src_install() - does python setup.py install and install docs |
14 | # distutils_src_install() - does python setup.py install and install docs |
| … | |
… | |
| 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 | |
|
|
| 24 | |
23 | |
| 25 | # This helps make it possible to add extensions to python slots. |
24 | # This helps make it possible to add extensions to python slots. |
| 26 | # Normally only a -py21- ebuild would set PYTHON_SLOT_VERSION. |
25 | # Normally only a -py21- ebuild would set PYTHON_SLOT_VERSION. |
| 27 | if [ "${PYTHON_SLOT_VERSION}" = 2.1 ] ; then |
26 | if [ "${PYTHON_SLOT_VERSION}" = "2.1" ] ; then |
| 28 | DEPEND="=dev-lang/python-2.1*" |
27 | DEPEND="=dev-lang/python-2.1*" |
| 29 | 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" |
| 30 | else |
32 | else |
| 31 | DEPEND="virtual/python" |
33 | DEPEND="virtual/python" |
| 32 | python="python" |
34 | python="python" |
| 33 | fi |
35 | fi |
| 34 | |
36 | |
| 35 | distutils_src_compile() { |
37 | distutils_src_compile() { |
| 36 | ${python} setup.py build "$@" || die "compilation failed" |
38 | ${python} setup.py build "$@" || die "compilation failed" |
| 37 | } |
39 | } |
| 38 | |
40 | |
| 39 | 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 | |
| 40 | if has_version ">=dev-lang/python-2.3"; then |
50 | if has_version ">=dev-lang/python-2.3"; then |
| 41 | ${python} setup.py install --root=${D} --no-compile "$@" || die |
51 | ${python} setup.py install --root=${D} --no-compile "$@" || die |
| 42 | else |
52 | else |
| 43 | ${python} setup.py install --root=${D} "$@" || die |
53 | ${python} setup.py install --root=${D} "$@" || die |
| 44 | fi |
54 | fi |
| 45 | |
55 | |
| 46 | DDOCS="CHANGELOG COPYRIGHT KNOWN_BUGS MAINTAINERS PKG-INFO" |
56 | DDOCS="CHANGELOG KNOWN_BUGS MAINTAINERS PKG-INFO CONTRIBUTORS TODO NEWS" |
| 47 | DDOCS="${DDOCS} CONTRIBUTORS LICENSE COPYING*" |
|
|
| 48 | DDOCS="${DDOCS} Change* MANIFEST* README*" |
57 | DDOCS="${DDOCS} Change* MANIFEST* README*" |
| 49 | |
58 | |
| 50 | for doc in ${DDOCS}; do |
59 | for doc in ${DDOCS}; do |
| 51 | [ -s "$doc" ] && dodoc $doc |
60 | [ -s "$doc" ] && dodoc $doc |
| 52 | done |
61 | done |
| 53 | |
62 | |
| 54 | [ -n "${DOCS}" ] && dodoc ${DOCS} |
63 | [ -n "${DOCS}" ] && dodoc ${DOCS} |
| 55 | |
64 | |
| 56 | # deprecated! please use DOCS instead. |
65 | # deprecated! please use DOCS instead. |
| 57 | [ -n "${mydoc}" ] && dodoc ${mydoc} |
66 | [ -n "${mydoc}" ] && dodoc ${mydoc} |
| 58 | } |
67 | } |
| 59 | |
68 | |
| 60 | # generic pyc/pyo cleanup script. |
69 | # generic pyc/pyo cleanup script. |
| 61 | |
70 | |
| 62 | distutils_pkg_postrm() { |
71 | distutils_pkg_postrm() { |
| 63 | PYTHON_MODNAME=${PYTHON_MODNAME:-${PN}} |
72 | PYTHON_MODNAME=${PYTHON_MODNAME:-${PN}} |
| 64 | |
73 | |
| 65 | if has_version ">=dev-lang/python-2.3"; then |
74 | if has_version ">=dev-lang/python-2.3"; then |
| … | |
… | |
| 70 | python_mod_cleanup ${moddir} |
79 | python_mod_cleanup ${moddir} |
| 71 | done |
80 | done |
| 72 | done |
81 | done |
| 73 | else |
82 | else |
| 74 | python_mod_cleanup |
83 | python_mod_cleanup |
| 75 | fi |
84 | fi |
| 76 | eend 0 |
85 | eend 0 |
| 77 | fi |
86 | fi |
| 78 | } |
87 | } |
| 79 | |
88 | |
| 80 | # this is a generic optimization, you should override it if your package |
89 | # this is a generic optimization, you should override it if your package |
| 81 | # installs things in another directory |
90 | # installs things in another directory |
| 82 | |
91 | |
| 83 | distutils_pkg_postinst() { |
92 | distutils_pkg_postinst() { |
| 84 | PYTHON_MODNAME=${PYTHON_MODNAME:-${PN}} |
93 | PYTHON_MODNAME=${PYTHON_MODNAME:-${PN}} |
| 85 | |
94 | |
| 86 | if has_version ">=dev-lang/python-2.3"; then |
95 | if has_version ">=dev-lang/python-2.3"; then |
| 87 | python_version |
96 | python_version |
| 88 | for pymod in "${PYTHON_MODNAME}"; do |
97 | for pymod in ${PYTHON_MODNAME}; do |
| 89 | if [ -d "${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/${pymod}" ]; then |
98 | if [ -d "${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/${pymod}" ]; then |
| 90 | python_mod_optimize ${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/${pymod} |
99 | python_mod_optimize ${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/${pymod} |
| 91 | fi |
100 | fi |
| 92 | done |
101 | done |
| 93 | fi |
102 | fi |
| 94 | } |
103 | } |
| 95 | |
104 | |
| 96 | # e.g. insinto ${ROOT}/usr/include/python${PYVER} |
105 | # e.g. insinto ${ROOT}/usr/include/python${PYVER} |
| 97 | |
106 | |
| 98 | distutils_python_version() { |
107 | distutils_python_version() { |
| 99 | local tmpstr="$(${python} -V 2>&1 )" |
108 | python_version |
| 100 | export PYVER_ALL="${tmpstr#Python }" |
|
|
| 101 | |
|
|
| 102 | export PYVER_MAJOR=$(echo ${PYVER_ALL} | cut -d. -f1) |
|
|
| 103 | export PYVER_MINOR=$(echo ${PYVER_ALL} | cut -d. -f2) |
|
|
| 104 | export PYVER_MICRO=$(echo ${PYVER_ALL} | cut -d. -f3-) |
|
|
| 105 | export PYVER="${PYVER_MAJOR}.${PYVER_MINOR}" |
|
|
| 106 | } |
109 | } |
| 107 | |
110 | |
| 108 | # checks for if tkinter support is compiled into python |
111 | # checks for if tkinter support is compiled into python |
| 109 | distutils_python_tkinter() { |
112 | distutils_python_tkinter() { |
| 110 | if ! python -c "import Tkinter" >/dev/null 2>&1; then |
113 | if ! python -c "import Tkinter" >/dev/null 2>&1; then |
| 111 | eerror "You need to recompile python with Tkinter support." |
114 | eerror "You need to recompile python with Tkinter support." |
| 112 | eerror "That means: USE='tcltk' emerge python" |
115 | eerror "Try adding 'dev-lang/python tk' to:" |
|
|
116 | eerror "/etc/portage/package.use" |
| 113 | echo |
117 | echo |
| 114 | die "missing tkinter support with installed python" |
118 | die "missing tkinter support with installed python" |
| 115 | fi |
119 | fi |
| 116 | } |
120 | } |
| 117 | |
121 | |
| 118 | |
|
|
| 119 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_postrm |
122 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_postrm |
| 120 | |
|
|