Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 491310 | Differences between
and this patch

Collapse All | Expand All

(-)wxwidgets.eclass.orig (-2 / +6 lines)
Lines 59-65 Link Here
59
# inheriting.
59
# inheriting.
60
if [[ -z ${WX_CONFIG} ]]; then
60
if [[ -z ${WX_CONFIG} ]]; then
61
	if [[ -n ${WX_GTK_VER} ]]; then
61
	if [[ -n ${WX_GTK_VER} ]]; then
62
		for wxtoolkit in mac gtk2 base; do
62
		for wxtoolkit in mac gtk3 gtk2 base; do
63
			# newer versions don't have a seperate debug profile
63
			# newer versions don't have a seperate debug profile
64
			for wxdebug in xxx release- debug-; do
64
			for wxdebug in xxx release- debug-; do
65
				wxconf="${wxtoolkit}-unicode-${wxdebug/xxx/}${WX_GTK_VER}"
65
				wxconf="${wxtoolkit}-unicode-${wxdebug/xxx/}${WX_GTK_VER}"
Lines 112-118 Link Here
112
	if has_version "x11-libs/wxGTK:${WX_GTK_VER}[aqua]"; then
112
	if has_version "x11-libs/wxGTK:${WX_GTK_VER}[aqua]"; then
113
		wxtoolkit="mac"
113
		wxtoolkit="mac"
114
	elif has_version "x11-libs/wxGTK:${WX_GTK_VER}[X]"; then
114
	elif has_version "x11-libs/wxGTK:${WX_GTK_VER}[X]"; then
115
		wxtoolkit="gtk2"
115
		if [[ ${WX_GTK_VER} = 3.0 ]]; then
116
			wxtoolkit="gtk3"
117
		else
118
			wxtoolkit="gtk2"
119
		fi
116
	else
120
	else
117
		wxtoolkit="base"
121
		wxtoolkit="base"
118
	fi
122
	fi

Return to bug 491310