gui-apps/kanshi: add 1.3.1

Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
This commit is contained in:
Arthur Zamarin
2022-12-16 15:57:09 +02:00
parent 316778648f
commit 4edf40f7c0
2 changed files with 39 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST kanshi-1.3.0.tar.gz 20721 BLAKE2B 56ba2241f21c41c5ba0e33c25ed0fb32ce471ac1c5f8dd030f93cb27e142319d1643143e78d4b375f855af1af5a078168e589ef74c82aaf738cef95618c122ab SHA512 f89164b1c4440d1cb29dfd70aab0721607dd63ea144ace9a2ff30cf89e662d404044bb30a5bc6c5544e8988db498eba3cd80100424ca76d31cc35b60e38036d9
DIST kanshi-1.3.1.tar.gz 20991 BLAKE2B 9ecad147d2ace82ea4a2e8fccbc1a2a81bdca534f4ae952a1bbc4303c4ff0e6cf6de5dd617e1ee79abd23bb094358b3336bc031748525f628b912e53e5a04db8 SHA512 21580c6d950c33ce80a3d39e71ae8352c23c96d89827b79f4a294ccade87026c1ce294a5f9aa9b58e06f7930a3885ab9a54400b7289dfbee18a2a1a53a55709b

View File

@@ -0,0 +1,38 @@
# Copyright 2020-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson
DESCRIPTION="dynamic display configuration (autorandr for wayland)"
HOMEPAGE="https://wayland.emersion.fr/kanshi/ https://sr.ht/~emersion/kanshi/"
SRC_URI="
https://git.sr.ht/~emersion/kanshi/archive/v${PV}.tar.gz
-> ${P}.tar.gz
"
S=${WORKDIR}/${PN}-v${PV}
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86"
IUSE="+man varlink"
RDEPEND="
dev-libs/wayland
varlink? ( dev-libs/libvarlink )
"
BDEPEND="
${RDEPEND}
virtual/pkgconfig
dev-libs/wayland-protocols
man? ( >=app-text/scdoc-1.9.3 )
"
src_configure() {
local emesonargs=(
$(meson_feature man man-pages)
$(meson_feature varlink ipc)
)
meson_src_configure
}