diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2022-02-09 20:28:34 +0100 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2022-02-09 23:55:02 +0100 |
commit | e62ca319e1f5c2a6e6bf4d27182d1e1a0dab3ea8 (patch) | |
tree | 16968c2fe434f21885c9a29b43574d4c2bb232d0 /app-crypt/ssss | |
parent | app-crypt/ssss: update EAPI 7 -> 8 (diff) | |
download | gentoo-e62ca319e1f5c2a6e6bf4d27182d1e1a0dab3ea8.tar.gz gentoo-e62ca319e1f5c2a6e6bf4d27182d1e1a0dab3ea8.tar.bz2 gentoo-e62ca319e1f5c2a6e6bf4d27182d1e1a0dab3ea8.zip |
app-crypt/ssss: drop 0.5.7
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'app-crypt/ssss')
-rw-r--r-- | app-crypt/ssss/ssss-0.5.7.ebuild | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/app-crypt/ssss/ssss-0.5.7.ebuild b/app-crypt/ssss/ssss-0.5.7.ebuild deleted file mode 100644 index 53234e2029f3..000000000000 --- a/app-crypt/ssss/ssss-0.5.7.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2021 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="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 -} |