blob: 3db9e8f1965311f6144ea03ec8a55c3369d07e21 (
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
51
52
53
54
55
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit qmake-utils
DESCRIPTION="eID signatures WebExtension native host component"
HOMEPAGE="https://github.com/open-eid/chrome-token-signing/wiki"
SRC_URI="https://github.com/open-eid/chrome-token-signing/archive/v${PV}.tar.gz -> chrome-token-signing-${PV}.tar.gz"
LICENSE="LGPL-2.1+"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="dev-qt/qtwidgets:5
dev-qt/qtnetwork:5
dev-libs/openssl:=
>=dev-libs/opensc-0.14[pcsc-lite]
app-crypt/ccid"
DEPEND="${RDEPEND}"
BDEPEND=""
S="${S}/host-linux"
src_prepare() {
default
rm GNUmakefile || die # avoid any chance of using this instead of qmake stuff
sed -i -e "s:INSTALLS += target hostconf ffconf extension ffextension:INSTALLS += target ffconf extension ffextension:" \
chrome-token-signing.pro || die
}
src_configure() {
eqmake5
}
src_install() {
# Native component
dobin chrome-token-signing
# Chrome JSON files
insinto /usr/share/chrome-token-signing
doins ee.ria.esteid.json
doins ../ckjefchnfjhjfedoccjbhjpbncimppeg.json
# Firefox JSON
insinto /usr/$(get_libdir)/mozilla/native-messaging-hosts
doins ff/ee.ria.esteid.json
# Firefox extension
insinto /usr/share/mozilla/extensions/\{ec8030f7-c20a-464f-9b0e-13a3a9e97384\}
doins ../\{443830f0-1fff-4f9a-aa1e-444bafbc7319\}.xpi
# Various links
dosym ../../../../usr/share/chrome-token-signing/ee.ria.esteid.json /etc/opt/chrome/native-messaging-hosts/ee.ria.esteid.json # TODO: Check that we don't need separate links for www-client/google-chrome-{beta,unstable} too
dosym ../../../usr/share/chrome-token-signing/ee.ria.esteid.json /etc/chromium/native-messaging-hosts/ee.ria.esteid.json
# TODO: json links
}
|