From a780240bdac5db4df0310f0765b756cc6fb7d93e Mon Sep 17 00:00:00 2001 From: turret Date: Fri, 8 Dec 2023 21:49:35 -0600 Subject: dev-libs/girara: add 0.4.1 for dev-libs/zathura-0.5.3 --- dev-libs/girara/girara-0.4.1.ebuild | 59 +++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 dev-libs/girara/girara-0.4.1.ebuild (limited to 'dev-libs/girara/girara-0.4.1.ebuild') diff --git a/dev-libs/girara/girara-0.4.1.ebuild b/dev-libs/girara/girara-0.4.1.ebuild new file mode 100644 index 0000000..6ef1dcc --- /dev/null +++ b/dev-libs/girara/girara-0.4.1.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson virtualx + +DESCRIPTION="UI library that focuses on simplicity and minimalism" +HOMEPAGE="https://pwmt.org/projects/girara/" + +if [[ ${PV} == *9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://git.pwmt.org/pwmt/${PN}.git" + EGIT_BRANCH="develop" +else + SRC_URI="https://pwmt.org/projects/girara/download/${P}.tar.xz" + KEYWORDS="~amd64 ~arm ~riscv ~x86" +fi + +LICENSE="ZLIB" +SLOT="0" +IUSE="doc libnotify test" +RESTRICT="!test? ( test )" + +DEPEND=" + app-accessibility/at-spi2-core + dev-libs/glib:2 + dev-libs/json-glib:= + media-libs/harfbuzz:= + x11-libs/cairo[glib] + x11-libs/gdk-pixbuf + >=x11-libs/gtk+-3.20:3 + x11-libs/pango + libnotify? ( x11-libs/libnotify ) +" +RDEPEND="${DEPEND}" +# Tests are run under virtx +BDEPEND=" + virtual/pkgconfig + doc? ( app-doc/doxygen ) + test? ( + dev-libs/check + x11-libs/gtk+:3[X] + ) +" + +src_configure() { + local -a emesonargs=( + -Djson=enabled + $(meson_feature doc docs) + $(meson_feature libnotify notify) + ) + meson_src_configure +} + +src_test() { + # TODO: run test on wayland + virtx meson_src_test +} -- cgit v1.2.3