blob: 9e96f8688b3fc6513ef2be11c402244977b2ed92 (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
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"
DEPEND="
dev-libs/wayland
x11-libs/libxkbcommon
"
RDEPEND="${DEPEND}"
BDEPEND="
app-text/scdoc
virtual/pkgconfig
"
src_install() {
export PREFIX="${EPREFIX}/usr"
default
}
|