gui-apps/noctalia: add 5.0.0_beta3

Signed-off-by: dsaf <ghostyn678+git@gmail.com>
This commit is contained in:
dsaf
2026-07-16 11:14:37 -03:00
parent 2b23937208
commit cd20921790
2 changed files with 78 additions and 0 deletions

View File

@@ -1,3 +1,4 @@
DIST noctalia-5.0.0_beta1.tar.gz 5185610 BLAKE2B b5fbb732af28625493e075575adc10c423d3bab54f94ca143af255bdae5f8efcd43f4e10ad999969647e38f9f860149c3a40a336c4306410f7e18582e80feeba SHA512 88a8d6fcf080ee798bf6e606d5cf701d09b0be1cbcd22fc663c8942071e99eb74e3dd7ebe2f9747700390f5dfddfbfa04c88d987982ff4ed0d7d75e55b5447fc
DIST noctalia-5.0.0_beta2.tar.gz 4915967 BLAKE2B 7aeeb0fdcefeeb57f45bb9600f6eea76d15206c7a11a8bd05afccce690678994f1c05929c42dfc8c4ebad9f18eba52ba6646a6789654f3910e82f0a0753166d2 SHA512 48d0ad096a7f3b96b40003a8c02260e2737c62dde9abf155e875ad32c83dc79522916723e63f65efbcbb5d3b20877aa28593723956d46ff1b996556db6534d6c
DIST noctalia-5.0.0_beta3.tar.gz 10410263 BLAKE2B b9f23e1b841c9d9bec38be08a0b33d66cf4e1aad5b421c7807d9afb6aeee204b0246245fe48d711c1174af2eb887643ccb00cf78dc9a8d73fa41c282c1a30305 SHA512 103a9ba677946926e36089d1d3f089bd77e4b5399c53ca0eeaede6513bb75599d44abda818208a5e4615502624355ba50e43700ec43d57fbd9f51105419200a1
DIST noctalia-v4.7.7.tar.gz 25414718 BLAKE2B a8af942e0b746d8fc52a0e979aab27e1ebd91190ec71924b519d56d5224a560e2edaf9c64c51768d68cb791d70d03c7ba5572fec1d1fa38f3244fd698189d89c SHA512 7f1ccdd6180e40ce1e898688f93aab348d327e8b46a90e1a193a73f00468fb7ae4dd2655588006da7774ccace4675853cb05dcd3cee540a7c5bbedf57da202c2

View File

@@ -0,0 +1,77 @@
# Copyright 2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson optfeature xdg
MY_PV="${PV/_/-}"
MY_PV="${MY_PV:0:-1}.${MY_PV: -1}"
MY_P="${PN}-${MY_PV}"
DESCRIPTION="A lightweight Wayland shell and bar built directly on Wayland + OpenGL ES"
HOMEPAGE="https://noctalia.dev/ https://github.com/noctalia-dev/noctalia"
SRC_URI="https://github.com/noctalia-dev/noctalia/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_P}"
LICENSE="MIT"
SLOT="0"
IUSE="+jemalloc"
DEPEND="
dev-cpp/nlohmann_json
dev-cpp/sdbus-c++
dev-cpp/tomlplusplus
dev-libs/glib:2
jemalloc? ( dev-libs/jemalloc:= )
dev-libs/libxml2
dev-libs/md4c
dev-libs/stb
dev-libs/wayland
gnome-base/librsvg:2
media-libs/fontconfig
media-libs/freetype
media-libs/libwebp
media-libs/mesa
media-video/pipewire
media-video/wireplumber
net-misc/curl
sci-libs/libqalculate
sys-auth/polkit
sys-libs/pam
virtual/opengl
x11-libs/cairo[glib]
x11-libs/libxkbcommon
x11-libs/pango
"
RDEPEND="
${DEPEND}
dev-vcs/git
"
BDEPEND="
dev-libs/wayland
dev-libs/wayland-protocols
dev-util/wayland-scanner
"
DOCS=( {README,CREDITS}.md example.toml )
src_configure() {
local emesonargs=(
$(meson_feature jemalloc)
)
meson_src_configure
}
pkg_postinst() {
xdg_pkg_postinst
optfeature "external display brightness control" app-misc/ddcutil
optfeature "battery and power device integration" sys-power/upower
optfeature "clipboard auto-paste" gui-apps/wtype
optfeature "hardware-accelerated screen recording" media-video/gpu-screen-recorder
}