diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2020-05-10 16:38:39 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2020-05-10 18:22:10 +0200 |
commit | bc795bce28ad719c5773bfc9c0746322e079dd9e (patch) | |
tree | b66b8525b88ea7cec88419b4394920c800627a5a /app-crypt/ssss | |
parent | app-crypt/ssss: respect users ldflags (diff) | |
download | gentoo-bc795bce28ad719c5773bfc9c0746322e079dd9e.tar.gz gentoo-bc795bce28ad719c5773bfc9c0746322e079dd9e.tar.bz2 gentoo-bc795bce28ad719c5773bfc9c0746322e079dd9e.zip |
app-crypt/ssss: drop old version
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'app-crypt/ssss')
-rw-r--r-- | app-crypt/ssss/ssss-0.5.ebuild | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/app-crypt/ssss/ssss-0.5.ebuild b/app-crypt/ssss/ssss-0.5.ebuild deleted file mode 100644 index f9d6d9eb8ced..000000000000 --- a/app-crypt/ssss/ssss-0.5.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# 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 -} |