Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3799D84CFC for ; Wed, 31 May 2023 18:40:01 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id h5SBvdv91sQH for ; Wed, 31 May 2023 18:40:00 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id A869684CEB for ; Wed, 31 May 2023 18:40:00 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A59F9FA87; Wed, 31 May 2023 18:40:00 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1685558400260310" MIME-Version: 1.0 Date: Wed, 31 May 2023 18:40:00 +0000 From: "nikita" Subject: CVS commit: pkgsrc/net/gnunet To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: nikita@netbsd.org X-Mailer: log_accum Message-Id: <20230531184000.A59F9FA87@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1685558400260310 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nikita Date: Wed May 31 18:40:00 UTC 2023 Modified Files: pkgsrc/net/gnunet: Makefile buildlink3.mk Log Message: gnunet: add libcurl-gnutls on Linux To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 pkgsrc/net/gnunet/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/net/gnunet/buildlink3.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1685558400260310 Content-Disposition: inline Content-Length: 2009 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/gnunet/Makefile diff -u pkgsrc/net/gnunet/Makefile:1.10 pkgsrc/net/gnunet/Makefile:1.11 --- pkgsrc/net/gnunet/Makefile:1.10 Wed May 17 23:24:03 2023 +++ pkgsrc/net/gnunet/Makefile Wed May 31 18:40:00 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2023/05/17 23:24:03 nikita Exp $ +# $NetBSD: Makefile,v 1.11 2023/05/31 18:40:00 nikita Exp $ DISTNAME= gnunet-0.19.4 PKGREVISION= 2 @@ -34,6 +34,9 @@ CONFIGURE_ARGS+= --with-jose=${BUILDLINK CONFIGURE_ARGS+= --with-libgcrypt-prefix=${BUILDLINK_PREFIX.libgcrypt} CONFIGURE_ARGS+= --with-microhttpd=${BUILDLINK_PREFIX.libmicrohttpd} CONFIGURE_ARGS+= --without-zbar +.if ${OPSYS} == "Linux" +CONFIGURE_ARGS+= --with-libcurl=${BUILDLINK_PREFIX.libcurl-gnutls}/lib +.endif GNUNET_LOG_DIR= ${VARBASE}/chroot/gnunet/cache @@ -128,6 +131,9 @@ SPECIAL_PERMS+= ${PREFIX}/lib/gnunet/lib .include "../../textproc/jansson/buildlink3.mk" .include "../../textproc/jose/buildlink3.mk" .include "../../textproc/libunistring/buildlink3.mk" +.if ${OPSYS} == "Linux" +.include "../../www/libcurl-gnutls/buildlink3.mk" +.endif .include "../../www/curl/buildlink3.mk" .include "../../www/libmicrohttpd/buildlink3.mk" .include "../../mk/atomic64.mk" Index: pkgsrc/net/gnunet/buildlink3.mk diff -u pkgsrc/net/gnunet/buildlink3.mk:1.3 pkgsrc/net/gnunet/buildlink3.mk:1.4 --- pkgsrc/net/gnunet/buildlink3.mk:1.3 Sat May 6 19:08:53 2023 +++ pkgsrc/net/gnunet/buildlink3.mk Wed May 31 18:40:00 2023 @@ -1,4 +1,4 @@ -# $NetBSD: buildlink3.mk,v 1.3 2023/05/06 19:08:53 ryoon Exp $ +# $NetBSD: buildlink3.mk,v 1.4 2023/05/31 18:40:00 nikita Exp $ BUILDLINK_TREE+= gnunet @@ -72,6 +72,9 @@ pkgbase:= gnunet .include "../../textproc/jose/buildlink3.mk" .include "../../textproc/libunistring/buildlink3.mk" .include "../../www/curl/buildlink3.mk" +.if ${OPSYS} == "Linux" +.include "../../www/libcurl-gnutls/buildlink3.mk" +.endif .include "../../www/libmicrohttpd/buildlink3.mk" .include "../../mk/pthread.buildlink3.mk" --_----------=_1685558400260310--