diff options
Diffstat (limited to 'dev-python/wxpython/wxpython-2.4.2.4.ebuild')
-rw-r--r-- | dev-python/wxpython/wxpython-2.4.2.4.ebuild | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/dev-python/wxpython/wxpython-2.4.2.4.ebuild b/dev-python/wxpython/wxpython-2.4.2.4.ebuild index 97d59055dca4..bd6d0a6755b2 100644 --- a/dev-python/wxpython/wxpython-2.4.2.4.ebuild +++ b/dev-python/wxpython/wxpython-2.4.2.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/wxpython/wxpython-2.4.2.4.ebuild,v 1.1 2004/07/03 11:46:54 kloeri Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/wxpython/wxpython-2.4.2.4.ebuild,v 1.2 2004/07/03 12:44:36 kloeri Exp $ inherit eutils @@ -37,31 +37,31 @@ pkg_setup() { if [ ! -f "/usr/bin/wxgtk2u-2.4-config" -a ! -f "/usr/bin/wxgtk2ud-2.4-config" -a ! -f "/usr/bin/wxgtk2-2.4-config" -a ! -f "/usr/bin/wxgtk2d-2.4-config" ]; then eerror "You need x11-libs/wxGTK compiled with GTK+2 support." eerror "Either emerge wxGTK with 'gtk2' in your USE flags or" - eerror "emerge wxPython without 'gtk2' in your USE flags." + eerror "emerge wxpython without 'gtk2' in your USE flags." die "wxGTK needs to be compiled with gtk2" fi else if [ ! -f "/usr/bin/wxgtk-2.4-config" ]; then eerror "You need x11-libs/wxGTK compiled with GTK+1." eerror "Either emerge wxGTK without 'gtk2' in your USE flags or" - eerror "emerge wxPython with 'gtk2' in your USE flags." + eerror "emerge wxpython with 'gtk2' in your USE flags." die "wxGTK needs to be compiled without gtk2" fi fi - # make sure that wxPython and wxGTK have same unicode setting: + # make sure that wxpython and wxGTK have same unicode setting: if use unicode; then if [ ! -f "/usr/bin/wxgtk2u-2.4-config" -a ! -f "/usr/bin/wxgtk2ud-2.4-config" ]; then eerror "You need x11-libs/wxGTK compiled with Unicode support." eerror "Either emerge wxGTK with 'unicode' in your USE flags or" - eerror "emerge wxPython without 'unicode' in your USE flags." + eerror "emerge wxpython without 'unicode' in your USE flags." die "wxGTK needs to be compiled with unicode" fi else if [ ! -f "/usr/bin/wxgtk-2.4-config" -a ! -f "/usr/bin/wxgtk2-2.4-config" -a ! -f "/usr/bin/wxgtkd-2.4-config" -a ! -f "/usr/bin/wxgtk2d-2.4-config" ]; then eerror "You need x11-libs/wxGTK compiled without Unicode." eerror "Either emerge wxGTK without 'unicode' in your USE flags or" - eerror "emerge wxPython with 'unicode' in your USE flags." + eerror "emerge wxpython with 'unicode' in your USE flags." die "wxGTK needs to be compiled without unicode" fi fi |