summaryrefslogtreecommitdiff
path: root/gui-apps/wev
diff options
context:
space:
mode:
Diffstat (limited to 'gui-apps/wev')
-rw-r--r--gui-apps/wev/Manifest2
-rw-r--r--gui-apps/wev/wev-1.1.0.ebuild44
2 files changed, 46 insertions, 0 deletions
diff --git a/gui-apps/wev/Manifest b/gui-apps/wev/Manifest
new file mode 100644
index 0000000..b31afbe
--- /dev/null
+++ b/gui-apps/wev/Manifest
@@ -0,0 +1,2 @@
+DIST wev-1.1.0.tar.gz 11163 BLAKE2B 2e2a232d33ec274e5d9afa4ea3f11a13eb3f91e7ba1faddd6b324dc6ef93ecf71ffae81fd4f50ab9f48b4aaae68f498302b2799dd5aa688c73aef3cfa54e36c1 SHA512 c38516cb5e56ba44252ca2c78b14c0f4b0a26ba2aaeaee917474f751154711a3cd8ab96747167f7ab384c771d1554944e107d56571d0b2abacc4772e18cbc2d2
+EBUILD wev-1.1.0.ebuild 745 BLAKE2B 9143126c8746832d40ab0c93047a6f2dc7a05a738866ff5612c2bdb1875077ffb472f94982cc709f51f3d95e13e6820696da1aa6b338065f548582b903e38824 SHA512 aa4afa4d37081f44ce4004ee0384fc66c5ea5edc23810f2f8cfe5a0f1c9d175083d43cf96646e7855d951436393cbccffabba10f63b998e424af51185173c2a0
diff --git a/gui-apps/wev/wev-1.1.0.ebuild b/gui-apps/wev/wev-1.1.0.ebuild
new file mode 100644
index 0000000..d38e994
--- /dev/null
+++ b/gui-apps/wev/wev-1.1.0.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs
+
+DESCRIPTION="Wayland event viewer"
+HOMEPAGE="https://git.sr.ht/~sircmpwn/wev"
+SRC_URI="https://git.sr.ht/~sircmpwn/wev/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+ dev-libs/wayland
+ x11-libs/libxkbcommon
+"
+DEPEND="${DEPEND}
+ dev-libs/wayland-protocols
+"
+BDEPEND="
+ app-text/scdoc
+ dev-util/wayland-scanner
+ virtual/pkgconfig
+"
+
+src_prepare() {
+ default
+
+ # Respect LDFLAGS
+ sed -e 's/$(LIBS)/$(LIBS) $(LDFLAGS)/g' \
+ -i Makefile || die
+}
+
+src_configure() {
+ tc-export CC
+}
+
+src_install() {
+ emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
+ einstalldocs
+}