diff --git a/x11-misc/wofi-pass/Manifest b/x11-misc/wofi-pass/Manifest new file mode 100644 index 0000000..0fc3dae --- /dev/null +++ b/x11-misc/wofi-pass/Manifest @@ -0,0 +1 @@ +EBUILD wofi-pass-9999.ebuild 766 BLAKE2B 8352bf0cc5e608f39629e93caa4e5dad824df3f8236fe45c28210a62bef0cc91547836552e48d8b3814dff36c6096f3ec713e30a6ac89854dc3cf4e24c615576 SHA512 1267e6fc25eb5e603c42b3dcc1c5f1361eefaf6b1a83072d7d3a30568cfd44cc16568b3b1bb972e7bef00066103cddee24fa4fedcfdea565f0dcef3b4ea2bc48 diff --git a/x11-misc/wofi-pass/wofi-pass-9999.ebuild b/x11-misc/wofi-pass/wofi-pass-9999.ebuild new file mode 100644 index 0000000..7410869 --- /dev/null +++ b/x11-misc/wofi-pass/wofi-pass-9999.ebuild @@ -0,0 +1,39 @@ +# Copyright 2019 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" + +if [[ ${PV} == 9999 ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/carnager/rofi-pass.git" + EGIT_BRANCH="ydotool" +else + SRC_URI="https://github.com/carnager/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm64 ~x86" +fi + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="otp" + +DEPEND="" +RDEPEND="app-admin/pass + app-admin/pwgen + x11-misc/wl-clipboard-x11 + x11-misc/wofi + x11-misc/xdotool + otp? ( app-admin/pass-otp )" +BDEPEND="" + +src_compile() { + # nop + true +} + +src_install() { + emake DESTDIR="${D}" PREFIX="/usr" +}