From owner-svn-ports-head@freebsd.org Tue Aug 25 22:37:57 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 7C87F3BE9C3; Tue, 25 Aug 2020 22:37:57 +0000 (UTC) (envelope-from asomers@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BbkQs2mycz4GRf; Tue, 25 Aug 2020 22:37:57 +0000 (UTC) (envelope-from asomers@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 42A28915A; Tue, 25 Aug 2020 22:37:57 +0000 (UTC) (envelope-from asomers@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 07PMbvSE098103; Tue, 25 Aug 2020 22:37:57 GMT (envelope-from asomers@FreeBSD.org) Received: (from asomers@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 07PMbvx9098102; Tue, 25 Aug 2020 22:37:57 GMT (envelope-from asomers@FreeBSD.org) Message-Id: <202008252237.07PMbvx9098102@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: asomers set sender to asomers@FreeBSD.org using -f From: Alan Somers Date: Tue, 25 Aug 2020 22:37:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r546235 - head/net/nbdkit X-SVN-Group: ports-head X-SVN-Commit-Author: asomers X-SVN-Commit-Paths: head/net/nbdkit X-SVN-Commit-Revision: 546235 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Aug 2020 22:37:57 -0000 Author: asomers (src committer) Date: Tue Aug 25 22:37:56 2020 New Revision: 546235 URL: https://svnweb.freebsd.org/changeset/ports/546235 Log: net/nbdkit: fix the GNUTLS option The GNUTLS option requires pkgconf. Since so many options do, this commit enables it unconditionally. PR: 248913 Reported by: Richard W.M. Jones Approved by: kevans (ports) Sponsored by: Axcient Modified: head/net/nbdkit/Makefile Modified: head/net/nbdkit/Makefile ============================================================================== --- head/net/nbdkit/Makefile Tue Aug 25 21:34:38 2020 (r546234) +++ head/net/nbdkit/Makefile Tue Aug 25 22:37:56 2020 (r546235) @@ -2,6 +2,7 @@ PORTNAME= nbdkit PORTVERSION= 1.20.4 +PORTREVISION= 1 CATEGORIES= net # XXX Although nbdkit uses github for its homepage, the release tarballs served # by github haven't been through autoconf. So we must download the sources @@ -16,7 +17,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= bash:shells/bash -USES= compiler:c11 gmake libtool +USES= compiler:c11 gmake libtool pkgconfig GNU_CONFIGURE= yes INSTALL_TARGET= install-strip @@ -46,12 +47,10 @@ OPTIONS_DEFAULT= GNUTLS MANPAGES OPTIONS_SUB= yes CURL_BUILD_DEPENDS+= curl:ftp/curl -CURL_BUILD_DEPENDS+= pkgconf:devel/pkgconf CURL_CONFIGURE_WITH= curl CURL_RUN_DEPENDS+= curl:ftp/curl LIBVIRT_CONFIGURE_WITH= libvirt LIBVIRT_LIB_DEPENDS= libvirt.so:devel/libvirt -LZMA_BUILD_DEPENDS+= pkgconf:devel/pkgconf LZMA_CONFIGURE_WITH= liblzma LZMA_LIB_DEPENDS= liblzma.so:archivers/lzmalib MANPAGES_USE+= perl5=build @@ -64,7 +63,6 @@ RUBY_CONFIGURE_ENABLE= ruby RUBY_USE+= ruby SSH_CONFIGURE_WITH= ssh SSH_LIB_DEPENDS= libssh.so:security/libssh -ZLIB_BUILD_DEPENDS+= pkgconf:devel/pkgconf ZLIB_CONFIGURE_WITH= zlib .include