| 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.39 2007/05/01 13:44:37 betelgeuse Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/distutils.eclass,v 1.44 2007/10/25 13:49:10 hawking 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 |
| … | |
… | |
| 32 | else |
32 | else |
| 33 | DEPEND="virtual/python" |
33 | DEPEND="virtual/python" |
| 34 | python="python" |
34 | python="python" |
| 35 | fi |
35 | fi |
| 36 | |
36 | |
|
|
37 | distutils_src_unpack() { |
|
|
38 | unpack ${A} |
|
|
39 | cd "${S}" |
|
|
40 | |
|
|
41 | # remove ez_setup stuff to prevent packages |
|
|
42 | # from installing setuptools on their own |
|
|
43 | rm -rf ez_setup* |
|
|
44 | echo "def use_setuptools(*args, **kwargs): pass" > ez_setup.py |
|
|
45 | } |
|
|
46 | |
| 37 | distutils_src_compile() { |
47 | distutils_src_compile() { |
| 38 | ${python} setup.py build "$@" || die "compilation failed" |
48 | ${python} setup.py build "$@" || die "compilation failed" |
| 39 | } |
49 | } |
| 40 | |
50 | |
| 41 | distutils_src_install() { |
51 | distutils_src_install() { |
| … | |
… | |
| 52 | else |
62 | else |
| 53 | ${python} setup.py install --root=${D} "$@" || die |
63 | ${python} setup.py install --root=${D} "$@" || die |
| 54 | fi |
64 | fi |
| 55 | |
65 | |
| 56 | DDOCS="CHANGELOG KNOWN_BUGS MAINTAINERS PKG-INFO CONTRIBUTORS TODO NEWS" |
66 | DDOCS="CHANGELOG KNOWN_BUGS MAINTAINERS PKG-INFO CONTRIBUTORS TODO NEWS" |
| 57 | DDOCS="${DDOCS} Change* MANIFEST* README*" |
67 | DDOCS="${DDOCS} Change* MANIFEST* README* AUTHORS" |
| 58 | |
68 | |
| 59 | for doc in ${DDOCS}; do |
69 | for doc in ${DDOCS}; do |
| 60 | [ -s "$doc" ] && dodoc $doc |
70 | [ -s "$doc" ] && dodoc $doc |
| 61 | done |
71 | done |
| 62 | |
72 | |
| 63 | [ -n "${DOCS}" ] && dodoc ${DOCS} |
73 | [ -n "${DOCS}" ] && dodoc ${DOCS} |
| 64 | |
|
|
| 65 | # deprecated! please use DOCS instead. |
|
|
| 66 | [ -n "${mydoc}" ] && dodoc ${mydoc} |
|
|
| 67 | } |
74 | } |
| 68 | |
75 | |
| 69 | # generic pyc/pyo cleanup script. |
76 | # generic pyc/pyo cleanup script. |
| 70 | |
77 | |
| 71 | distutils_pkg_postrm() { |
78 | distutils_pkg_postrm() { |
| … | |
… | |
| 108 | python_version |
115 | python_version |
| 109 | } |
116 | } |
| 110 | |
117 | |
| 111 | # checks for if tkinter support is compiled into python |
118 | # checks for if tkinter support is compiled into python |
| 112 | distutils_python_tkinter() { |
119 | distutils_python_tkinter() { |
| 113 | if ! python -c "import Tkinter" >/dev/null 2>&1; then |
120 | python_tkinter_exists |
| 114 | eerror "You need to recompile python with Tkinter support." |
|
|
| 115 | eerror "Try adding 'dev-lang/python tk' to:" |
|
|
| 116 | eerror "/etc/portage/package.use" |
|
|
| 117 | echo |
|
|
| 118 | die "missing tkinter support with installed python" |
|
|
| 119 | fi |
|
|
| 120 | } |
121 | } |
| 121 | |
122 | |
| 122 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_postrm |
123 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_postinst pkg_postrm |