blob: 305a1b828235d8cc64c797543e843be69bd5fa56 (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
DESCRIPTION="Emoji selector plugin for Rofi"
HOMEPAGE="https://github.com/Mange/rofi-emoji"
SRC_URI="https://github.com/Mange/rofi-emoji/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE="wayland"
DEPEND="
!wayland? ( x11-misc/rofi )
wayland? ( gui-apps/rofi-wayland )
"
RDEPEND="
${DEPEND}
!wayland? (
|| ( x11-misc/xsel x11-misc/xclip x11-misc/copyq )
x11-misc/xdotool
)
wayland? (
gui-apps/wl-clipboard
gui-apps/wtype
)
"
src_prepare() {
default
eautoreconf
}
src_install() {
default
find "${ED}" -name '*.la' -delete || die
}
|