gui-apps/quickshell: align use flags with global ones

Signed-off-by: dsaf <ghostyn678+git@gmail.com>
This commit is contained in:
dsaf
2026-03-31 04:52:26 -03:00
parent 0b1e45fdcc
commit 2f3a2aa603
2 changed files with 7 additions and 11 deletions

View File

@@ -24,13 +24,9 @@
<flag name="pipewire">Enable viewing and management of <pkg>media-video/pipewire</pkg> nodes</flag>
<flag name="tray">Enable system tray support using the status notifier dbus protocol</flag>
<flag name="mpris">Enable access to MPRIS compatible media players using its dbus protocol</flag>
<flag name="pam">Enable <pkg>sys-libs/pam</pkg> integration for user authentication</flag>
<flag name="polkit">Enable creating <pkg>sys-auth/polkit</pkg> agents that can prompt user for authentication</flag>
<flag name="hyprland">Enable <pkg>gui-wm/hyprland</pkg> specific integrations</flag>
<flag name="hyprland">Enable hyprland specific integrations</flag>
<flag name="i3">Enable <pkg>x11-wm/i3</pkg> and <pkg>gui-wm/sway</pkg> specific features</flag>
<flag name="bluetooth">Enable Bluetooth integration using <pkg>net-wireless/bluez</pkg></flag>
<flag name="greetd">Enable <pkg>gui-libs/greetd</pkg> integration</flag>
<flag name="network">Enable Network integration using <pkg>net-misc/networkmanager</pkg></flag>
<flag name="notifications">Enable notifications service integration</flag>
</use>
<upstream>

View File

@@ -24,8 +24,8 @@ IUSE="
+wayland +layer-shell +session-lock +toplevel-management
+hyprland +screencopy
+X +i3
+tray +pipewire +mpris +pam +polkit +greetd +upower +notifications
+bluetooth +network
+tray +pipewire +mpris +pam +policykit +greetd +upower +notifications
+bluetooth +networkmanager
"
REQUIRED_USE="
layer-shell? ( wayland )
@@ -51,12 +51,12 @@ RDEPEND="
X? ( x11-libs/libxcb )
pipewire? ( media-video/pipewire )
pam? ( sys-libs/pam )
polkit? (
policykit? (
sys-auth/polkit
dev-libs/glib
)
bluetooth? ( net-wireless/bluez )
network? ( net-misc/networkmanager )
networkmanager? ( net-misc/networkmanager )
"
DEPEND="${RDEPEND}"
BDEPEND="
@@ -113,12 +113,12 @@ src_configure() {
-DSERVICE_PIPEWIRE=$(usex pipewire)
-DSERVICE_MPRIS=$(usex mpris)
-DSERVICE_PAM=$(usex pam)
-DSERVICE_POLKIT=$(usex polkit)
-DSERVICE_POLKIT=$(usex policykit)
-DSERVICE_GREETD=$(usex greetd)
-DSERVICE_UPOWER=$(usex upower)
-DSERVICE_NOTIFICATIONS=$(usex notifications)
-DBLUETOOTH=$(usex bluetooth)
-DNETWORK=$(usex network)
-DNETWORK=$(usex networkmanager)
)
cmake_src_configure
}