| 1 |
# Copyright 1999-2005 Gentoo Foundation |
| 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
# $Header: /var/cvsroot/gentoo-x86/eclass/wxwidgets.eclass,v 1.10 2005/05/25 15:19:16 herbs Exp $ |
| 4 |
# |
| 5 |
# Author Rob Cakebread <pythonhead@gentoo.org> |
| 6 |
|
| 7 |
# This eclass helps you find the correct wx-config script so ebuilds |
| 8 |
# can use gtk, gtk2 or gtk2+unicode versions of wxGTK |
| 9 |
|
| 10 |
# FUNCTIONS: |
| 11 |
# need-wxwidgets: |
| 12 |
# Arguments: |
| 13 |
# 2.4: gtk gtk2 unicode |
| 14 |
# 2.6: gtk gtk2 unicode base base-unicode mac mac-unicode |
| 15 |
# |
| 16 |
# |
| 17 |
# set-wxconfig |
| 18 |
# Arguments: (wxGTK 2.4) wxgtk, wxgtk2, or wxgtk2u |
| 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 |
| 21 |
|
| 22 |
inherit multilib |
| 23 |
INHERITED="$INHERITED $ECLASS" |
| 24 |
|
| 25 |
need-wxwidgets() { |
| 26 |
debug-print-function $FUNCNAME $* |
| 27 |
#If you want to use wxGTK-2.6* export WX_GTK_VER in your ebuild: |
| 28 |
if [ "${WX_GTK_VER}" = "2.6" ]; then |
| 29 |
case $1 in |
| 30 |
gtk) set-wxconfig gtk-ansi;; |
| 31 |
gtk2) set-wxconfig gtk2-ansi;; |
| 32 |
unicode) set-wxconfig gtk2-unicode;; |
| 33 |
base) set-wxconfig base-ansi;; |
| 34 |
base-unicode) set-wxconfig base-unicode;; |
| 35 |
mac) set-wxconfig mac-ansi;; |
| 36 |
mac-unicode) set-wxconfig mac-unicode;; |
| 37 |
*) echo "!!! $FUNCNAME: Error: wxGTK was not comipled with $1." |
| 38 |
echo "!!! Adjust your USE flags or re-emerge wxGTK with version you want." |
| 39 |
exit 1;; |
| 40 |
esac |
| 41 |
|
| 42 |
else |
| 43 |
WX_GTK_VER="2.4" |
| 44 |
case $1 in |
| 45 |
gtk) set-wxconfig wxgtk;; |
| 46 |
gtk2) set-wxconfig wxgtk2;; |
| 47 |
unicode) set-wxconfig wxgtk2u;; |
| 48 |
*) echo "!!! $FUNCNAME: Error: wxGTK was not comipled with $1." |
| 49 |
echo "!!! Adjust your USE flags or re-emerge wxGTK with version you want." |
| 50 |
exit 1;; |
| 51 |
esac |
| 52 |
fi |
| 53 |
} |
| 54 |
|
| 55 |
|
| 56 |
set-wxconfig() { |
| 57 |
|
| 58 |
debug-print-function $FUNCNAME $* |
| 59 |
|
| 60 |
if [ "${WX_GTK_VER}" = "2.6" ] ; then |
| 61 |
wxconfig_prefix="/usr/$(get_libdir)/wx/config" |
| 62 |
wxconfig_name="${1}-release-${WX_GTK_VER}" |
| 63 |
wxconfig="${wxconfig_prefix}/${wxconfig_name}" |
| 64 |
wxconfig_debug_name="${1}-debug-${WX_GTK_VER}" |
| 65 |
wxconfig_debug="${wxconfig_prefix}/${wxconfig_debug_name}" |
| 66 |
else |
| 67 |
# Default is 2.4: |
| 68 |
wxconfig_prefix="/usr/bin" |
| 69 |
wxconfig_name="${1}-${WX_GTK_VER}-config" |
| 70 |
wxconfig="${wxconfig_prefix}/${wxconfig_name}" |
| 71 |
wxconfig_debug_name="${1}d-${WX_GTK_VER}-config" |
| 72 |
wxconfig_debug="${wxconfig_prefix}/${wxconfig_debug_name}" |
| 73 |
fi |
| 74 |
|
| 75 |
if [ -e ${wxconfig} ] ; then |
| 76 |
export WX_CONFIG=${wxconfig} |
| 77 |
export WX_CONFIG_NAME=${wxconfig_name} |
| 78 |
export WXBASE_CONFIG_NAME=${wxconfig_name} |
| 79 |
echo " * Using ${wxconfig}" |
| 80 |
elif [ -e ${wxconfig_debug} ] ; then |
| 81 |
export WX_CONFIG=${wxconfig_debug} |
| 82 |
export WX_CONFIG_NAME=${wxconfig_debug_name} |
| 83 |
export WXBASE_CONFIG_NAME=${wxconfig_debug_name} |
| 84 |
echo " * Using ${wxconfig_debug}" |
| 85 |
else |
| 86 |
echo "!!! $FUNCNAME: Error: Can't find normal or debug version:" |
| 87 |
echo "!!! $FUNCNAME: ${wxconfig} not found" |
| 88 |
echo "!!! $FUNCNAME: ${wxconfig_debug} not found" |
| 89 |
case $1 in |
| 90 |
wxgtk) echo "!!! You need to emerge wxGTK with wxgtk1 in your USE";; |
| 91 |
wxgtkd) echo "!!! You need to emerge wxGTK with wxgtk1 in your USE";; |
| 92 |
gtk-ansi) echo "!!! You need to emerge wxGTK with wxgtk1 in your USE";; |
| 93 |
gtkd-ansi) echo "!!! You need to emerge wxGTK with wxgtk1 in your USE";; |
| 94 |
|
| 95 |
wxgtk2) echo "!!! You need to emerge wxGTK with gtk2 in your USE";; |
| 96 |
wxgtk2d) echo "!!! You need to emerge wxGTK with gtk2 in your USE";; |
| 97 |
gtk2-ansi) echo "!!! You need to emerge wxGTK with gtk2 in your USE";; |
| 98 |
gtk2d-ansi) echo "!!! You need to emerge wxGTK with gtk2 in your USE";; |
| 99 |
|
| 100 |
wxgtk2u) echo "!!! You need to emerge wxGTK with unicode in your USE";; |
| 101 |
wxgtk2ud) echo "!!! You need to emerge wxGTK with unicode in your USE";; |
| 102 |
gtk2-unicode) echo "!!! You need to emerge wxGTK with unicode in your USE";; |
| 103 |
gtk2d-unicode) echo "!!! You need to emerge wxGTK with unicode in your USE";; |
| 104 |
esac |
| 105 |
exit 1 |
| 106 |
fi |
| 107 |
} |