gui-wm/mangowc: add 0.8.6

Signed-off-by: Timur Kuprava <kupravagoodman@proton.me>
This commit is contained in:
Timur Kuprava
2025-09-17 16:34:17 +03:00
parent f8a4097df8
commit d4d78f8fc2
2 changed files with 81 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
DIST mangowc-0.8.1.tar.gz 643785 BLAKE2B 40cd430ac9b16c5631ee15ec0e77482d214a45d680d793bf3546834104ee4ea27c68bc30ee5d12bd400657cb98767af6204dd4f78d0029a9dcf3cda35fa77b93 SHA512 7aacec7f03fb8c2fd4d0ad9fa3fd0265dd2db01b2d1414235c3b83e2a53b8202b041e4cdbe7ce63d87fa1bd3177e9c16595a894431ed6bce2d8776668801c040
DIST mangowc-0.8.2.tar.gz 644090 BLAKE2B 591e44a3ebdc5602f0c14dce167556d4714dbb5d72c2f493cd897e3683da9ecba256665fdce41f21e7dae3d7e5a55fb2dd5e28ae974f766df755e1dd965d0ddd SHA512 7e2a86dad7a058b55c18f29c8d5b53cbb8d57dc9ac4b7d4090961f2316777bd10bb13283ed455006b0afaac89807f60ad2507e46d27d2f160a93814115ed4c5b
DIST mangowc-0.8.6.tar.gz 653337 BLAKE2B 3b14b1a6ebafb6d9f72bbe3bba6ad062e429a88034ce0de1319ded549d755f90da7f0d3f50bb909daab93f4cb531a9dfee28d473b8f2eaba66bb710a33154944 SHA512 82e04bc4f7fabb13ef13f3f8a10088429b9bd846875dd08288e30cd2a1d16991f36c66bdf30af1dbaaa4e534d2ed3bfcb56e248e0b3dd641278478422f363475

View File

@@ -0,0 +1,80 @@
# Copyright 2022-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson
if [[ ${PV} == 9999 ]]; then
EGIT_REPO_URI="https://github.com/DreamMaoMao/mangowc.git"
inherit git-r3
else
SRC_URI="https://github.com/DreamMaoMao/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~arm64"
fi
DESCRIPTION="wayland compositor based on wlroots and scenefx(dwl but no suckless)"
HOMEPAGE="https://github.com/DreamMaoMao/maomaowm.git"
LICENSE="CC0-1.0 GPL-3+ MIT"
SLOT="0"
IUSE="X"
COMMON_DEPEND="
>=gui-libs/wlroots-0.19:=[libinput,session,X?]
<gui-libs/wlroots-0.20:=[X?]
"
COMMON_DEPEND+="
dev-libs/libinput:=
dev-libs/wayland
>=gui-libs/scenefx-0.4.1
dev-libs/libpcre2
x11-libs/libxkbcommon
X? (
x11-libs/libxcb:=
x11-libs/xcb-util-wm
)
"
RDEPEND="
${COMMON_DEPEND}
X? (
x11-base/xwayland
)
"
# uses <linux/input-event-codes.h>
DEPEND="
${COMMON_DEPEND}
sys-kernel/linux-headers
"
BDEPEND="
>=dev-libs/wayland-protocols-1.32
>=dev-util/wayland-scanner-1.23
>=dev-build/meson-0.60.0
virtual/pkgconfig
"
src_configure() {
local emesonargs=(
$(meson_feature X xwayland)
)
meson_src_configure
}
src_compile() {
meson_src_compile
}
src_install() {
meson_src_install
}
pkg_postinst() {
elog "If you have installed maomaowm before, be sure to remove the package,"
elog "since maomaowm was renamed to mangowc."
elog ""
elog "Default config path was changed to \$XDG_CONFIG_DIR/mango"
}