| 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.7 2005/05/02 16:43:58 pythonhead Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/wxwidgets.eclass,v 1.9 2005/05/11 23:45:18 pythonhead 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 |
| 9 | |
9 | |
| 10 | # FUNCTIONS: |
10 | # FUNCTIONS: |
| 11 | # need-wxwidgets: |
11 | # need-wxwidgets: |
| 12 | # Arguments: |
12 | # Arguments: |
| 13 | # 2.4: gtk gtk2 unicode |
13 | # 2.4: gtk gtk2 unicode |
| 14 | # 2.6: gtk gtk2 gtk2-unicode base base-unicode mac mac-unicode |
14 | # 2.6: gtk gtk2 unicode base base-unicode mac mac-unicode |
| 15 | # |
15 | # |
| 16 | # |
16 | # |
| 17 | # set-wxconfig |
17 | # set-wxconfig |
| 18 | # Arguments: (wxGTK 2.4) wxgtk, wxgtk2, or wxgtk2u |
18 | # Arguments: (wxGTK 2.4) wxgtk, wxgtk2, or wxgtk2u |
| 19 | # Arguments: (wxGTK 2.6) gtk-ansi gtk2-ansi gtk2-unicode base-ansi base-unicode mac-ansi mac-unicode |
19 | # Arguments: (wxGTK 2.6) gtk-ansi gtk2-ansi unicode base-ansi base-unicode mac-ansi mac-unicode |
| 20 | # Note: Don't call this function directly from ebuilds |
20 | # Note: Don't call this function directly from ebuilds |
| 21 | |
21 | |
| 22 | ECLASS=wxwidgets |
22 | ECLASS=wxwidgets |
| 23 | INHERITED="$INHERITED $ECLASS" |
23 | INHERITED="$INHERITED $ECLASS" |
| 24 | |
24 | |
| … | |
… | |
| 27 | #If you want to use wxGTK-2.6* export WX_GTK_VER in your ebuild: |
27 | #If you want to use wxGTK-2.6* export WX_GTK_VER in your ebuild: |
| 28 | if [ "${WX_GTK_VER}" = "2.6" ]; then |
28 | if [ "${WX_GTK_VER}" = "2.6" ]; then |
| 29 | case $1 in |
29 | case $1 in |
| 30 | gtk) set-wxconfig gtk-ansi;; |
30 | gtk) set-wxconfig gtk-ansi;; |
| 31 | gtk2) set-wxconfig gtk2-ansi;; |
31 | gtk2) set-wxconfig gtk2-ansi;; |
| 32 | gtk2-unicode) set-wxconfig gtk2-unicode;; |
32 | unicode) set-wxconfig gtk2-unicode;; |
| 33 | base) set-wxconfig base-ansi;; |
33 | base) set-wxconfig base-ansi;; |
| 34 | base-unicode) set-wxconfig base-unicode;; |
34 | base-unicode) set-wxconfig base-unicode;; |
| 35 | mac) set-wxconfig mac-ansi;; |
35 | mac) set-wxconfig mac-ansi;; |
| 36 | mac-unicode) set-wxconfig mac-unicode;; |
36 | mac-unicode) set-wxconfig mac-unicode;; |
| 37 | *) echo "!!! $FUNCNAME: Error: wxGTK was not comipled with $1." |
37 | *) echo "!!! $FUNCNAME: Error: wxGTK was not comipled with $1." |