diff --git a/gui-apps/wlsunset/Manifest b/gui-apps/wlsunset/Manifest new file mode 100644 index 0000000..e1bc938 --- /dev/null +++ b/gui-apps/wlsunset/Manifest @@ -0,0 +1 @@ +DIST wlsunset-0.2.0.tar.gz 12605 SHA256 88bce695722a09d79545f14d404cc0659f7176bb08d5db5f4f23228b6ba8bb03 SHA512 41f0c543fdb6d59ca2ccaada34a90bb51175afcc611736a70045ea3c3035a7276b7d4482abc6c062bcbf462fe398d905a73a64e5fdc89061a1935ad69fef0061 WHIRLPOOL 76153b2fc3d574323e3d18e5b6ca58b6773b5b006fdaa6867e0d61aa5b7cda4cacb2fce4ac7771f260f804caf6b2b0d4d445ebe1e65bbd7edb18084f531a89e9 diff --git a/gui-apps/wlsunset/metadata.xml b/gui-apps/wlsunset/metadata.xml new file mode 100644 index 0000000..28f43e5 --- /dev/null +++ b/gui-apps/wlsunset/metadata.xml @@ -0,0 +1,8 @@ + + + + + gentoo@chymera.eu + Horea Christian + + diff --git a/gui-apps/wlsunset/wlsunset-0.2.0.ebuild b/gui-apps/wlsunset/wlsunset-0.2.0.ebuild new file mode 100644 index 0000000..c003e4b --- /dev/null +++ b/gui-apps/wlsunset/wlsunset-0.2.0.ebuild @@ -0,0 +1,38 @@ +# 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 +}