# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 DESCRIPTION="Rofi frontend for pass" HOMEPAGE="https://github.com/carnager/rofi-pass" SRC_URI="https://github.com/carnager/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="otp" DEPEND="" RDEPEND=" app-admin/pass x11-misc/rofi x11-misc/xdotool otp? ( app-admin/pass-otp ) " src_prepare() { sed -i'' \ -e "s|share/doc/rofi-pass|share/doc/${PF}|g" \ Makefile default } src_compile() { : } src_install() { emake \ DESTDIR="${D}"\ PREFIX="${EPREFIX}/usr" }