From 4fd6556ce28bba04aafb277a2023677541ba2a10 Mon Sep 17 00:00:00 2001 From: Andrew Savchenko Date: Tue, 26 Jul 2022 18:26:33 +0300 Subject: app-text/xpdf: check singnature only for the source tarball Upstream provides GPG signature for the source tarball, but not for i18n charset tarballs. So manual verification of the source tarball is required instead of default verify-all action. Closes: https://bugs.gentoo.org/857258 Signed-off-by: Andrew Savchenko --- app-text/xpdf/xpdf-4.04.ebuild | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'app-text/xpdf') diff --git a/app-text/xpdf/xpdf-4.04.ebuild b/app-text/xpdf/xpdf-4.04.ebuild index f5fa12f939ab..682bfe8d9f78 100644 --- a/app-text/xpdf/xpdf-4.04.ebuild +++ b/app-text/xpdf/xpdf-4.04.ebuild @@ -59,6 +59,13 @@ PATCHES=( DOCS=( ANNOUNCE CHANGES README ) +src_unpack() { + if use verify-sig; then + verify-sig_verify_detached "${DISTDIR}"/${P}.tar.gz{,.sig} + fi + default +} + src_prepare() { sed -i \ "s|/usr/local/etc|${EPREFIX}/etc|; -- cgit v1.2.3-65-gdbad