| 1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
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.12 2003/05/10 18:29:16 liquidx 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 | ECLASS=distutils |
22 | inherit python eutils |
| 23 | INHERITED="$INHERITED $ECLASS" |
23 | |
| 24 | |
24 | |
| 25 | # This helps make it possible to add extensions to python slots. |
25 | # This helps make it possible to add extensions to python slots. |
| 26 | # Normally only a -py21- ebuild would set PYTHON_SLOT_VERSION. |
26 | # Normally only a -py21- ebuild would set PYTHON_SLOT_VERSION. |
| 27 | if [ "${PYTHON_SLOT_VERSION}" = 2.1 ] ; then |
27 | if [ "${PYTHON_SLOT_VERSION}" = 2.1 ] ; then |
| 28 | newdepend "=dev-lang/python-2.1*" |
28 | DEPEND="=dev-lang/python-2.1*" |
| 29 | python="python2.1" |
29 | python="python2.1" |
| 30 | else |
30 | else |
| 31 | newdepend "virtual/python" |
31 | DEPEND="virtual/python" |
| 32 | python="python" |
32 | python="python" |
| 33 | fi |
33 | fi |
| 34 | |
34 | |
| 35 | distutils_src_compile() { |
35 | distutils_src_compile() { |
| 36 | ${python} setup.py build ${@} || die "compilation failed" |
36 | ${python} setup.py build "$@" || die "compilation failed" |
| 37 | } |
37 | } |
| 38 | |
38 | |
| 39 | distutils_src_install() { |
39 | distutils_src_install() { |
|
|
40 | if has_version ">=dev-lang/python-2.3"; then |
|
|
41 | ${python} setup.py install --root=${D} --no-compile "$@" || die |
|
|
42 | else |
| 40 | ${python} setup.py install --root=${D} ${@} || die |
43 | ${python} setup.py install --root=${D} "$@" || die |
| 41 | |
44 | fi |
|
|
45 | |
| 42 | dodoc CHANGELOG COPYRIGHT KNOWN_BUGS MAINTAINERS |
46 | DDOCS="CHANGELOG COPYRIGHT KNOWN_BUGS MAINTAINERS PKG-INFO" |
| 43 | dodoc CONTRIBUTORS LICENSE COPYING* |
47 | DDOCS="${DDOCS} CONTRIBUTORS LICENSE COPYING*" |
| 44 | dodoc Change* MANIFEST* README* |
48 | DDOCS="${DDOCS} Change* MANIFEST* README*" |
| 45 | |
49 | |
|
|
50 | for doc in ${DDOCS}; do |
|
|
51 | [ -s "$doc" ] && dodoc $doc |
|
|
52 | done |
|
|
53 | |
| 46 | [ -n "${DOCS}" ] && dodoc ${DOCS} |
54 | [ -n "${DOCS}" ] && dodoc ${DOCS} |
| 47 | |
55 | |
| 48 | # deprecated! please use DOCS instead. |
56 | # deprecated! please use DOCS instead. |
| 49 | [ -n "${mydoc}" ] && dodoc ${mydoc} |
57 | [ -n "${mydoc}" ] && dodoc ${mydoc} |
| 50 | } |
58 | } |
| 51 | |
59 | |
|
|
60 | # generic pyc/pyo cleanup script. |
|
|
61 | |
|
|
62 | distutils_pkg_postrm() { |
|
|
63 | PYTHON_MODNAME=${PYTHON_MODNAME:-${PN}} |
|
|
64 | |
|
|
65 | if has_version ">=dev-lang/python-2.3"; then |
|
|
66 | ebegin "Performing Python Module Cleanup .." |
|
|
67 | if [ -n "${PYTHON_MODNAME}" ]; then |
|
|
68 | for pymod in ${PYTHON_MODNAME}; do |
|
|
69 | for moddir in "`ls -d --color=none -1 ${ROOT}usr/$(get_libdir)/python*/site-packages/${pymod} 2> /dev/null`"; do |
|
|
70 | python_mod_cleanup ${moddir} |
|
|
71 | done |
|
|
72 | done |
|
|
73 | else |
|
|
74 | python_mod_cleanup |
|
|
75 | fi |
|
|
76 | eend 0 |
|
|
77 | fi |
|
|
78 | } |
|
|
79 | |
|
|
80 | # this is a generic optimization, you should override it if your package |
|
|
81 | # installs things in another directory |
|
|
82 | |
|
|
83 | distutils_pkg_postinst() { |
|
|
84 | PYTHON_MODNAME=${PYTHON_MODNAME:-${PN}} |
|
|
85 | |
|
|
86 | if has_version ">=dev-lang/python-2.3"; then |
|
|
87 | python_version |
|
|
88 | for pymod in "${PYTHON_MODNAME}"; do |
|
|
89 | if [ -d "${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/${pymod}" ]; then |
|
|
90 | python_mod_optimize ${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/${pymod} |
|
|
91 | fi |
|
|
92 | done |
|
|
93 | fi |
|
|
94 | } |
|
|
95 | |
| 52 | # e.g. insinto ${ROOT}/usr/include/python${PYVER} |
96 | # e.g. insinto ${ROOT}/usr/include/python${PYVER} |
| 53 | |
97 | |
| 54 | distutils_python_version() |
98 | distutils_python_version() { |
| 55 | { |
|
|
| 56 | local tmpstr="$(${python} -V 2>&1 )" |
99 | local tmpstr="$(${python} -V 2>&1 )" |
| 57 | tmpstr="${tmpstr#Python }" |
100 | export PYVER_ALL="${tmpstr#Python }" |
| 58 | tmpstr=${tmpstr%.*} |
|
|
| 59 | |
101 | |
| 60 | export PYVER_MAJOR="${tmpstr%.[0-9]*}" |
102 | export PYVER_MAJOR=$(echo ${PYVER_ALL} | cut -d. -f1) |
| 61 | export PYVER_MINOR="${tmpstr#[0-9]*.}" |
103 | export PYVER_MINOR=$(echo ${PYVER_ALL} | cut -d. -f2) |
|
|
104 | export PYVER_MICRO=$(echo ${PYVER_ALL} | cut -d. -f3-) |
| 62 | export PYVER="${PYVER_MAJOR}.${PYVER_MINOR}" |
105 | export PYVER="${PYVER_MAJOR}.${PYVER_MINOR}" |
| 63 | } |
106 | } |
| 64 | |
107 | |
| 65 | # checks for if tkinter support is compiled into python |
108 | # checks for if tkinter support is compiled into python |
| 66 | distutils_python_tkinter() { |
109 | distutils_python_tkinter() { |
| … | |
… | |
| 71 | die "missing tkinter support with installed python" |
114 | die "missing tkinter support with installed python" |
| 72 | fi |
115 | fi |
| 73 | } |
116 | } |
| 74 | |
117 | |
| 75 | |
118 | |
| 76 | EXPORT_FUNCTIONS src_compile src_install |
119 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_postrm |
| 77 | |
120 | |