blob: ce9b5a46aecf5274f419fcc8d3ee1c099a7850f8 (
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
|
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="an interactive menu to autotype and copy pass and gopass data"
HOMEPAGE="https://github.com/ayushnix/tessen"
SRC_URI="https://github.com/ayushnix/tessen/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE="+man +pass gopass dmenu bemenu wofi rofi fuzzel +wtype +clipboard notify otp xdg"
REQUIRED_USE="|| ( pass gopass )
|| ( dmenu bemenu wofi rofi fuzzel )"
DEPEND="
man? ( app-text/scdoc )
dmenu? ( x11-misc/dmenu )
bemenu? ( dev-libs/bemenu )
wofi? ( gui-apps/wofi )
rofi? ( x11-misc/rofi )
fuzzel? ( gui-apps/fuzzel )
pass? ( app-admin/pass )
gopass? ( app-admin/gopass )
wtype? ( gui-apps/wtype )
clipboard? ( gui-apps/wl-clipboard )
notify? ( x11-libs/libnotify )
otp? ( app-admin/pass-otp )
xdg? ( x11-misc/xdg-utils )"
RDEPEND="${DEPEND}"
BDEPEND=""
|