diff options
author | Matt Turner <mattst88@gentoo.org> | 2022-04-14 10:17:53 -0700 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2022-04-15 12:24:58 -0700 |
commit | 07a96c210de5fd735314c6af65764db5e3c16411 (patch) | |
tree | 741547db98dff9511dc00fd5541106c8ef408a9b /app-i18n/ibus | |
parent | app-i18n/ibus: Fix gtk-related REQUIRED_USE (diff) | |
download | gentoo-07a96c210de5fd735314c6af65764db5e3c16411.tar.gz gentoo-07a96c210de5fd735314c6af65764db5e3c16411.tar.bz2 gentoo-07a96c210de5fd735314c6af65764db5e3c16411.zip |
app-i18n/ibus: Replace IUSE=+gtk with IUSE=+gui
Now that we have separated IUSE=gtk3 from IUSE=gtk, IUSE=gtk only
enables the UI, so we rename it to IUSE=gui to be more in line with
Gentoo policies.
Additionally, move the gtk dependencies out of the gui? ( ... ) block,
since the functionality they control (namely the IM modules) can be
enabled independently of the UI.
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'app-i18n/ibus')
-rw-r--r-- | app-i18n/ibus/ibus-1.5.26.ebuild | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/app-i18n/ibus/ibus-1.5.26.ebuild b/app-i18n/ibus/ibus-1.5.26.ebuild index bcf13d3d4633..368857ac71b8 100644 --- a/app-i18n/ibus/ibus-1.5.26.ebuild +++ b/app-i18n/ibus/ibus-1.5.26.ebuild @@ -19,7 +19,7 @@ SRC_URI="https://github.com/${PN}/${PN}/releases/download/${PV}/${P}.tar.gz LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86" -IUSE="+X appindicator +emoji +gtk +gtk2 +gtk3 +gtk4 +introspection nls +python systemd test +unicode vala wayland" +IUSE="+X appindicator +emoji +gtk2 +gtk3 +gtk4 +gui +introspection nls +python systemd test +unicode vala wayland" RESTRICT="!test? ( test )" REQUIRED_USE=" appindicator? ( gtk3 ) @@ -41,12 +41,12 @@ DEPEND=" x11-libs/libX11 >=x11-libs/libXfixes-6.0.0 ) - gtk? ( + gtk2? ( x11-libs/gtk+:2 ) + gtk3? ( x11-libs/gtk+:3 ) + gtk4? ( gui-libs/gtk:4 ) + gui? ( x11-libs/libX11 x11-libs/libXi - gtk2? ( x11-libs/gtk+:2 ) - gtk3? ( x11-libs/gtk+:3 ) - gtk4? ( gui-libs/gtk:4 ) ) introspection? ( dev-libs/gobject-introspection ) nls? ( virtual/libintl ) @@ -60,7 +60,7 @@ DEPEND=" )" RDEPEND="${DEPEND} python? ( - gtk? ( + gui? ( x11-libs/gtk+:3[introspection] ) )" @@ -116,7 +116,7 @@ src_configure() { if use python; then python_setup python_conf+=( - $(use_enable gtk setup) + $(use_enable gui setup) --with-python=${EPYTHON} ) else @@ -141,10 +141,10 @@ src_configure() { $(use_enable emoji emoji-dict) $(use_with emoji unicode-emoji-dir "${unicodedir}"/emoji) $(use_with emoji emoji-annotation-dir "${unicodedir}"/cldr/common/annotations) - $(use_enable gtk ui) $(use_enable gtk2) $(use_enable gtk3) $(use_enable gtk4) + $(use_enable gui ui) $(use_enable introspection) $(use_enable nls) $(use_enable systemd systemd-services) |