gui-apps/noctalia-qs: drop 0.0.5, add 0.0.6

* 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

Signed-off-by: dsaf <ghostyn678+git@gmail.com>
This commit is contained in:
dsaf
2026-03-08 19:45:59 -03:00
parent 07ada6e03f
commit 324af645dd
4 changed files with 61 additions and 66 deletions

View File

@@ -1 +1 @@
DIST noctalia-qs-0.0.5.tar.gz 469145 BLAKE2B b94ed96182ac5f6e2e2b0d6489046ab99e4816d0e3598edc7e8fbbf66bcc9c7b3922da7fddfef8922b0a2473066339480c0e14bc51fbac7f27270aea91573eec SHA512 266c0e11908a6ca1c546e3cff88f5898402eedda49f983baad4682c05ab862f64ff32f7482db908c6dda9b0887a3255f595881c1d4987b9b1e1057a601f48d36
DIST noctalia-qs-0.0.6.tar.gz 502178 BLAKE2B a797059ba04041563cfb4f59c0971d864fc8226c9d5463fdecdc7b88cfb9a0c01f3ff2d821dde6499bacef2ec59b223de9474884daca07377f2c6bf2e8285471 SHA512 e8490a6c6939243101431421951357e02b3b9a5145573dda91bd300ec3d0d00c5839c0c2e9b177308c14bff3011b8ef23ebb362d588f77c6c13a2c1b3cf11874

View File

@@ -6,12 +6,11 @@
<name>dsaf</name>
</maintainer>
<longdescription>
noctalia-qs is a custom fork of Quickshell
- a flexible QtQuick-based desktop shell toolkit for Wayland.
It serves as the shell framework powering Noctalia Shell.
noctalia-qs is a custom fork of Quickshell
- a flexible QtQuick-based desktop shell toolkit for Wayland.
It serves as the shell framework powering Noctalia Shell.
</longdescription>
<use>
<flag name="breakpad">Enable Google's <pkg>dev-util/breakpad</pkg> crash reporter</flag>
<flag name="sockets">Enable Unix Sockets (WARNING: Disabling is unsafe!)</flag>
<flag name="layer-shell">Enable wlroots layershell integration through the zwlr-layer-shell-v1 protocol</flag>
<flag name="session-lock">Enable session lock support through the ext-session-lock-v1 protocol</flag>

View File

@@ -5,7 +5,7 @@ EAPI=8
inherit branding cmake
GIT_REVISION=1a02ba2ee11b1afa8ec9a94f8b6b652bf4f14e1d
GIT_REVISION=b58414209fce1669cff818e50468e926613baa10
DESCRIPTION="Toolkit for building desktop widgets using QtQuick"
HOMEPAGE="https://quickshell.org/"
@@ -23,7 +23,7 @@ SLOT="0"
# Upstream recommends leaving all build options enabled by default
IUSE="
+breakpad +jemalloc +sockets +wayland +layer-shell
+jemalloc +sockets +wayland +layer-shell
+session-lock +toplevel-management +screencopy +X
+pipewire +tray +mpris +pam +polkit +hyprland
+hyprland-global-shortcuts +hyprland-focus-grab
@@ -59,39 +59,37 @@ BDEPEND="
virtual/pkgconfig
dev-cpp/cli11
dev-qt/qtshadertools:6
breakpad? ( dev-util/breakpad )
wayland? (
dev-util/wayland-scanner
dev-libs/wayland-protocols
)
"
src_configure(){
mycmakeargs=(
-DCMAKE_BUILD_TYPE=Release
-DDISTRIBUTOR="${BRANDING_OS_NAME} GURU"
-DINSTALL_QML_PREFIX="lib64/qt6/qml"
-DGIT_REVISION=${GIT_REVISION}
-DCRASH_REPORTER=$(usex breakpad ON OFF)
-DUSE_JEMALLOC=$(usex jemalloc ON OFF)
-DSOCKETS=$(usex sockets ON OFF)
-DWAYLAND=$(usex wayland ON OFF)
-DWAYLAND_WLR_LAYERSHELL=$(usex layer-shell ON OFF)
-DWAYLAND_SESSION_LOCK=$(usex session-lock ON OFF)
-DWAYLAND_TOPLEVEL_MANAGEMENT=$(usex toplevel-management ON OFF)
-DSCREENCOPY=$(usex screencopy ON OFF)
-DX11=$(usex X ON OFF)
-DSERVICE_PIPEWIRE=$(usex pipewire ON OFF)
-DSERVICE_STATUS_NOTIFIER=$(usex tray ON OFF)
-DSERVICE_MPRIS=$(usex mpris ON OFF)
-DSERVICE_PAM=$(usex pam ON OFF)
-DSERVICE_POLKIT=$(usex polkit ON OFF)
-DHYPRLAND=$(usex hyprland ON OFF)
-DHYPRLAND_GLOBAL_SHORTCUTS=$(usex hyprland-global-shortcuts)
-DHYPRLAND_FOCUS_GRAB=$(usex hyprland-focus-grab)
-DI3=$(usex i3 ON OFF)
-DI3_IPC=$(usex i3-ipc ON OFF)
-DBLUETOOTH=$(usex bluetooth ON OFF)
)
cmake_src_configure
src_configure() {
local mycmakeargs=(
-DCMAKE_BUILD_TYPE=Release
-DDISTRIBUTOR="${BRANDING_OS_NAME} GURU"
-DINSTALL_QML_PREFIX="$(get_libdir)/qt6/qml"
-DGIT_REVISION=${GIT_REVISION}
-DUSE_JEMALLOC=$(usex jemalloc ON OFF)
-DSOCKETS=$(usex sockets ON OFF)
-DWAYLAND=$(usex wayland ON OFF)
-DWAYLAND_WLR_LAYERSHELL=$(usex layer-shell ON OFF)
-DWAYLAND_SESSION_LOCK=$(usex session-lock ON OFF)
-DWAYLAND_TOPLEVEL_MANAGEMENT=$(usex toplevel-management ON OFF)
-DSCREENCOPY=$(usex screencopy ON OFF)
-DX11=$(usex X ON OFF)
-DSERVICE_PIPEWIRE=$(usex pipewire ON OFF)
-DSERVICE_STATUS_NOTIFIER=$(usex tray ON OFF)
-DSERVICE_MPRIS=$(usex mpris ON OFF)
-DSERVICE_PAM=$(usex pam ON OFF)
-DSERVICE_POLKIT=$(usex polkit ON OFF)
-DHYPRLAND=$(usex hyprland ON OFF)
-DHYPRLAND_GLOBAL_SHORTCUTS=$(usex hyprland-global-shortcuts)
-DHYPRLAND_FOCUS_GRAB=$(usex hyprland-focus-grab)
-DI3=$(usex i3 ON OFF)
-DI3_IPC=$(usex i3-ipc ON OFF)
-DBLUETOOTH=$(usex bluetooth ON OFF)
)
cmake_src_configure
}

View File

@@ -21,7 +21,7 @@ SLOT="0"
# Upstream recommends leaving all build options enabled by default
IUSE="
+breakpad +jemalloc +sockets +wayland +layer-shell
+jemalloc +sockets +wayland +layer-shell
+session-lock +toplevel-management +screencopy +X
+pipewire +tray +mpris +pam +polkit +hyprland
+hyprland-global-shortcuts +hyprland-focus-grab
@@ -57,39 +57,37 @@ BDEPEND="
virtual/pkgconfig
dev-cpp/cli11
dev-qt/qtshadertools:6
breakpad? ( dev-util/breakpad )
wayland? (
dev-util/wayland-scanner
dev-libs/wayland-protocols
)
"
src_configure(){
mycmakeargs=(
-DCMAKE_BUILD_TYPE=Release
-DDISTRIBUTOR="${BRANDING_OS_NAME} GURU"
-DINSTALL_QML_PREFIX="lib64/qt6/qml"
-DGIT_REVISION=${EGIT_COMMIT}
-DCRASH_REPORTER=$(usex breakpad ON OFF)
-DUSE_JEMALLOC=$(usex jemalloc ON OFF)
-DSOCKETS=$(usex sockets ON OFF)
-DWAYLAND=$(usex wayland ON OFF)
-DWAYLAND_WLR_LAYERSHELL=$(usex layer-shell ON OFF)
-DWAYLAND_SESSION_LOCK=$(usex session-lock ON OFF)
-DWAYLAND_TOPLEVEL_MANAGEMENT=$(usex toplevel-management ON OFF)
-DSCREENCOPY=$(usex screencopy ON OFF)
-DX11=$(usex X ON OFF)
-DSERVICE_PIPEWIRE=$(usex pipewire ON OFF)
-DSERVICE_STATUS_NOTIFIER=$(usex tray ON OFF)
-DSERVICE_MPRIS=$(usex mpris ON OFF)
-DSERVICE_PAM=$(usex pam ON OFF)
-DSERVICE_POLKIT=$(usex polkit ON OFF)
-DHYPRLAND=$(usex hyprland ON OFF)
-DHYPRLAND_GLOBAL_SHORTCUTS=$(usex hyprland-global-shortcuts)
-DHYPRLAND_FOCUS_GRAB=$(usex hyprland-focus-grab)
-DI3=$(usex i3 ON OFF)
-DI3_IPC=$(usex i3-ipc ON OFF)
-DBLUETOOTH=$(usex bluetooth ON OFF)
)
cmake_src_configure
src_configure() {
local mycmakeargs=(
-DCMAKE_BUILD_TYPE=Release
-DDISTRIBUTOR="${BRANDING_OS_NAME} GURU"
-DINSTALL_QML_PREFIX="$(get_libdir)/qt6/qml"
-DGIT_REVISION=${EGIT_COMMIT}
-DUSE_JEMALLOC=$(usex jemalloc ON OFF)
-DSOCKETS=$(usex sockets ON OFF)
-DWAYLAND=$(usex wayland ON OFF)
-DWAYLAND_WLR_LAYERSHELL=$(usex layer-shell ON OFF)
-DWAYLAND_SESSION_LOCK=$(usex session-lock ON OFF)
-DWAYLAND_TOPLEVEL_MANAGEMENT=$(usex toplevel-management ON OFF)
-DSCREENCOPY=$(usex screencopy ON OFF)
-DX11=$(usex X ON OFF)
-DSERVICE_PIPEWIRE=$(usex pipewire ON OFF)
-DSERVICE_STATUS_NOTIFIER=$(usex tray ON OFF)
-DSERVICE_MPRIS=$(usex mpris ON OFF)
-DSERVICE_PAM=$(usex pam ON OFF)
-DSERVICE_POLKIT=$(usex polkit ON OFF)
-DHYPRLAND=$(usex hyprland ON OFF)
-DHYPRLAND_GLOBAL_SHORTCUTS=$(usex hyprland-global-shortcuts)
-DHYPRLAND_FOCUS_GRAB=$(usex hyprland-focus-grab)
-DI3=$(usex i3 ON OFF)
-DI3_IPC=$(usex i3-ipc ON OFF)
-DBLUETOOTH=$(usex bluetooth ON OFF)
)
cmake_src_configure
}