blob: d38e994ed0d93bdf49124ae5d6451f277a0829a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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
}
|