diff options
author | Arsen Arsenović <arsen@gentoo.org> | 2023-07-01 16:26:32 +0200 |
---|---|---|
committer | Arsen Arsenović <arsen@gentoo.org> | 2023-07-01 16:26:57 +0200 |
commit | a32588f6a57038504ced1c7423f6590bca499a83 (patch) | |
tree | 17e78cb623966f9470f07ded1d1126215426bee1 /gui-apps/kanshi/kanshi-1.4.0.ebuild | |
parent | dev-cpp/cpp-httplib: bump PYTHON_COMPAT to 3.12 (diff) | |
download | gentoo-a32588f6a57038504ced1c7423f6590bca499a83.tar.gz gentoo-a32588f6a57038504ced1c7423f6590bca499a83.tar.bz2 gentoo-a32588f6a57038504ced1c7423f6590bca499a83.zip |
gui-apps/kanshi: add 1.4.0
Signed-off-by: Arsen Arsenović <arsen@gentoo.org>
Diffstat (limited to 'gui-apps/kanshi/kanshi-1.4.0.ebuild')
-rw-r--r-- | gui-apps/kanshi/kanshi-1.4.0.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/gui-apps/kanshi/kanshi-1.4.0.ebuild b/gui-apps/kanshi/kanshi-1.4.0.ebuild new file mode 100644 index 000000000000..187f88c803bb --- /dev/null +++ b/gui-apps/kanshi/kanshi-1.4.0.ebuild @@ -0,0 +1,38 @@ +# Copyright 2020-2023 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 +} |