mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-22 21:43:03 -04:00
gui-apps/quickshell: 9999 drop 'breakpad' IUSE
* Drop 'breakpad' USE flag: Now requires dev-cpp/cpptrace::gentoo which does not feature the required build flags * Use get_libdir instead of hard-coding (* all versions) Signed-off-by: dsaf <ghostyn678+git@gmail.com>
This commit is contained in:
@@ -64,32 +64,32 @@ BDEPEND="
|
|||||||
)
|
)
|
||||||
"
|
"
|
||||||
|
|
||||||
src_configure(){
|
src_configure() {
|
||||||
mycmakeargs=(
|
local mycmakeargs=(
|
||||||
-DCMAKE_BUILD_TYPE=Release
|
-DCMAKE_BUILD_TYPE=Release
|
||||||
-DDISTRIBUTOR="${BRANDING_OS_NAME} GURU"
|
-DDISTRIBUTOR="${BRANDING_OS_NAME} GURU"
|
||||||
-DINSTALL_QML_PREFIX="lib64/qt6/qml"
|
-DINSTALL_QML_PREFIX="$(get_libdir)/qt6/qml"
|
||||||
-DGIT_REVISION=${GIT_REVISION}
|
-DGIT_REVISION=${GIT_REVISION}
|
||||||
-DCRASH_REPORTER=$(usex breakpad ON OFF)
|
-DCRASH_REPORTER=$(usex breakpad ON OFF)
|
||||||
-DUSE_JEMALLOC=$(usex jemalloc ON OFF)
|
-DUSE_JEMALLOC=$(usex jemalloc ON OFF)
|
||||||
-DSOCKETS=$(usex sockets ON OFF)
|
-DSOCKETS=$(usex sockets ON OFF)
|
||||||
-DWAYLAND=$(usex wayland ON OFF)
|
-DWAYLAND=$(usex wayland ON OFF)
|
||||||
-DWAYLAND_WLR_LAYERSHELL=$(usex layer-shell ON OFF)
|
-DWAYLAND_WLR_LAYERSHELL=$(usex layer-shell ON OFF)
|
||||||
-DWAYLAND_SESSION_LOCK=$(usex session-lock ON OFF)
|
-DWAYLAND_SESSION_LOCK=$(usex session-lock ON OFF)
|
||||||
-DWAYLAND_TOPLEVEL_MANAGEMENT=$(usex toplevel-management ON OFF)
|
-DWAYLAND_TOPLEVEL_MANAGEMENT=$(usex toplevel-management ON OFF)
|
||||||
-DSCREENCOPY=$(usex screencopy ON OFF)
|
-DSCREENCOPY=$(usex screencopy ON OFF)
|
||||||
-DX11=$(usex X ON OFF)
|
-DX11=$(usex X ON OFF)
|
||||||
-DSERVICE_PIPEWIRE=$(usex pipewire ON OFF)
|
-DSERVICE_PIPEWIRE=$(usex pipewire ON OFF)
|
||||||
-DSERVICE_STATUS_NOTIFIER=$(usex tray ON OFF)
|
-DSERVICE_STATUS_NOTIFIER=$(usex tray ON OFF)
|
||||||
-DSERVICE_MPRIS=$(usex mpris ON OFF)
|
-DSERVICE_MPRIS=$(usex mpris ON OFF)
|
||||||
-DSERVICE_PAM=$(usex pam ON OFF)
|
-DSERVICE_PAM=$(usex pam ON OFF)
|
||||||
-DSERVICE_POLKIT=$(usex polkit ON OFF)
|
-DSERVICE_POLKIT=$(usex polkit ON OFF)
|
||||||
-DHYPRLAND=$(usex hyprland ON OFF)
|
-DHYPRLAND=$(usex hyprland ON OFF)
|
||||||
-DHYPRLAND_GLOBAL_SHORTCUTS=$(usex hyprland-global-shortcuts)
|
-DHYPRLAND_GLOBAL_SHORTCUTS=$(usex hyprland-global-shortcuts)
|
||||||
-DHYPRLAND_FOCUS_GRAB=$(usex hyprland-focus-grab)
|
-DHYPRLAND_FOCUS_GRAB=$(usex hyprland-focus-grab)
|
||||||
-DI3=$(usex i3 ON OFF)
|
-DI3=$(usex i3 ON OFF)
|
||||||
-DI3_IPC=$(usex i3-ipc ON OFF)
|
-DI3_IPC=$(usex i3-ipc ON OFF)
|
||||||
-DBLUETOOTH=$(usex bluetooth ON OFF)
|
-DBLUETOOTH=$(usex bluetooth ON OFF)
|
||||||
)
|
)
|
||||||
cmake_src_configure
|
cmake_src_configure
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ LICENSE="LGPL-3"
|
|||||||
SLOT="0"
|
SLOT="0"
|
||||||
# Upstream recommends leaving all build options enabled by default
|
# Upstream recommends leaving all build options enabled by default
|
||||||
IUSE="
|
IUSE="
|
||||||
+breakpad +jemalloc +sockets +wayland +layer-shell
|
+jemalloc +sockets +wayland +layer-shell
|
||||||
+session-lock +toplevel-management +screencopy +X
|
+session-lock +toplevel-management +screencopy +X
|
||||||
+pipewire +tray +mpris +pam +polkit +hyprland
|
+pipewire +tray +mpris +pam +polkit +hyprland
|
||||||
+hyprland-global-shortcuts +hyprland-focus-grab
|
+hyprland-global-shortcuts +hyprland-focus-grab
|
||||||
@@ -55,7 +55,6 @@ BDEPEND="
|
|||||||
virtual/pkgconfig
|
virtual/pkgconfig
|
||||||
dev-cpp/cli11
|
dev-cpp/cli11
|
||||||
dev-qt/qtshadertools:6
|
dev-qt/qtshadertools:6
|
||||||
breakpad? ( dev-util/breakpad )
|
|
||||||
wayland? (
|
wayland? (
|
||||||
dev-util/wayland-scanner
|
dev-util/wayland-scanner
|
||||||
dev-libs/wayland-protocols
|
dev-libs/wayland-protocols
|
||||||
@@ -68,31 +67,30 @@ src_configure() {
|
|||||||
append-flags -fno-strict-aliasing
|
append-flags -fno-strict-aliasing
|
||||||
filter-lto
|
filter-lto
|
||||||
|
|
||||||
mycmakeargs=(
|
local mycmakeargs=(
|
||||||
-DCMAKE_BUILD_TYPE=Release
|
-DCMAKE_BUILD_TYPE=Release
|
||||||
-DDISTRIBUTOR="${BRANDING_OS_NAME} GURU"
|
-DDISTRIBUTOR="${BRANDING_OS_NAME} GURU"
|
||||||
-DINSTALL_QML_PREFIX="lib64/qt6/qml"
|
-DINSTALL_QML_PREFIX="$(get_libdir)/qt6/qml"
|
||||||
-DGIT_REVISION=${EGIT_COMMIT}
|
-DGIT_REVISION=${EGIT_COMMIT}
|
||||||
-DCRASH_REPORTER=$(usex breakpad ON OFF)
|
-DUSE_JEMALLOC=$(usex jemalloc ON OFF)
|
||||||
-DUSE_JEMALLOC=$(usex jemalloc ON OFF)
|
-DSOCKETS=$(usex sockets ON OFF)
|
||||||
-DSOCKETS=$(usex sockets ON OFF)
|
-DWAYLAND=$(usex wayland ON OFF)
|
||||||
-DWAYLAND=$(usex wayland ON OFF)
|
-DWAYLAND_WLR_LAYERSHELL=$(usex layer-shell ON OFF)
|
||||||
-DWAYLAND_WLR_LAYERSHELL=$(usex layer-shell ON OFF)
|
-DWAYLAND_SESSION_LOCK=$(usex session-lock ON OFF)
|
||||||
-DWAYLAND_SESSION_LOCK=$(usex session-lock ON OFF)
|
-DWAYLAND_TOPLEVEL_MANAGEMENT=$(usex toplevel-management ON OFF)
|
||||||
-DWAYLAND_TOPLEVEL_MANAGEMENT=$(usex toplevel-management ON OFF)
|
-DSCREENCOPY=$(usex screencopy ON OFF)
|
||||||
-DSCREENCOPY=$(usex screencopy ON OFF)
|
-DX11=$(usex X ON OFF)
|
||||||
-DX11=$(usex X ON OFF)
|
-DSERVICE_PIPEWIRE=$(usex pipewire ON OFF)
|
||||||
-DSERVICE_PIPEWIRE=$(usex pipewire ON OFF)
|
-DSERVICE_STATUS_NOTIFIER=$(usex tray ON OFF)
|
||||||
-DSERVICE_STATUS_NOTIFIER=$(usex tray ON OFF)
|
-DSERVICE_MPRIS=$(usex mpris ON OFF)
|
||||||
-DSERVICE_MPRIS=$(usex mpris ON OFF)
|
-DSERVICE_PAM=$(usex pam ON OFF)
|
||||||
-DSERVICE_PAM=$(usex pam ON OFF)
|
-DSERVICE_POLKIT=$(usex polkit ON OFF)
|
||||||
-DSERVICE_POLKIT=$(usex polkit ON OFF)
|
-DHYPRLAND=$(usex hyprland ON OFF)
|
||||||
-DHYPRLAND=$(usex hyprland ON OFF)
|
-DHYPRLAND_GLOBAL_SHORTCUTS=$(usex hyprland-global-shortcuts)
|
||||||
-DHYPRLAND_GLOBAL_SHORTCUTS=$(usex hyprland-global-shortcuts)
|
-DHYPRLAND_FOCUS_GRAB=$(usex hyprland-focus-grab)
|
||||||
-DHYPRLAND_FOCUS_GRAB=$(usex hyprland-focus-grab)
|
-DI3=$(usex i3 ON OFF)
|
||||||
-DI3=$(usex i3 ON OFF)
|
-DI3_IPC=$(usex i3-ipc ON OFF)
|
||||||
-DI3_IPC=$(usex i3-ipc ON OFF)
|
-DBLUETOOTH=$(usex bluetooth ON OFF)
|
||||||
-DBLUETOOTH=$(usex bluetooth ON OFF)
|
)
|
||||||
)
|
cmake_src_configure
|
||||||
cmake_src_configure
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user