blob: f9d6d9eb8ced20703d533728ddb8cec08a6a14a3 (
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-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit toolchain-funcs
DESCRIPTION="Shamir's Secret Sharing Scheme"
HOMEPAGE="http://point-at-infinity.org/ssss/"
SRC_URI="http://point-at-infinity.org/${PN}/${P}.tar.gz"
KEYWORDS="amd64 x86"
LICENSE="GPL-2"
SLOT="0"
RDEPEND="dev-libs/gmp:0="
DEPEND="${RDEPEND}"
BDEPEND="app-doc/xmltoman"
DOCS=( "HISTORY" "THANKS" )
HTML_DOCS=( "doc.html" "ssss.1.html" )
src_prepare() {
default
tc-export CC
# Respect users CFLAGS and don't strip, as portage does this part.
sed -e 's/-O2/$(CFLAGS)/g' -e '/strip/d' -i Makefile || die
}
src_install() {
dobin ssss-split
dosym ssss-split /usr/bin/ssss-combine
doman ssss.1
einstalldocs
}
|