diff options
author | Steffen Winter <steffen.winter@proton.me> | 2024-02-07 13:36:58 +0100 |
---|---|---|
committer | Steffen Winter <steffen.winter@proton.me> | 2024-02-07 13:36:58 +0100 |
commit | 5f0567d8e24c48e247b5e0fe5b2510c10324c031 (patch) | |
tree | c995359cd3b98bd4cd688f9659fb7f74e97bf426 /gui-libs | |
parent | TODO.md: remove gping (diff) | |
download | guru-5f0567d8e24c48e247b5e0fe5b2510c10324c031.tar.gz guru-5f0567d8e24c48e247b5e0fe5b2510c10324c031.tar.bz2 guru-5f0567d8e24c48e247b5e0fe5b2510c10324c031.zip |
gui-libs/xdg-desktop-portal-hyprland: Depend on either qt5 or qt6
Signed-off-by: Steffen Winter <steffen.winter@proton.me>
Diffstat (limited to 'gui-libs')
-rw-r--r-- | gui-libs/xdg-desktop-portal-hyprland/xdg-desktop-portal-hyprland-1.3.1.ebuild | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/gui-libs/xdg-desktop-portal-hyprland/xdg-desktop-portal-hyprland-1.3.1.ebuild b/gui-libs/xdg-desktop-portal-hyprland/xdg-desktop-portal-hyprland-1.3.1.ebuild index 6c155b220..59600e480 100644 --- a/gui-libs/xdg-desktop-portal-hyprland/xdg-desktop-portal-hyprland-1.3.1.ebuild +++ b/gui-libs/xdg-desktop-portal-hyprland/xdg-desktop-portal-hyprland-1.3.1.ebuild @@ -22,7 +22,7 @@ fi LICENSE="MIT" SLOT="0" -IUSE="elogind systemd" +IUSE="elogind qt6 systemd" REQUIRED_USE="?? ( elogind systemd )" DEPEND=" @@ -30,11 +30,16 @@ DEPEND=" dev-cpp/sdbus-c++ dev-libs/inih dev-libs/wayland - dev-qt/qtbase - dev-qt/qtcore - dev-qt/qtgui - dev-qt/qtwayland:6 - dev-qt/qtwidgets + qt6? ( + dev-qt/qtbase:6[gui,widgets] + dev-qt/qtwayland:6 + ) + !qt6? ( + dev-qt/qtcore + dev-qt/qtgui + dev-qt/qtwidgets + dev-qt/qtwayland:5 + ) media-libs/mesa sys-apps/util-linux x11-libs/libdrm |