summaryrefslogtreecommitdiff
blob: c22ae2b8f88c707ec2cb2bf7bc451229a142cdbc (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
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

DESCRIPTION="Leverage the OpenPGP web of trust for OpenSSH and Web authentication"
HOMEPAGE="http://web.monkeysphere.info/"

LICENSE="GPL-3"
SLOT="0/0"
IUSE=""
SRC_URI="
	mirror://debian/pool/monkeysphere/m/monkeysphere/monkeysphere_${PV}.orig.tar.gz
	http://archive.monkeysphere.info/debian/pool/monkeysphere/m/monkeysphere/monkeysphere_${PV}.orig.tar.gz"
KEYWORDS="amd64 ~arm x86"

DOCS=( README Changelog )

## Tests fail upstream for SSH connection. Issue has been reported.
RESTRICT="test"

DEPEND="acct-group/monkeysphere
	acct-user/monkeysphere
	>=app-crypt/gnupg-2.1.17:0=
	net-misc/socat:0=
	dev-perl/Crypt-OpenSSL-RSA:0=
	dev-perl/Digest-SHA1:0=
	app-misc/lockfile-progs:0="

RDEPEND="${DEPEND}
	net-misc/openssh"

PATCHES=( "${FILESDIR}"/${PN}-0.44-install-uncompressed-man-pages.patch )

src_prepare() {
	default

	sed -i \
		-e "s#share/doc/monkeysphere#share/doc/${PF}#" \
		Makefile \
		|| die
}

pkg_postinst() {
	monkeysphere-authentication setup
}