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

EAPI=6

inherit mozextension

DESCRIPTION="zx2c4 pass manager extension for Firefox"
HOMEPAGE="https://github.com/passff/passff"
SRC_URI="https://addons.mozilla.org/firefox/downloads/file/1056515/passff-1.5.1-an+fx-linux.xpi"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="firefox firefox-bin"

RDEPEND="www-plugins/passff-host[firefox]"
REQUIRED_USE="|| ( firefox firefox-bin )"

S="${WORKDIR}"

MY_XPINAME="passff-1.5.1-an+fx-linux"

src_unpack() {
	xpi_unpack "${MY_XPINAME}.xpi"
}

src_install() {
	local MOZILLA_FIVE_HOME
	if use firefox; then
		MOZILLA_FIVE_HOME="/usr/$(get_libdir)/firefox"
		xpi_install "${MY_XPINAME}"
	fi

	if use firefox-bin; then
		MOZILLA_FIVE_HOME="/opt/firefox"
		xpi_install "${MY_XPINAME}"
	fi
}