diff options
author | 2023-12-31 18:17:29 +0100 | |
---|---|---|
committer | 2024-01-07 01:19:32 +0100 | |
commit | d83daa06efcf1f9aeb3824e6b20b54541f771d4f (patch) | |
tree | 7bbb990139514bdf61735b5e1de8b8696c19f18b /app-crypt/scdrand | |
parent | app-shells/squirrelsh: remove old (diff) | |
download | gentoo-d83daa06efcf1f9aeb3824e6b20b54541f771d4f.tar.gz gentoo-d83daa06efcf1f9aeb3824e6b20b54541f771d4f.tar.bz2 gentoo-d83daa06efcf1f9aeb3824e6b20b54541f771d4f.zip |
app-crypt/scdrand: EAPI8 bump, fix calling AR directly, bug #722026
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://bugs.gentoo.org/722026
Closes: https://github.com/gentoo/gentoo/pull/34586
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'app-crypt/scdrand')
-rw-r--r-- | app-crypt/scdrand/scdrand-0.3.5.ebuild | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/app-crypt/scdrand/scdrand-0.3.5.ebuild b/app-crypt/scdrand/scdrand-0.3.5.ebuild index da331728dfe5..33f8ef8cb4ed 100644 --- a/app-crypt/scdrand/scdrand-0.3.5.ebuild +++ b/app-crypt/scdrand/scdrand-0.3.5.ebuild @@ -1,17 +1,19 @@ -# Copyright 2019-2020 Gentoo Authors +# Copyright 2019-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -MY_P=scdtools-${PV} +inherit toolchain-funcs + +MY_P="scdtools-${PV}" DESCRIPTION="Feed kernel entropy pool from smartcard's TRNG" HOMEPAGE="https://incenp.org/dvlpt/scdtools.html" SRC_URI="https://incenp.org/files/softs/scdtools/$(ver_cut 1-2)/${MY_P}.tar.gz" +S="${WORKDIR}/${MY_P}" LICENSE="GPL-3+" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" DEPEND="dev-libs/libgcrypt:= dev-libs/libassuan:= @@ -19,10 +21,8 @@ DEPEND="dev-libs/libgcrypt:= RDEPEND="${DEPEND} app-crypt/gnupg" -S=${WORKDIR}/${MY_P} - src_compile() { - emake -C lib + emake AR="$(tc-getAR)" -C lib emake -C src scdrand } |