From bdedb316cec963f6448ce33ae6d4b5fd7751eb41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Duval?= Date: Wed, 20 Nov 2024 13:16:10 +0100 Subject: [PATCH] gnupg: disable libdns libdns doesn't work right with Haiku netstack. To workaround disable it. --- app-crypt/gnupg/gnupg-2.4.3.recipe | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/app-crypt/gnupg/gnupg-2.4.3.recipe b/app-crypt/gnupg/gnupg-2.4.3.recipe index ca2457cc0..f0ade4868 100644 --- a/app-crypt/gnupg/gnupg-2.4.3.recipe +++ b/app-crypt/gnupg/gnupg-2.4.3.recipe @@ -29,7 +29,7 @@ LICENSE="CC0 v1.0 GNU GPL v3 GNU LGPL v2.1 GNU LGPL v3" -REVISION="1" +REVISION="2" SOURCE_URI="https://gnupg.org/ftp/gcrypt/gnupg/gnupg-$portVersion.tar.bz2" CHECKSUM_SHA256="a271ae6d732f6f4d80c258ad9ee88dd9c94c8fdc33c3e45328c4d7c126bd219d" PATCHES="gnupg-$portVersion.patchset" @@ -128,11 +128,12 @@ TEST_REQUIRES=" BUILD() { - autoreconf -vfi + AUTOPOINT=true autoreconf -vfi runConfigure ./configure \ --libexecdir=$libDir/gnupg \ --enable-wks-tools \ - --with-bzip2 + --with-bzip2 \ + --disable-libdns make $jobArgs make -C doc html }