| 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.25 2004/09/15 23:10:21 kugelfang 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 |
24 | ECLASS=distutils |
| 25 | INHERITED="$INHERITED $ECLASS" |
25 | INHERITED="$INHERITED $ECLASS" |
| 26 | |
26 | |
| 27 | # This helps make it possible to add extensions to python slots. |
27 | # This helps make it possible to add extensions to python slots. |
| … | |
… | |
| 66 | |
66 | |
| 67 | if has_version ">=dev-lang/python-2.3"; then |
67 | if has_version ">=dev-lang/python-2.3"; then |
| 68 | ebegin "Performing Python Module Cleanup .." |
68 | ebegin "Performing Python Module Cleanup .." |
| 69 | if [ -n "${PYTHON_MODNAME}" ]; then |
69 | if [ -n "${PYTHON_MODNAME}" ]; then |
| 70 | for pymod in ${PYTHON_MODNAME}; do |
70 | 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 |
71 | 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} |
72 | python_mod_cleanup ${moddir} |
| 73 | done |
73 | done |
| 74 | done |
74 | done |
| 75 | else |
75 | else |
| 76 | python_mod_cleanup |
76 | python_mod_cleanup |
| … | |
… | |
| 86 | PYTHON_MODNAME=${PYTHON_MODNAME:-${PN}} |
86 | PYTHON_MODNAME=${PYTHON_MODNAME:-${PN}} |
| 87 | |
87 | |
| 88 | if has_version ">=dev-lang/python-2.3"; then |
88 | if has_version ">=dev-lang/python-2.3"; then |
| 89 | python_version |
89 | python_version |
| 90 | for pymod in "${PYTHON_MODNAME}"; do |
90 | for pymod in "${PYTHON_MODNAME}"; do |
| 91 | if [ -d "${ROOT}usr/lib/python${PYVER}/site-packages/${pymod}" ]; then |
91 | if [ -d "${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/${pymod}" ]; then |
| 92 | python_mod_optimize ${ROOT}usr/lib/python${PYVER}/site-packages/${pymod} |
92 | python_mod_optimize ${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/${pymod} |
| 93 | fi |
93 | fi |
| 94 | done |
94 | done |
| 95 | fi |
95 | fi |
| 96 | } |
96 | } |
| 97 | |
97 | |