| 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.6 2003/03/06 02:29:53 kutsuya Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/distutils.eclass,v 1.33 2006/08/14 21:01:01 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 | # |
7 | # |
| 7 | # The distutils eclass is designed to allow easier installation of |
8 | # The distutils eclass is designed to allow easier installation of |
| 8 | # distutils-based python modules, and their incorporation into |
9 | # distutils-based python modules and their incorporation into |
| 9 | # the Gentoo Linux system. |
10 | # the Gentoo Linux system. |
|
|
11 | # |
|
|
12 | # - Features: |
|
|
13 | # distutils_src_compile() - does python setup.py build |
|
|
14 | # distutils_src_install() - does python setup.py install and install docs |
|
|
15 | # distutils_python_version() - sets PYVER/PYVER_MAJOR/PYVER_MINOR |
|
|
16 | # distutils_python_tkinter() - checks for tkinter support in python |
|
|
17 | # |
|
|
18 | # - Variables: |
|
|
19 | # PYTHON_SLOT_VERSION - for Zope support |
|
|
20 | # DOCS - additional DOCS |
| 10 | |
21 | |
| 11 | ECLASS=distutils |
22 | inherit python eutils |
| 12 | INHERITED="$INHERITED $ECLASS" |
|
|
| 13 | |
|
|
| 14 | EXPORT_FUNCTIONS src_compile src_install |
|
|
| 15 | |
23 | |
| 16 | # This helps make it possible to add extensions to python slots. |
24 | # This helps make it possible to add extensions to python slots. |
|
|
25 | # Normally only a -py21- ebuild would set PYTHON_SLOT_VERSION. |
| 17 | if [ "${PYTHON_SLOT_VERSION}" = 2.1 ] ; then |
26 | if [ "${PYTHON_SLOT_VERSION}" = "2.1" ] ; then |
| 18 | newdepend "virtual/python-2.1" |
27 | DEPEND="=dev-lang/python-2.1*" |
| 19 | python="python2.1" |
28 | python="python2.1" |
|
|
29 | elif [ "${PYTHON_SLOT_VERSION}" = "2.3" ] ; then |
|
|
30 | DEPEND="=dev-lang/python-2.3*" |
|
|
31 | python="python2.3" |
| 20 | else |
32 | else |
| 21 | newdepend "virutal/python" |
33 | DEPEND="virtual/python" |
| 22 | python="python" |
34 | python="python" |
| 23 | fi |
35 | fi |
| 24 | |
36 | |
| 25 | distutils_src_compile() { |
37 | distutils_src_compile() { |
| 26 | ${python} setup.py build || die "compilation failed" |
38 | ${python} setup.py build "$@" || die "compilation failed" |
| 27 | } |
39 | } |
| 28 | |
40 | |
| 29 | distutils_src_install() { |
41 | distutils_src_install() { |
|
|
42 | |
|
|
43 | # need this for python-2.5 + setuptools in cases where |
|
|
44 | # a package uses distutils but does not install anything |
|
|
45 | # in site-packages. (eg. dev-java/java-config-2.x) |
|
|
46 | # - liquidx (14/08/2006) |
|
|
47 | pylibdir="$(${python} -c 'from distutils.sysconfig import get_python_lib; print get_python_lib()')" |
|
|
48 | [ -n "${pylibdir}" ] && dodir "${pylibdir}" |
|
|
49 | |
|
|
50 | if has_version ">=dev-lang/python-2.3"; then |
|
|
51 | ${python} setup.py install --root=${D} --no-compile "$@" || die |
|
|
52 | else |
| 30 | ${python} setup.py install --root=${D} || die |
53 | ${python} setup.py install --root=${D} "$@" || die |
|
|
54 | fi |
|
|
55 | |
| 31 | dodoc CHANGELOG COPYRIGHT KNOWN_BUGS MAINTAINERS |
56 | DDOCS="CHANGELOG COPYRIGHT KNOWN_BUGS MAINTAINERS PKG-INFO" |
| 32 | dodoc CONTRIBUTORS LICENSE COPYING* |
57 | DDOCS="${DDOCS} CONTRIBUTORS TODO" |
| 33 | dodoc Change* MANIFEST* README* ${mydoc} |
58 | DDOCS="${DDOCS} Change* MANIFEST* README*" |
|
|
59 | |
|
|
60 | for doc in ${DDOCS}; do |
|
|
61 | [ -s "$doc" ] && dodoc $doc |
|
|
62 | done |
|
|
63 | |
|
|
64 | [ -n "${DOCS}" ] && dodoc ${DOCS} |
|
|
65 | |
|
|
66 | # deprecated! please use DOCS instead. |
|
|
67 | [ -n "${mydoc}" ] && dodoc ${mydoc} |
|
|
68 | } |
|
|
69 | |
|
|
70 | # generic pyc/pyo cleanup script. |
|
|
71 | |
|
|
72 | distutils_pkg_postrm() { |
|
|
73 | PYTHON_MODNAME=${PYTHON_MODNAME:-${PN}} |
|
|
74 | |
|
|
75 | if has_version ">=dev-lang/python-2.3"; then |
|
|
76 | ebegin "Performing Python Module Cleanup .." |
|
|
77 | if [ -n "${PYTHON_MODNAME}" ]; then |
|
|
78 | for pymod in ${PYTHON_MODNAME}; do |
|
|
79 | for moddir in "`ls -d --color=none -1 ${ROOT}usr/$(get_libdir)/python*/site-packages/${pymod} 2> /dev/null`"; do |
|
|
80 | python_mod_cleanup ${moddir} |
|
|
81 | done |
|
|
82 | done |
|
|
83 | else |
|
|
84 | python_mod_cleanup |
|
|
85 | fi |
|
|
86 | eend 0 |
|
|
87 | fi |
|
|
88 | } |
|
|
89 | |
|
|
90 | # this is a generic optimization, you should override it if your package |
|
|
91 | # installs things in another directory |
|
|
92 | |
|
|
93 | distutils_pkg_postinst() { |
|
|
94 | PYTHON_MODNAME=${PYTHON_MODNAME:-${PN}} |
|
|
95 | |
|
|
96 | if has_version ">=dev-lang/python-2.3"; then |
|
|
97 | python_version |
|
|
98 | for pymod in ${PYTHON_MODNAME}; do |
|
|
99 | if [ -d "${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/${pymod}" ]; then |
|
|
100 | python_mod_optimize ${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/${pymod} |
|
|
101 | fi |
|
|
102 | done |
|
|
103 | fi |
| 34 | } |
104 | } |
| 35 | |
105 | |
| 36 | # e.g. insinto ${ROOT}/usr/include/python${PYVER} |
106 | # e.g. insinto ${ROOT}/usr/include/python${PYVER} |
| 37 | |
107 | |
| 38 | distutils_python_version() |
108 | distutils_python_version() { |
| 39 | { |
|
|
| 40 | local tmpstr="$(${python} -V 2>&1 )" |
109 | local tmpstr="$(${python} -V 2>&1 )" |
| 41 | tmpstr="${tstr#Python }" |
110 | export PYVER_ALL="${tmpstr#Python }" |
| 42 | tstr=${tstr%.*} |
|
|
| 43 | |
111 | |
| 44 | PYVER_MAJOR="${tmpstr%.[0-9]*}" |
112 | export PYVER_MAJOR=$(echo ${PYVER_ALL} | cut -d. -f1) |
| 45 | PYVER_MINOR="${tmpstr#[0-9]*.}" |
113 | export PYVER_MINOR=$(echo ${PYVER_ALL} | cut -d. -f2) |
|
|
114 | export PYVER_MICRO=$(echo ${PYVER_ALL} | cut -d. -f3-) |
| 46 | PYVER="${PYVER_MAJOR}.${PYVER_MINOR}" |
115 | export PYVER="${PYVER_MAJOR}.${PYVER_MINOR}" |
| 47 | } |
116 | } |
|
|
117 | |
|
|
118 | # checks for if tkinter support is compiled into python |
|
|
119 | distutils_python_tkinter() { |
|
|
120 | if ! python -c "import Tkinter" >/dev/null 2>&1; then |
|
|
121 | eerror "You need to recompile python with Tkinter support." |
|
|
122 | eerror "Try adding 'dev-lang/python X tk' to:" |
|
|
123 | eerror "/etc/portage/package.use" |
|
|
124 | echo |
|
|
125 | die "missing tkinter support with installed python" |
|
|
126 | fi |
|
|
127 | } |
|
|
128 | |
|
|
129 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_postrm |