| 1 | # Copyright 1999-2005 Gentoo Foundation |
1 | # Copyright 1999-2005 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/wxwidgets.eclass,v 1.13 2005/07/11 15:08:07 swegener Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/wxwidgets.eclass,v 1.14 2005/11/26 20:42:54 sekretarz Exp $ |
| 4 | # |
4 | # |
| 5 | # Author Rob Cakebread <pythonhead@gentoo.org> |
5 | # Author Rob Cakebread <pythonhead@gentoo.org> |
| 6 | |
6 | |
| 7 | # This eclass helps you find the correct wx-config script so ebuilds |
7 | # This eclass helps you find the correct wx-config script so ebuilds |
| 8 | # can use gtk, gtk2 or gtk2+unicode versions of wxGTK |
8 | # can use gtk, gtk2 or gtk2+unicode versions of wxGTK |
| … | |
… | |
| 42 | WX_GTK_VER="2.4" |
42 | WX_GTK_VER="2.4" |
| 43 | case $1 in |
43 | case $1 in |
| 44 | gtk) set-wxconfig wxgtk;; |
44 | gtk) set-wxconfig wxgtk;; |
| 45 | gtk2) set-wxconfig wxgtk2;; |
45 | gtk2) set-wxconfig wxgtk2;; |
| 46 | unicode) set-wxconfig wxgtk2u;; |
46 | unicode) set-wxconfig wxgtk2u;; |
| 47 | *) echo "!!! $FUNCNAME: Error: wxGTK was not comipled with $1." |
47 | *) echo "!!! $FUNCNAME: Error: wxGTK was not compiled with $1." |
| 48 | echo "!!! Adjust your USE flags or re-emerge wxGTK with version you want." |
48 | echo "!!! Adjust your USE flags or re-emerge wxGTK with the version you want." |
| 49 | exit 1;; |
49 | exit 1;; |
| 50 | esac |
50 | esac |
| 51 | fi |
51 | fi |
| 52 | } |
52 | } |
| 53 | |
53 | |