mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
app-crypt/ssss: update EAPI 7 -> 8
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
This commit is contained in:
39
app-crypt/ssss/ssss-0.5.7-r1.ebuild
Normal file
39
app-crypt/ssss/ssss-0.5.7-r1.ebuild
Normal file
@@ -0,0 +1,39 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit toolchain-funcs
|
||||
|
||||
DESCRIPTION="Shamir's Secret Sharing Scheme"
|
||||
HOMEPAGE="https://github.com/MrJoy/ssss"
|
||||
SRC_URI="https://github.com/MrJoy/${PN}/archive/releases/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}/${PN}-releases-v${PV}"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 x86"
|
||||
|
||||
RDEPEND="dev-libs/gmp:0="
|
||||
DEPEND="${RDEPEND}"
|
||||
BDEPEND="app-doc/xmltoman"
|
||||
|
||||
HTML_DOCS=( "doc.html" "ssss.1.html" )
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
tc-export CC
|
||||
|
||||
# Respect users [CL]FLAGS and don't strip, as portage does this part
|
||||
sed -e 's/-O2/$(CFLAGS) -lgmp $(LDFLAGS)/g' -e '/strip/d' -i Makefile || die
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dobin ssss-split
|
||||
dosym ssss-split /usr/bin/ssss-combine
|
||||
|
||||
doman ssss.1
|
||||
|
||||
einstalldocs
|
||||
}
|
||||
Reference in New Issue
Block a user