diff options
author | Ryan Hill <rhill@gentoo.org> | 2007-01-02 08:10:31 +0000 |
---|---|---|
committer | Ryan Hill <rhill@gentoo.org> | 2007-01-02 08:10:31 +0000 |
commit | 70883768b23376c87c10973b5ccfc0c89124b60d (patch) | |
tree | b9c71fb0449db41a6f5c8c7da536a9d1138ef58f /eclass | |
parent | Mask wxmozilla-0.5.7 for testing. (diff) | |
download | historical-70883768b23376c87c10973b5ccfc0c89124b60d.tar.gz historical-70883768b23376c87c10973b5ccfc0c89124b60d.tar.bz2 historical-70883768b23376c87c10973b5ccfc0c89124b60d.zip |
Paper over bug #138940 until we rewrite this eclass.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/wxwidgets.eclass | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/eclass/wxwidgets.eclass b/eclass/wxwidgets.eclass index f786a9e56056..fcd7a408a1c1 100644 --- a/eclass/wxwidgets.eclass +++ b/eclass/wxwidgets.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/wxwidgets.eclass,v 1.17 2006/04/28 12:42:00 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/wxwidgets.eclass,v 1.18 2007/01/02 08:10:31 dirtyepic Exp $ # # Author Rob Cakebread <pythonhead@gentoo.org> @@ -10,8 +10,8 @@ # FUNCTIONS: # need-wxwidgets: # Arguments: -# 2.4: gtk gtk2 unicode -# 2.6: gtk gtk2 unicode base base-unicode mac mac-unicode +# 2.4: gtk gtk2 unicode !!! 2.4 is being removed from the tree !!! +# 2.6: gtk2 unicode base base-unicode mac mac-unicode # # # set-wxconfig @@ -88,13 +88,14 @@ set-wxconfig() { case $1 in wxgtk) echo "!!! You need to emerge wxGTK with wxgtk1 in your USE";; wxgtkd) echo "!!! You need to emerge wxGTK with wxgtk1 in your USE";; - gtk-ansi) echo "!!! You need to emerge wxGTK with wxgtk1 in your USE";; - gtkd-ansi) echo "!!! You need to emerge wxGTK with wxgtk1 in your USE";; + gtk-ansi) echo "!!! GTK-1 support is not available in wxGTK-2.6." + echo "!!! Please search bugzilla for this package and file a new bug if one is not already present.";; + gtkd-ansi) echo "!!! GTK-1 support is not available in wxGTK-2.6.";; - wxgtk2) echo "!!! You need to emerge wxGTK with gtk2 in your USE";; - wxgtk2d) echo "!!! You need to emerge wxGTK with gtk2 in your USE";; - gtk2-ansi) echo "!!! You need to emerge wxGTK with gtk2 in your USE";; - gtk2d-ansi) echo "!!! You need to emerge wxGTK with gtk2 in your USE";; + wxgtk2) echo "!!! You need to emerge wxGTK with gtk in your USE";; + wxgtk2d) echo "!!! You need to emerge wxGTK with gtk in your USE";; + gtk2-ansi) echo "!!! You need to emerge wxGTK with gtk in your USE";; + gtk2d-ansi) echo "!!! You need to emerge wxGTK with gtk in your USE";; wxgtk2u) echo "!!! You need to emerge wxGTK with unicode in your USE";; wxgtk2ud) echo "!!! You need to emerge wxGTK with unicode in your USE";; |