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.31 2006/06/03 17:56:35 radek Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/distutils.eclass,v 1.32 2006/08/07 00:21:49 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 |
… | |
… | |
109 | |
109 | |
110 | # checks for if tkinter support is compiled into python |
110 | # checks for if tkinter support is compiled into python |
111 | distutils_python_tkinter() { |
111 | distutils_python_tkinter() { |
112 | if ! python -c "import Tkinter" >/dev/null 2>&1; then |
112 | if ! python -c "import Tkinter" >/dev/null 2>&1; then |
113 | eerror "You need to recompile python with Tkinter support." |
113 | eerror "You need to recompile python with Tkinter support." |
114 | eerror "That means: USE='tcltk' emerge python" |
114 | eerror "Try adding 'dev-lang/python X tk' to:" |
|
|
115 | eerror "/etc/portage/package.use" |
115 | echo |
116 | echo |
116 | die "missing tkinter support with installed python" |
117 | die "missing tkinter support with installed python" |
117 | fi |
118 | fi |
118 | } |
119 | } |
119 | |
120 | |