commit: 12d3b02e4abf1598ff8eb497d4a9071e632b71ed Author: Efe İzbudak <efe.izbudak <AT> metu <DOT> edu <DOT> tr> AuthorDate: Sun Sep 11 15:54:59 2022 +0000 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org> CommitDate: Sun Sep 11 15:55:08 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=12d3b02e
gui-apps/somebar: add 1.0.0 Signed-off-by: Efe İzbudak <efe.izbudak <AT> metu.edu.tr> gui-apps/somebar/Manifest | 1 + gui-apps/somebar/somebar-1.0.0.ebuild | 36 +++++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+) diff --git a/gui-apps/somebar/Manifest b/gui-apps/somebar/Manifest new file mode 100644 index 000000000..44052eb3f --- /dev/null +++ b/gui-apps/somebar/Manifest @@ -0,0 +1 @@ +DIST somebar-1.0.0.tar.gz 31294 BLAKE2B 1006fa9fcf6a081ea0dbbeb98fd2f45ade0e7a3e8e51b76b070f9ad5fa1d352735ceca4000eea8722326dfc19fcd8a317c143316b755bb9e88e9a0cce6dd6099 SHA512 a2f1a4f05ff8297ef6675e0feaaed71308c0ab512f2bd0f961c2e28de8c716b3ea2150dfd1c4dbbfb29e5de410a03a38359f2f173e396bb5059a46d4db4b4515 diff --git a/gui-apps/somebar/somebar-1.0.0.ebuild b/gui-apps/somebar/somebar-1.0.0.ebuild new file mode 100644 index 000000000..8231cb396 --- /dev/null +++ b/gui-apps/somebar/somebar-1.0.0.ebuild @@ -0,0 +1,36 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit savedconfig meson + +DESCRIPTION="dwm-like bar for dwl" +HOMEPAGE="https://git.sr.ht/~raphi/somebar" +SRC_URI="https://git.sr.ht/~raphi/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="" + +DEPEND=" + dev-libs/wayland + x11-libs/cairo + x11-libs/pango +" +RDEPEND="${DEPEND}" +BDEPEND=" + dev-libs/wayland-protocols + dev-util/wayland-scanner +" + +src_prepare() { + default + use savedconfig && restore_config src/config.hpp + [[ -f src/config.hpp ]] || cp src/config.def.hpp src/config.hpp +} + +src_install() { + meson_src_install + save_config src/config.hpp +}
