diff options
author | 2022-09-27 21:00:05 -0400 | |
---|---|---|
committer | 2022-09-27 22:34:35 -0400 | |
commit | ddf596677c68bde73e8c57c350e93ae22c6c5ee7 (patch) | |
tree | 546851248b823d234daecf33eba5865de98591cd /net-misc/hashcash | |
parent | net-misc/unix2tcp: fix build with clang16 (diff) | |
download | gentoo-ddf596677c68bde73e8c57c350e93ae22c6c5ee7.tar.gz gentoo-ddf596677c68bde73e8c57c350e93ae22c6c5ee7.tar.bz2 gentoo-ddf596677c68bde73e8c57c350e93ae22c6c5ee7.zip |
net-misc/hashcash: EAPI7->8, respect AR
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'net-misc/hashcash')
-rw-r--r-- | net-misc/hashcash/hashcash-1.22-r2.ebuild | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/net-misc/hashcash/hashcash-1.22-r2.ebuild b/net-misc/hashcash/hashcash-1.22-r2.ebuild index 867929119c5a..68a606092d65 100644 --- a/net-misc/hashcash/hashcash-1.22-r2.ebuild +++ b/net-misc/hashcash/hashcash-1.22-r2.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit toolchain-funcs @@ -15,18 +15,24 @@ KEYWORDS="~amd64 ~ppc ~x86" src_prepare() { default + sed -i -e "/COPT_GENERIC = -O3/d" Makefile || die } src_compile() { - emake CC="$(tc-getCC)" generic + tc-export AR CC + + emake generic } src_install() { dobin hashcash doman hashcash.1 + dodoc CHANGELOG + docinto examples dodoc contrib/hashcash-{request,sendmail{,.txt}} contrib/hashfork.{c,py,txt} + docompress -x /usr/share/doc/${PF}/examples } |