1
0
mirror of synced 2024-06-02 18:58:11 +02:00
TheChymera-overlay/gui-apps/wlsunset/wlsunset-0.2.0.ebuild
Horea Christian 0a1f07d17c
gui-apps/wlsunset: newer package to replace redshift fork
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Horea Christian <chr@chymera.eu>
2022-04-13 19:51:36 -04:00

39 lines
711 B
Bash

# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson
if [[ "${PV}" == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://git.sr.ht/~kennylevinsen/wlsunset"
else
KEYWORDS="~amd64"
SRC_URI="https://git.sr.ht/~kennylevinsen/wlsunset/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
DESCRIPTION="Day/night gamma adjustments for Wayland"
HOMEPAGE="https://sr.ht/~kennylevinsen/wlsunset/"
LICENSE="MIT"
SLOT="0"
BDEPEND="
dev-util/wayland-scanner
app-text/scdoc
"
RDEPEND="dev-libs/wayland"
DEPEND="
${RDEPEND}
dev-libs/wayland-protocols
"
src_configure() {
local emesonargs=(
-Dwerror=false
-Dman-pages=enabled
)
meson_src_configure
}