From owner-svn-ports-head@freebsd.org Sat Oct 26 16:16:42 2019 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 2D13D1785CE; Sat, 26 Oct 2019 16:16:42 +0000 (UTC) (envelope-from fluffy@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) server-signature RSA-PSS (4096 bits) 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 470mMG0LbXz4Lgc; Sat, 26 Oct 2019 16:16:42 +0000 (UTC) (envelope-from fluffy@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 CABBCA701; Sat, 26 Oct 2019 16:16:41 +0000 (UTC) (envelope-from fluffy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x9QGGf9d009928; Sat, 26 Oct 2019 16:16:41 GMT (envelope-from fluffy@FreeBSD.org) Received: (from fluffy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x9QGGf9H009927; Sat, 26 Oct 2019 16:16:41 GMT (envelope-from fluffy@FreeBSD.org) Message-Id: <201910261616.x9QGGf9H009927@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: fluffy set sender to fluffy@FreeBSD.org using -f From: Dima Panov Date: Sat, 26 Oct 2019 16:16:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r515713 - in head/dns: libasr libasr-devel X-SVN-Group: ports-head X-SVN-Commit-Author: fluffy X-SVN-Commit-Paths: in head/dns: libasr libasr-devel X-SVN-Commit-Revision: 515713 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.29 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: Sat, 26 Oct 2019 16:16:42 -0000 Author: fluffy Date: Sat Oct 26 16:16:41 2019 New Revision: 515713 URL: https://svnweb.freebsd.org/changeset/ports/515713 Log: - LibASR doesn't need to depend on *SSL but optional CAroots package MFH: 2019Q4 Modified: head/dns/libasr-devel/Makefile head/dns/libasr/Makefile Modified: head/dns/libasr-devel/Makefile ============================================================================== --- head/dns/libasr-devel/Makefile Sat Oct 26 16:15:49 2019 (r515712) +++ head/dns/libasr-devel/Makefile Sat Oct 26 16:16:41 2019 (r515713) @@ -3,10 +3,9 @@ PORTNAME= libasr PORTVERSION= 201602131606 -PORTREVISION= 1 +PORTREVISION= 3 CATEGORIES= dns -MASTER_SITES= http://www.opensmtpd.org/archives/ \ - http://distfiles.pirateparty.in/ashish/ +MASTER_SITES= http://www.opensmtpd.org/archives/ PKGNAMESUFFIX= -devel MAINTAINER= fluffy@FreeBSD.org @@ -16,14 +15,26 @@ LICENSE= ISCL BSD4CLAUSE BSD3CLAUSE BSD2CLAUSE LICENSE_COMB= multi LICENSE_FILE= ${WRKSRC}/LICENCE +USES= cpe groff libtool + CONFLICTS= libasr-[0-9]* -USES= groff libtool ssl:build +OPTIONS_DEFINE= CA_BUNDLE +OPTIONS_DEFAULT= CA_BUNDLE + +CA_BUNDLE_DESC= Use NSS CA bundle for SSL instead of /etc/ssl/cert.pem + +CPE_VENDOR= openbsd + GNU_CONFIGURE= yes USE_LDCONFIG= yes CONFIGURE_ARGS= --with-mantype="man" INSTALL_TARGET= install-strip -CFLAGS+= -I${OPENSSLINC} +CA_BUNDLE_CONFIGURE_WITH= ca-file=${LOCALBASE}/share/certs/ca-root-nss.crt +CA_BUNDLE_RUN_DEPENDS= ${LOCALBASE}/share/certs/ca-root-nss.crt:security/ca_root_nss + +post-patch: + ${REINPLACE_CMD} -e '/opensslv.h/d' ${WRKSRC}/openbsd-compat/includes.h .include Modified: head/dns/libasr/Makefile ============================================================================== --- head/dns/libasr/Makefile Sat Oct 26 16:15:49 2019 (r515712) +++ head/dns/libasr/Makefile Sat Oct 26 16:16:41 2019 (r515713) @@ -3,10 +3,9 @@ PORTNAME= libasr PORTVERSION= 1.0.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= dns -MASTER_SITES= http://www.opensmtpd.org/archives/ \ - http://distfiles.pirateparty.in/ashish/ +MASTER_SITES= http://www.opensmtpd.org/archives/ MAINTAINER= fluffy@FreeBSD.org COMMENT= Asynchronous DNS resolver library @@ -15,14 +14,26 @@ LICENSE= ISCL BSD4CLAUSE BSD3CLAUSE BSD2CLAUSE LICENSE_COMB= multi LICENSE_FILE= ${WRKSRC}/LICENCE +USES= cpe groff libtool + CONFLICTS= libasr-devel-[0-9]* -USES= groff libtool ssl:build +OPTIONS_DEFINE= CA_BUNDLE +OPTIONS_DEFAULT= CA_BUNDLE + +CA_BUNDLE_DESC= Use NSS CA bundle for SSL instead of /etc/ssl/cert.pem + +CPE_VENDOR= openbsd + GNU_CONFIGURE= yes USE_LDCONFIG= yes CONFIGURE_ARGS= --with-mantype="man" INSTALL_TARGET= install-strip -CFLAGS+= -I${OPENSSLINC} +CA_BUNDLE_CONFIGURE_WITH= ca-file=${LOCALBASE}/share/certs/ca-root-nss.crt +CA_BUNDLE_RUN_DEPENDS= ${LOCALBASE}/share/certs/ca-root-nss.crt:security/ca_root_nss + +post-patch: + ${REINPLACE_CMD} -e '/opensslv.h/d' ${WRKSRC}/openbsd-compat/includes.h .include