summaryrefslogtreecommitdiff
blob: 773137f966857ec7356d90ea888a8d9332f3e863 (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
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6
EGO_PN=github.com/dannyvankooten/browserpass

if [[ ${PV} == 9999 ]]; then
	inherit golang-vcs
else
	KEYWORDS="~amd64"
	SRC_URI="https://${EGO_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
	inherit golang-vcs-snapshot
fi
inherit golang-build

DESCRIPTION="WebExtension host binary for pass, a UNIX password manager"
HOMEPAGE="https://github.com/dannyvankooten/browserpass"
LICENSE="MIT"
SLOT="0"
RDEPEND="app-crypt/gnupg"
DEPEND="${RDEPEND}
	dev-go/fuzzy:=
	dev-go/twofactor:=
	dev-go/zglob:="

DOCS=( CONTRIBUTING.md README.md )

src_compile() {
	EGO_PN="${EGO_PN}/cmd/browserpass" golang-build_src_compile

	pushd "src/${EGO_PN}" >/dev/null || die
	sed -e 's|%%replace%%|'${EPREFIX}'/usr/libexec/browserpass|' \
		-i firefox/host.json chrome/host.json || die
	popd >/dev/null || die
}

src_install() {
	exeinto /usr/libexec
	doexe browserpass

	pushd "src/${EGO_PN}" >/dev/null || die
	insinto /usr/$(get_libdir)/mozilla/native-messaging-hosts
	newins firefox/host.json com.dannyvankooten.browserpass.json

	insinto /etc/chromium/native-messaging-hosts
	newins chrome/host.json com.dannyvankooten.browserpass.json

	einstalldocs
	popd >/dev/null || die
}