blob: a3194cfe7320141e322f0c41d4583196fee4e955 (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# Copyright 2020-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit systemd
DESCRIPTION="Clipboard management"
HOMEPAGE="https://github.com/cdown/clipmenu"
SRC_URI="https://github.com/cdown/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Unlicense"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="+dmenu fzf rofi"
REQUIRED_USE="?? ( dmenu fzf rofi )"
RDEPEND="
x11-misc/clipnotify
x11-misc/xsel
dmenu? ( x11-misc/dmenu )
fzf? ( app-shells/fzf )
rofi? ( x11-misc/rofi )
"
src_prepare() {
default
if use rofi ; then
sed -i 's|CM_LAUNCHER=dmenu|CM_LAUNCHER=rofi|' clipmenu || die "sed failed"
elif use fzf ; then
sed -i 's|CM_LAUNCHER=dmenu|CM_LAUNCHER=fzf|' clipmenu || die "sed failed"
fi
}
src_compile() {
:
}
src_install() {
local binfile
for binfile in clipctl clipdel clipfsck clipmenu clipmenud; do
dobin ${binfile}
done
dodoc README.md
systemd_douserunit "init/clipmenud.service"
}
pkg_postinst() {
if ! use dmenu && ! use fzf && ! use rofi ; then
ewarn "Clipmenu has been installed without a launcher."
ewarn "You will need to set \$CM_LAUNCHER to a dmenu-compatible app for clipmenu to work."
ewarn "Please refer to the documents for more info."
fi
}
|