blob: 3a80af2a08171e2f659a759fb1a019c368c2cb19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Copyright 2021-2023 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="
app-text/scdoc
dev-util/wayland-scanner
"
RDEPEND="dev-libs/wayland"
DEPEND="
${RDEPEND}
dev-libs/wayland-protocols
"
src_configure() {
local emesonargs=(
-Dwerror=false
-Dman-pages=enabled
)
meson_src_configure
}
|