diff options
author | 2023-01-11 15:51:13 +0100 | |
---|---|---|
committer | 2023-01-11 15:51:13 +0100 | |
commit | 7ddd4c7ec131f881b2f690dd16792a7a47846eb8 (patch) | |
tree | efb6189c00657ed1fecc24e17e47735d2a36e784 /xfce-base | |
parent | xfce-base/xfdesktop: Require || ( wayland X ) (diff) | |
download | gentoo-7ddd4c7ec131f881b2f690dd16792a7a47846eb8.tar.gz gentoo-7ddd4c7ec131f881b2f690dd16792a7a47846eb8.tar.bz2 gentoo-7ddd4c7ec131f881b2f690dd16792a7a47846eb8.zip |
xfce-base/xfce4-panel: Require || ( wayland X )
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'xfce-base')
-rw-r--r-- | xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild b/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild index d3de0ac68c66..0550feb13c05 100644 --- a/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild +++ b/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild @@ -15,8 +15,11 @@ SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2" LICENSE="GPL-2+ LGPL-2.1+" SLOT="0" KEYWORDS="~amd64 ~riscv ~x86" -IUSE="X +dbusmenu introspection vala wayland" -REQUIRED_USE="vala? ( introspection )" +IUSE="+dbusmenu introspection vala wayland X" +REQUIRED_USE=" + || ( wayland X ) + vala? ( introspection ) +" DEPEND=" >=dev-libs/glib-2.72.0 @@ -28,16 +31,16 @@ DEPEND=" >=xfce-base/libxfce4util-4.17.2:=[introspection?,vala?] >=xfce-base/libxfce4windowing-4.19.1:= >=xfce-base/xfconf-4.13:= - X? ( - x11-libs/libX11 - x11-libs/libwnck:3 - ) dbusmenu? ( >=dev-libs/libdbusmenu-16.04.0[gtk3] ) introspection? ( >=dev-libs/gobject-introspection-1.66:= ) wayland? ( >=dev-libs/wayland-1.15 >=gui-libs/gtk-layer-shell-0.7.0 ) + X? ( + x11-libs/libX11 + x11-libs/libwnck:3 + ) " RDEPEND=" ${DEPEND} @@ -57,10 +60,10 @@ src_configure() { $(use_enable introspection) $(use_enable dbusmenu dbusmenu-gtk3) $(use_enable vala) - $(use_enable X gtk-x11) - $(use_enable X libwnck) $(use_enable wayland wayland-client) $(use_enable wayland gtk-layer-shell) + $(use_enable X gtk-x11) + $(use_enable X libwnck) ) use vala && vala_setup |