1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/eclass/wxwidgets.eclass,v 1.32 2011/12/27 17:55:13 fauli Exp $
# @ECLASS: wxwidgets.eclass
# @MAINTAINER:
# wxwidgets@gentoo.org
# @BLURB: Manages build configuration for wxGTK-using packages.
# @DESCRIPTION:
# The wxGTK libraries come in several different possible configurations
# (release, debug, ansi, unicode, etc.) most of which can be installed
# side-by-side. The purpose of this eclass is to provide ebuilds the ability
# to build against a specific type of profile without interfering with the
# user-set system configuration.
#
# Ebuilds that use wxGTK _must_ inherit this eclass.
#
# - Using this eclass -
#
# 1. set WX_GTK_VER to a valid wxGTK SLOT
# 2. inherit wxwidgets
# 3. add an appropriate DEPEND
# 4. done
#
# @CODE
# WX_GTK_VER="2.8"
#
# inherit wxwidgets
#
# DEPEND="x11-libs/wxGTK:2.8[X]"
# RDEPEND="${DEPEND}"
# [...]
# @CODE
#
# This will get you the default configuration, which is what you want 99%
# of the time (in 2.6 the default is "ansi", all other versions default to
# "unicode").
#
# If your package has optional wxGTK support controlled by a USE flag or you
# need to use the wxBase libraries (USE="-X") then you should not set
# WX_GTK_VER before inherit and instead refer to the need-wxwidgets function
# below.
#
# The variable WX_CONFIG is exported, containing the absolute path to the
# wx-config file to use. Most configure scripts use this path if it's set in
# the environment or accept --with-wx-config="${WX_CONFIG}".
inherit eutils multilib
case "${EAPI:-0}" in
0|1)
EXPORT_FUNCTIONS pkg_setup
;;
*)
;;
esac
# We do this globally so ebuilds can get sane defaults just by inheriting. They
# can be overridden with need-wxwidgets later if need be.
# ensure this only runs once
if [[ -z ${WX_CONFIG} ]]; then
# and only if WX_GTK_VER is set before inherit
if [[ -n ${WX_GTK_VER} ]]; then
if [[ ${WX_GTK_VER} == 2.6 ]]; then
wxchar="ansi"
else
wxchar="unicode"
fi
for wxtoolkit in gtk2 base; do
# newer versions don't have a seperate debug profile
for wxdebug in xxx release- debug-; do
wxconf="${wxtoolkit}-${wxchar}-${wxdebug/xxx/}${WX_GTK_VER}"
if [[ -f /usr/$(get_libdir)/wx/config/${wxconf} ]]; then
# if this is a wxBase install, die in pkg_setup
[[ ${wxtoolkit} == "base" ]] && WXBASE_DIE=1
else
continue
fi
WX_CONFIG="/usr/$(get_libdir)/wx/config/${wxconf}"
WX_ECLASS_CONFIG="${WX_CONFIG}"
break
done
[[ -n ${WX_CONFIG} ]] && break
done
[[ -n ${WX_CONFIG} ]] && export WX_CONFIG WX_ECLASS_CONFIG
fi
fi
# @FUNCTION: wxwidgets_pkg_setup
# @DESCRIPTION:
#
# It's possible for wxGTK to be installed with USE="-X", resulting in something
# called wxBase. There's only ever been a couple packages in the tree that use
# wxBase so this is probably not what you want. Whenever possible, use EAPI 2
# USE dependencies(tm) to ensure that wxGTK was built with USE="X". This
# function is only exported for EAPI 0 or 1 and catches any remaining cases.
#
# If you do use wxBase, don't set WX_GTK_VER before inherit. Use
# need-wxwidgets() instead.
wxwidgets_pkg_setup() {
[[ -n $WXBASE_DIE ]] && check_wxuse X
}
# @FUNCTION: need-wxwidgets
# @USAGE: <configuration>
# @DESCRIPTION:
#
# Available configurations are:
#
# [2.6] ansi [>=2.8] unicode
# unicode base-unicode
# base
# base-unicode
#
# If your package has optional wxGTK support controlled by a USE flag, set
# WX_GTK_VER inside a conditional rather than before inherit. Some broken
# configure scripts will force wxGTK on if they find ${WX_CONFIG} set.
#
# @CODE
# src_configure() {
# if use wxwidgets; then
# WX_GTK_VER="2.8"
# if use X; then
# need-wxwidgets unicode
# else
# need-wxwidgets base-unicode
# fi
# fi
# @CODE
#
need-wxwidgets() {
debug-print-function $FUNCNAME $*
local wxtoolkit wxchar wxdebug wxconf
if [[ -z ${WX_GTK_VER} ]]; then
echo
eerror "WX_GTK_VER must be set before calling $FUNCNAME."
echo
die "WX_GTK_VER missing"
fi
if [[ ${WX_GTK_VER} != 2.6 && ${WX_GTK_VER} != 2.8 && ${WX_GTK_VER} != 2.9 ]]; then
echo
eerror "Invalid WX_GTK_VER: ${WX_GTK_VER} - must be set to a valid wxGTK SLOT."
echo
die "Invalid WX_GTK_VER"
fi
debug-print "WX_GTK_VER is ${WX_GTK_VER}"
case $1 in
ansi)
debug-print-section ansi
if [[ ${WX_GTK_VER} == 2.6 ]]; then
wxchar="ansi"
else
wxchar="unicode"
fi
check_wxuse X
;;
unicode)
debug-print-section unicode
check_wxuse X
[[ ${WX_GTK_VER} == 2.6 ]] && check_wxuse unicode
wxchar="unicode"
;;
base)
debug-print-section base
if [[ ${WX_GTK_VER} == 2.6 ]]; then
wxchar="ansi"
else
wxchar="unicode"
fi
;;
base-unicode)
debug-print-section base-unicode
[[ ${WX_GTK_VER} == 2.6 ]] && check_wxuse unicode
wxchar="unicode"
;;
# backwards compatibility
gtk2)
debug-print-section gtk2
if [[ ${WX_GTK_VER} == 2.6 ]]; then
wxchar="ansi"
else
wxchar="unicode"
fi
check_wxuse X
;;
*)
echo
eerror "Invalid $FUNCNAME argument: $1"
echo
die "Invalid argument"
;;
esac
debug-print "wxchar is ${wxchar}"
# TODO: remove built_with_use
# wxBase can be provided by both gtk2 and base installations
if built_with_use =x11-libs/wxGTK-${WX_GTK_VER}* X; then
wxtoolkit="gtk2"
else
wxtoolkit="base"
fi
debug-print "wxtoolkit is ${wxtoolkit}"
# debug or release?
if [[ ${WX_GTK_VER} == 2.6 || ${WX_GTK_VER} == 2.8 ]]; then
if built_with_use =x11-libs/wxGTK-${WX_GTK_VER}* debug; then
wxdebug="debug-"
else
wxdebug="release-"
fi
fi
debug-print "wxdebug is ${wxdebug}"
# put it all together
wxconf="${wxtoolkit}-${wxchar}-${wxdebug}${WX_GTK_VER}"
debug-print "wxconf is ${wxconf}"
# if this doesn't work, something is seriously screwed
if [[ ! -f /usr/$(get_libdir)/wx/config/${wxconf} ]]; then
echo
eerror "Failed to find configuration ${wxconf}"
echo
die "Missing wx-config"
fi
debug-print "Found config ${wxconf} - setting WX_CONFIG"
export WX_CONFIG="/usr/$(get_libdir)/wx/config/${wxconf}"
debug-print "WX_CONFIG is ${WX_CONFIG}"
export WX_ECLASS_CONFIG="${WX_CONFIG}"
echo
einfo "Requested wxWidgets: ${1} ${WX_GTK_VER}"
einfo "Using wxWidgets: ${wxconf}"
echo
}
# @FUNCTION: check_wxuse
# @USAGE: <USE flag>
# @DESCRIPTION:
#
# Provides a consistant way to check if wxGTK was built with a particular USE
# flag enabled. A better way is EAPI 2 USE dependencies (hint hint).
check_wxuse() {
debug-print-function $FUNCNAME $*
if [[ -z ${WX_GTK_VER} ]]; then
echo
eerror "WX_GTK_VER must be set before calling $FUNCNAME."
echo
die "WX_GTK_VER missing"
fi
# TODO: Remove built_with_use
ebegin "Checking wxGTK-${WX_GTK_VER} for ${1} support"
if built_with_use =x11-libs/wxGTK-${WX_GTK_VER}* "${1}"; then
eend 0
else
eend 1
echo
eerror "${FUNCNAME} - You have requested functionality that requires ${1} support to"
eerror "have been built into x11-libs/wxGTK."
eerror
eerror "Please re-merge =x11-libs/wxGTK-${WX_GTK_VER}* with the ${1} USE flag enabled."
die "Missing USE flags."
fi
}
|