| 1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
| 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.21 2003/10/23 23:15:57 liquidx Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/distutils.eclass,v 1.22 2003/11/25 09:44:18 liquidx 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 |
| … | |
… | |
| 65 | PYTHON_MODNAME=${PYTHON_MODNAME:-${PN}} |
65 | PYTHON_MODNAME=${PYTHON_MODNAME:-${PN}} |
| 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/lib/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 |