summaryrefslogtreecommitdiff
path: root/gui-apps
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-08-10 03:04:52 -0500
committerroot <root@alpha.trunkmasters.com>2026-08-10 03:04:52 -0500
commit1160c54c5acbfd332d8757e926627ae58c982459 (patch)
tree1b77233142ee428a8bb175ab467fc16086f9d41c /gui-apps
parent92f6d12bf21434879bac739a9c4c7d9924ce3bad (diff)
downloadbaldeagleos-repo-1160c54c5acbfd332d8757e926627ae58c982459.tar.gz
baldeagleos-repo-1160c54c5acbfd332d8757e926627ae58c982459.tar.xz
baldeagleos-repo-1160c54c5acbfd332d8757e926627ae58c982459.zip
Adding metadata
Diffstat (limited to 'gui-apps')
-rw-r--r--gui-apps/wofi/Manifest1
-rw-r--r--gui-apps/wofi/wofi-1.5.ebuild34
2 files changed, 35 insertions, 0 deletions
diff --git a/gui-apps/wofi/Manifest b/gui-apps/wofi/Manifest
index a7540446c165..d72b6c4c5568 100644
--- a/gui-apps/wofi/Manifest
+++ b/gui-apps/wofi/Manifest
@@ -1 +1,2 @@
DIST wofi-1.4.1.tar.gz 79266 BLAKE2B fffd3aab79c6d86452a7e80e2e301f70718080d00bc1ac94d7549f90500fe3643deac4d39d366d0df5d18d156c98c9cd329fbcaa9f963bd4c1dc10538c1597ea SHA512 a84aa9c7ae1d454a7e419e81d54dd266fb97eae6c0c8961f1631f403484f1226a6dac8d85c7bd942558b845486e4351aa8d981f021461bc336520bdc7f429944
+DIST wofi-1.5.tar.gz 80467 BLAKE2B bdfbba7d838340e65458d98b9899ab2e8fe95add23ba72bade99f4799df0945f2df30e25478f87ef0f98b7666729d99e2d197812e3cfe5863edade76dcaa913f SHA512 5c3e7dd79b2a2bf2651defd822a3d2d49a416b570eb88cbf696fac1e90db878ad0e3a3ae51ca1611a04f00e61d142cc4bdd1aee4d4a1a1def6109936bf51c44c
diff --git a/gui-apps/wofi/wofi-1.5.ebuild b/gui-apps/wofi/wofi-1.5.ebuild
new file mode 100644
index 000000000000..09fcfbd8d857
--- /dev/null
+++ b/gui-apps/wofi/wofi-1.5.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+if [[ "${PV}" == 9999 ]]; then
+ inherit mercurial
+ EHG_REPO_URI="https://hg.sr.ht/~scoopta/${PN}"
+else
+ SRC_URI="https://hg.sr.ht/~scoopta/wofi/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ S="${WORKDIR}/${PN}-v${PV}"
+ KEYWORDS="~amd64 ~riscv"
+fi
+
+DESCRIPTION="Wofi is a launcher/menu program for wlroots based wayland compositors like sway"
+HOMEPAGE="https://hg.sr.ht/~scoopta/wofi"
+
+LICENSE="GPL-3"
+SLOT="0"
+
+DEPEND="
+ dev-libs/glib:2
+ dev-libs/wayland
+ x11-libs/cairo
+ x11-libs/gdk-pixbuf:2
+ x11-libs/gtk+:3[wayland(-)]
+ x11-libs/pango
+"
+RDEPEND="${DEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+PATCHES=( "${FILESDIR}/${PN}-1.3-no-hg-identify.patch" )