| 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.37 2007/01/27 11:21:45 kloeri Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/distutils.eclass,v 1.38 2007/02/03 00:19:41 kloeri 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 |
| … | |
… | |
| 110 | |
110 | |
| 111 | # checks for if tkinter support is compiled into python |
111 | # checks for if tkinter support is compiled into python |
| 112 | distutils_python_tkinter() { |
112 | distutils_python_tkinter() { |
| 113 | if ! python -c "import Tkinter" >/dev/null 2>&1; then |
113 | if ! python -c "import Tkinter" >/dev/null 2>&1; then |
| 114 | eerror "You need to recompile python with Tkinter support." |
114 | eerror "You need to recompile python with Tkinter support." |
| 115 | eerror "Try adding 'dev-lang/python X tk' to:" |
115 | eerror "Try adding 'dev-lang/python tk' to:" |
| 116 | eerror "/etc/portage/package.use" |
116 | eerror "/etc/portage/package.use" |
| 117 | echo |
117 | echo |
| 118 | die "missing tkinter support with installed python" |
118 | die "missing tkinter support with installed python" |
| 119 | fi |
119 | fi |
| 120 | } |
120 | } |