| 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.28 2005/07/11 15:08:06 swegener Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/distutils.eclass,v 1.45 2008/01/23 22:19:04 hawking 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 |
|
|
36 | |
|
|
37 | distutils_src_unpack() { |
|
|
38 | unpack ${A} |
|
|
39 | cd "${S}" |
|
|
40 | |
|
|
41 | # remove ez_setup stuff to prevent packages |
|
|
42 | # from installing setuptools on their own |
|
|
43 | rm -rf ez_setup* |
|
|
44 | echo "def use_setuptools(*args, **kwargs): pass" > ez_setup.py |
|
|
45 | } |
| 33 | |
46 | |
| 34 | distutils_src_compile() { |
47 | distutils_src_compile() { |
| 35 | ${python} setup.py build "$@" || die "compilation failed" |
48 | ${python} setup.py build "$@" || die "compilation failed" |
| 36 | } |
49 | } |
| 37 | |
50 | |
| 38 | distutils_src_install() { |
51 | distutils_src_install() { |
|
|
52 | |
|
|
53 | # need this for python-2.5 + setuptools in cases where |
|
|
54 | # a package uses distutils but does not install anything |
|
|
55 | # in site-packages. (eg. dev-java/java-config-2.x) |
|
|
56 | # - liquidx (14/08/2006) |
|
|
57 | pylibdir="$(${python} -c 'from distutils.sysconfig import get_python_lib; print get_python_lib()')" |
|
|
58 | [ -n "${pylibdir}" ] && dodir "${pylibdir}" |
|
|
59 | |
| 39 | if has_version ">=dev-lang/python-2.3"; then |
60 | if has_version ">=dev-lang/python-2.3"; then |
| 40 | ${python} setup.py install --root=${D} --no-compile "$@" || die |
61 | ${python} setup.py install --root=${D} --no-compile "$@" || die |
| 41 | else |
62 | else |
| 42 | ${python} setup.py install --root=${D} "$@" || die |
63 | ${python} setup.py install --root=${D} "$@" || die |
| 43 | fi |
64 | fi |
| 44 | |
65 | |
| 45 | DDOCS="CHANGELOG COPYRIGHT KNOWN_BUGS MAINTAINERS PKG-INFO" |
66 | DDOCS="CHANGELOG KNOWN_BUGS MAINTAINERS PKG-INFO CONTRIBUTORS TODO NEWS" |
| 46 | DDOCS="${DDOCS} CONTRIBUTORS LICENSE COPYING*" |
|
|
| 47 | DDOCS="${DDOCS} Change* MANIFEST* README*" |
67 | DDOCS="${DDOCS} Change* MANIFEST* README* AUTHORS" |
| 48 | |
68 | |
| 49 | for doc in ${DDOCS}; do |
69 | for doc in ${DDOCS}; do |
| 50 | [ -s "$doc" ] && dodoc $doc |
70 | [ -s "$doc" ] && dodoc $doc |
| 51 | done |
71 | done |
| 52 | |
72 | |
| 53 | [ -n "${DOCS}" ] && dodoc ${DOCS} |
73 | [ -n "${DOCS}" ] && dodoc ${DOCS} |
| 54 | |
|
|
| 55 | # deprecated! please use DOCS instead. |
|
|
| 56 | [ -n "${mydoc}" ] && dodoc ${mydoc} |
|
|
| 57 | } |
74 | } |
| 58 | |
75 | |
| 59 | # generic pyc/pyo cleanup script. |
76 | # generic pyc/pyo cleanup script. |
| 60 | |
77 | |
| 61 | distutils_pkg_postrm() { |
78 | distutils_pkg_postrm() { |
| … | |
… | |
| 80 | # installs things in another directory |
97 | # installs things in another directory |
| 81 | |
98 | |
| 82 | distutils_pkg_postinst() { |
99 | distutils_pkg_postinst() { |
| 83 | PYTHON_MODNAME=${PYTHON_MODNAME:-${PN}} |
100 | PYTHON_MODNAME=${PYTHON_MODNAME:-${PN}} |
| 84 | |
101 | |
|
|
102 | # strip trailing slash |
|
|
103 | myroot="${ROOT%/}" |
|
|
104 | |
| 85 | if has_version ">=dev-lang/python-2.3"; then |
105 | if has_version ">=dev-lang/python-2.3"; then |
| 86 | python_version |
106 | python_version |
| 87 | for pymod in "${PYTHON_MODNAME}"; do |
107 | for pymod in ${PYTHON_MODNAME}; do |
| 88 | if [ -d "${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/${pymod}" ]; then |
108 | if [ -d "${myroot}/usr/$(get_libdir)/python${PYVER}/site-packages/${pymod}" ]; then |
| 89 | python_mod_optimize ${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/${pymod} |
109 | python_mod_optimize ${myroot}/usr/$(get_libdir)/python${PYVER}/site-packages/${pymod} |
| 90 | fi |
110 | fi |
| 91 | done |
111 | done |
| 92 | fi |
112 | fi |
| 93 | } |
113 | } |
| 94 | |
114 | |
| 95 | # e.g. insinto ${ROOT}/usr/include/python${PYVER} |
115 | # e.g. insinto ${ROOT}/usr/include/python${PYVER} |
| 96 | |
116 | |
| 97 | distutils_python_version() { |
117 | distutils_python_version() { |
| 98 | local tmpstr="$(${python} -V 2>&1 )" |
118 | 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 | } |
119 | } |
| 106 | |
120 | |
| 107 | # checks for if tkinter support is compiled into python |
121 | # checks for if tkinter support is compiled into python |
| 108 | distutils_python_tkinter() { |
122 | distutils_python_tkinter() { |
| 109 | if ! python -c "import Tkinter" >/dev/null 2>&1; then |
123 | python_tkinter_exists |
| 110 | eerror "You need to recompile python with Tkinter support." |
|
|
| 111 | eerror "That means: USE='tcltk' emerge python" |
|
|
| 112 | echo |
|
|
| 113 | die "missing tkinter support with installed python" |
|
|
| 114 | fi |
|
|
| 115 | } |
124 | } |
| 116 | |
125 | |
| 117 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_postrm |
126 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_postinst pkg_postrm |