gui-wm/miracle-wm: add 0.5.2

Signed-off-by: Takuya Wakazono <pastalian46@gmail.com>
This commit is contained in:
Takuya Wakazono
2025-04-10 03:06:27 +09:00
parent f11eca22fd
commit 86f6bc537a
2 changed files with 53 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
DIST miracle-wm-0.4.1.tar.gz 478349 BLAKE2B 6a8f942280ed33d5e285fc41eab8c0b2fca34aeafd828e6afc346eb18c89e7aebb2056f55ee7c1d7a624581096f63d7091e0e1be44135d7df54482cfe878f851 SHA512 50b49bd711b0aa4d2285423340a4328e961b4feee77c8c2c931a747ceec1eaabb51e6a4bb3fa8d6cab420555baa2f919369a3d1d195b1bcbc1be033b2087f86e
DIST miracle-wm-0.5.1.tar.gz 1089387 BLAKE2B 85b7f982e0160be02f4c9338ee154b92a1ec3fb87c83f06af962d0949b338d9b18f0782213e25555f09c6a3011e9692edce1bc8378b11c12e17c32d37a6b869b SHA512 986a0d0baa6a78d9832bda2e622ee5873c6f711af0a6177dabe35a5f086f5fc56d85da5a41bc5555b0fed424a40f8e29e0efa8f58fd592acad212b5584bef516
DIST miracle-wm-0.5.2.tar.gz 1089314 BLAKE2B b68e8f58b6359bdba2cb367d46ceb939a192ffb8b70566803b9aea3e2eb167a942aa6edf087ffa2a1910a51b5d6450f633936a60f89521deabafe51436a8fdd6 SHA512 959e79d7139decbd1ebc2d0bb03fd23a40bfc7debdeb500c5a62b1dfa568ef76b0e32e12064412122c4820f6525ec25206f0434b3d1614399e5b750e950dc53b

View File

@@ -0,0 +1,52 @@
# Copyright 2024-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="Tiling Wayland compositor based on Mir"
HOMEPAGE="https://github.com/miracle-wm-org/miracle-wm"
SRC_URI="https://github.com/miracle-wm-org/miracle-wm/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3+ MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE="systemd test"
RESTRICT="!test? ( test )"
RDEPEND="
dev-cpp/yaml-cpp:=
dev-cpp/nlohmann_json
dev-libs/glib:2
dev-libs/json-c:=
dev-libs/libevdev
dev-libs/libpcre2:=
>=gui-libs/mir-2.18:=
media-libs/libglvnd
x11-base/xwayland
"
DEPEND="
${RDEPEND}
media-libs/glm
"
BDEPEND="
virtual/pkgconfig
test? ( dev-cpp/gtest )
"
src_prepare() {
cmake_src_prepare
use test || cmake_comment_add_subdirectory tests/
}
src_configure() {
local mycmakeargs=(
-DSYSTEMD_INTEGRATION=$(usex systemd)
)
cmake_src_configure
}
src_test() {
"${BUILD_DIR}/bin/miracle-wm-tests" || die
}