diff options
-rw-r--r-- | eclass/wxwidgets.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/wxwidgets.eclass b/eclass/wxwidgets.eclass index afc4aae5f7d3..64f0e38552ec 100644 --- a/eclass/wxwidgets.eclass +++ b/eclass/wxwidgets.eclass @@ -36,7 +36,7 @@ _WXWIDGETS_ECLASS=1 # The SLOT of the x11-libs/wxGTK you're targeting. Needs to be defined before # inheriting the eclass. Can be either "3.0" or "3.0-gtk3". case ${WX_GTK_VER} in - 3.0-gtk3) ;; + 3.0-gtk3 | 3.2-gtk3) ;; 3.0) if [[ ${EAPI} != 7 ]]; then die "${ECLASS}: GTK 2 no longer supported in EAPI ${EAPI}" @@ -67,7 +67,7 @@ setup-wxwidgets() { local w wxtoolkit wxconf case ${WX_GTK_VER} in - 3.0-gtk3) wxtoolkit=gtk3 ;; + 3.0-gtk3 | 3.2-gtk3) wxtoolkit=gtk3 ;; 3.0) wxtoolkit=gtk2 eqawarn "This package relies on the deprecated GTK 2 slot, which will go away soon (https://bugs.gentoo.org/618642)" ;; |