| 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.24 2004/06/25 00:39:48 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/distutils.eclass,v 1.27 2005/07/06 20:23:20 agriffis 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 |
22 | inherit python eutils |
| 23 | |
23 | |
| 24 | ECLASS=distutils |
|
|
| 25 | INHERITED="$INHERITED $ECLASS" |
|
|
| 26 | |
24 | |
| 27 | # This helps make it possible to add extensions to python slots. |
25 | # This helps make it possible to add extensions to python slots. |
| 28 | # Normally only a -py21- ebuild would set PYTHON_SLOT_VERSION. |
26 | # Normally only a -py21- ebuild would set PYTHON_SLOT_VERSION. |
| 29 | if [ "${PYTHON_SLOT_VERSION}" = 2.1 ] ; then |
27 | if [ "${PYTHON_SLOT_VERSION}" = 2.1 ] ; then |
| 30 | DEPEND="=dev-lang/python-2.1*" |
28 | DEPEND="=dev-lang/python-2.1*" |
| … | |
… | |
| 66 | |
64 | |
| 67 | if has_version ">=dev-lang/python-2.3"; then |
65 | if has_version ">=dev-lang/python-2.3"; then |
| 68 | ebegin "Performing Python Module Cleanup .." |
66 | ebegin "Performing Python Module Cleanup .." |
| 69 | if [ -n "${PYTHON_MODNAME}" ]; then |
67 | if [ -n "${PYTHON_MODNAME}" ]; then |
| 70 | for pymod in ${PYTHON_MODNAME}; do |
68 | for pymod in ${PYTHON_MODNAME}; do |
| 71 | for moddir in "`ls -d --color=none -1 ${ROOT}usr/lib/python*/site-packages/${pymod} 2> /dev/null`"; do |
69 | for moddir in "`ls -d --color=none -1 ${ROOT}usr/$(get_libdir)/python*/site-packages/${pymod} 2> /dev/null`"; do |
| 72 | python_mod_cleanup ${moddir} |
70 | python_mod_cleanup ${moddir} |
| 73 | done |
71 | done |
| 74 | done |
72 | done |
| 75 | else |
73 | else |
| 76 | python_mod_cleanup |
74 | python_mod_cleanup |
| … | |
… | |
| 86 | PYTHON_MODNAME=${PYTHON_MODNAME:-${PN}} |
84 | PYTHON_MODNAME=${PYTHON_MODNAME:-${PN}} |
| 87 | |
85 | |
| 88 | if has_version ">=dev-lang/python-2.3"; then |
86 | if has_version ">=dev-lang/python-2.3"; then |
| 89 | python_version |
87 | python_version |
| 90 | for pymod in "${PYTHON_MODNAME}"; do |
88 | for pymod in "${PYTHON_MODNAME}"; do |
| 91 | if [ -d "${ROOT}usr/lib/python${PYVER}/site-packages/${pymod}" ]; then |
89 | if [ -d "${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/${pymod}" ]; then |
| 92 | python_mod_optimize ${ROOT}usr/lib/python${PYVER}/site-packages/${pymod} |
90 | python_mod_optimize ${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/${pymod} |
| 93 | fi |
91 | fi |
| 94 | done |
92 | done |
| 95 | fi |
93 | fi |
| 96 | } |
94 | } |
| 97 | |
95 | |