diff options
author | David Seifert <soap@gentoo.org> | 2021-05-01 21:01:56 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2021-05-01 21:01:56 +0200 |
commit | 854a97904d06f51a5d25cab1d20fe2857773a4d0 (patch) | |
tree | 33a1a6070d4cc0311fac8fb060c0f31b9a36a989 /eclass | |
parent | wxwidgets.eclass: Make WX_GTK_VER a PRE_INHERIT variable (diff) | |
download | gentoo-854a97904d06f51a5d25cab1d20fe2857773a4d0.tar.gz gentoo-854a97904d06f51a5d25cab1d20fe2857773a4d0.tar.bz2 gentoo-854a97904d06f51a5d25cab1d20fe2857773a4d0.zip |
wxwidgets.eclass: Remove dead SLOTs
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/wxwidgets.eclass | 32 |
1 files changed, 9 insertions, 23 deletions
diff --git a/eclass/wxwidgets.eclass b/eclass/wxwidgets.eclass index 80c0fc5dea30..09c45ba48a59 100644 --- a/eclass/wxwidgets.eclass +++ b/eclass/wxwidgets.eclass @@ -94,31 +94,17 @@ esac # See: http://docs.wxwidgets.org/trunk/overview_debugging.html setup-wxwidgets() { - local w wxtoolkit wxdebug wxconf + local w wxtoolkit wxconf - case "${WX_GTK_VER}" in - 3.0-gtk3) - wxtoolkit=gtk3 - if [[ -z ${WX_DISABLE_NDEBUG} ]]; then - ( in_iuse debug && use debug ) || append-cppflags -DNDEBUG - fi - ;; - 2.9|3.0) - wxtoolkit=gtk2 - if [[ -z ${WX_DISABLE_NDEBUG} ]]; then - ( in_iuse debug && use debug ) || append-cppflags -DNDEBUG - fi - ;; - 2.8) - wxtoolkit=gtk2 - wxdebug="release-" - has_version x11-libs/wxGTK:${WX_GTK_VER}[debug] && wxdebug="debug-" - ;; - *) - die "Invalid WX_GTK_VER: must be set to a valid wxGTK SLOT" - ;; + case ${WX_GTK_VER} in + 3.0-gtk3) wxtoolkit=gtk3 ;; + 3.0) wxtoolkit=gtk2 ;; esac + if [[ -z ${WX_DISABLE_NDEBUG} ]]; then + { in_iuse debug && use debug; } || append-cppflags -DNDEBUG + fi + # toolkit overrides if has_version "x11-libs/wxGTK:${WX_GTK_VER}[aqua]"; then wxtoolkit="mac" @@ -126,7 +112,7 @@ setup-wxwidgets() { wxtoolkit="base" fi - wxconf="${wxtoolkit}-unicode-${wxdebug}${WX_GTK_VER}" + wxconf="${wxtoolkit}-unicode-${WX_GTK_VER}" for w in "${CHOST:-${CBUILD}}-${wxconf}" "${wxconf}"; do [[ -f ${ESYSROOT:-${EPREFIX}}/usr/$(get_libdir)/wx/config/${w} ]] && wxconf=${w} && break done || die "Failed to find configuration ${wxconf}" |