diff options
author | David Seifert <soap@gentoo.org> | 2021-05-01 21:02:05 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2021-05-01 21:02:05 +0200 |
commit | 4cb8df29372546462c6f1b954dd18662fcaa1a48 (patch) | |
tree | d5cb675bd0600f7c62b0ff86ca1289af36cf72d8 /eclass | |
parent | wxwidgets.eclass: Restrict to EAPI 7 (diff) | |
download | gentoo-4cb8df29372546462c6f1b954dd18662fcaa1a48.tar.gz gentoo-4cb8df29372546462c6f1b954dd18662fcaa1a48.tar.bz2 gentoo-4cb8df29372546462c6f1b954dd18662fcaa1a48.zip |
wxwidgets.eclass: Add eqawarn for GTK 2 slot
Closes: https://github.com/gentoo/gentoo/pull/20269
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/wxwidgets.eclass | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/eclass/wxwidgets.eclass b/eclass/wxwidgets.eclass index 5e9d569a16a0..4357e7367cc7 100644 --- a/eclass/wxwidgets.eclass +++ b/eclass/wxwidgets.eclass @@ -64,7 +64,9 @@ setup-wxwidgets() { case ${WX_GTK_VER} in 3.0-gtk3) wxtoolkit=gtk3 ;; - 3.0) wxtoolkit=gtk2 ;; + 3.0) wxtoolkit=gtk2 + eqawarn "This package relies on the deprecated GTK 2 slot, which will go away soon (https://bugs.gentoo.org/618642)" + ;; esac if [[ -z ${WX_DISABLE_NDEBUG} ]]; then |