| 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.13 2003/09/09 17:18:27 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 |
| … | |
… | |
| 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 |
|
|
23 | |
| 22 | ECLASS=distutils |
24 | ECLASS=distutils |
| 23 | INHERITED="$INHERITED $ECLASS" |
25 | INHERITED="$INHERITED $ECLASS" |
| 24 | |
26 | |
| 25 | # This helps make it possible to add extensions to python slots. |
27 | # This helps make it possible to add extensions to python slots. |
| 26 | # Normally only a -py21- ebuild would set PYTHON_SLOT_VERSION. |
28 | # Normally only a -py21- ebuild would set PYTHON_SLOT_VERSION. |
| … | |
… | |
| 31 | newdepend "virtual/python" |
33 | newdepend "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 | if has_version ">=dev-lang/python-2.3"; then |
|
|
43 | ${python} setup.py install --root=${D} --no-compile "$@" || die |
|
|
44 | else |
| 40 | ${python} setup.py install --root=${D} ${@} || die |
45 | ${python} setup.py install --root=${D} "$@" || die |
| 41 | |
46 | fi |
|
|
47 | |
| 42 | dodoc CHANGELOG COPYRIGHT KNOWN_BUGS MAINTAINERS |
48 | DDOCS="CHANGELOG COPYRIGHT KNOWN_BUGS MAINTAINERS PKG-INFO" |
| 43 | dodoc CONTRIBUTORS LICENSE COPYING* |
49 | DDOCS="${DDOCS} CONTRIBUTORS LICENSE COPYING*" |
| 44 | dodoc Change* MANIFEST* README* |
50 | DDOCS="${DDOCS} Change* MANIFEST* README*" |
| 45 | |
51 | |
|
|
52 | for doc in ${DDOCS}; do |
|
|
53 | [ -s "$doc" ] && dodoc $doc |
|
|
54 | done |
|
|
55 | |
| 46 | [ -n "${DOCS}" ] && dodoc ${DOCS} |
56 | [ -n "${DOCS}" ] && dodoc ${DOCS} |
| 47 | |
57 | |
| 48 | # deprecated! please use DOCS instead. |
58 | # deprecated! please use DOCS instead. |
| 49 | [ -n "${mydoc}" ] && dodoc ${mydoc} |
59 | [ -n "${mydoc}" ] && dodoc ${mydoc} |
|
|
60 | } |
|
|
61 | |
|
|
62 | # generic pyc/pyo cleanup script. |
|
|
63 | |
|
|
64 | distutils_pkg_postrm() { |
|
|
65 | PYTHON_MODNAME=${PYTHON_MODNAME:-${PN}} |
|
|
66 | |
|
|
67 | if has_version ">=dev-lang/python-2.3"; then |
|
|
68 | ebegin "Performing Python Module Cleanup .." |
|
|
69 | if [ -n "${PYTHON_MODNAME}" ]; then |
|
|
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 |
|
|
72 | python_mod_cleanup ${moddir} |
|
|
73 | done |
|
|
74 | done |
|
|
75 | else |
|
|
76 | python_mod_cleanup |
|
|
77 | fi |
|
|
78 | eend 0 |
|
|
79 | fi |
|
|
80 | } |
|
|
81 | |
|
|
82 | # this is a generic optimization, you should override it if your package |
|
|
83 | # installs things in another directory |
|
|
84 | |
|
|
85 | distutils_pkg_postinst() { |
|
|
86 | PYTHON_MODNAME=${PYTHON_MODNAME:-${PN}} |
|
|
87 | |
|
|
88 | if has_version ">=dev-lang/python-2.3"; then |
|
|
89 | python_version |
|
|
90 | for pymod in "${PYTHON_MODNAME}"; do |
|
|
91 | if [ -d "${ROOT}usr/lib/python${PYVER}/site-packages/${pymod}" ]; then |
|
|
92 | python_mod_optimize ${ROOT}usr/lib/python${PYVER}/site-packages/${pymod} |
|
|
93 | fi |
|
|
94 | done |
|
|
95 | fi |
| 50 | } |
96 | } |
| 51 | |
97 | |
| 52 | # e.g. insinto ${ROOT}/usr/include/python${PYVER} |
98 | # e.g. insinto ${ROOT}/usr/include/python${PYVER} |
| 53 | |
99 | |
| 54 | distutils_python_version() { |
100 | distutils_python_version() { |
| … | |
… | |
| 69 | echo |
115 | echo |
| 70 | die "missing tkinter support with installed python" |
116 | die "missing tkinter support with installed python" |
| 71 | fi |
117 | fi |
| 72 | } |
118 | } |
| 73 | |
119 | |
| 74 | # export PYVER as well |
|
|
| 75 | distutils_python_version |
|
|
| 76 | |
120 | |
| 77 | EXPORT_FUNCTIONS src_compile src_install |
121 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_postrm |
| 78 | |
122 | |