Received: by mail.netbsd.org (Postfix, from userid 605) id 0DC8384D7A; Sun, 23 Sep 2018 18:39:25 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1634B84D36 for ; Sun, 23 Sep 2018 18:39:24 +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 ho4BFne7pXxr for ; Sun, 23 Sep 2018 18:39:23 +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 38E0184D22 for ; Sun, 23 Sep 2018 18:39:23 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 232D1FBEE; Sun, 23 Sep 2018 18:39:23 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_153772796310050" MIME-Version: 1.0 Date: Sun, 23 Sep 2018 18:39:23 +0000 From: "Benny Siegert" Subject: CVS commit: pkgsrc/security/boringssl To: pkgsrc-changes@NetBSD.org Reply-To: bsiegert@netbsd.org X-Mailer: log_accum Message-Id: <20180923183923.232D1FBEE@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_153772796310050 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: bsiegert Date: Sun Sep 23 18:39:23 UTC 2018 Modified Files: pkgsrc/security/boringssl: Makefile Log Message: Use correct versioned Go dependency, subst go tool path. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 pkgsrc/security/boringssl/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_153772796310050 Content-Disposition: inline Content-Length: 938 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/boringssl/Makefile diff -u pkgsrc/security/boringssl/Makefile:1.10 pkgsrc/security/boringssl/Makefile:1.11 --- pkgsrc/security/boringssl/Makefile:1.10 Wed Aug 22 09:46:17 2018 +++ pkgsrc/security/boringssl/Makefile Sun Sep 23 18:39:22 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2018/08/22 09:46:17 wiz Exp $ +# $NetBSD: Makefile,v 1.11 2018/09/23 18:39:22 bsiegert Exp $ DISTNAME= boringssl-20151230 PKGREVISION= 8 @@ -12,13 +12,20 @@ LICENSE= openssl WRKSRC= ${WRKDIR}/boringssl -BUILD_DEPENDS+= go>=1.4:../../lang/go +.include "../../lang/go/version.mk" + +BUILD_DEPENDS+= ${GO_PACKAGE_DEP} USE_TOOLS+= cmake perl USE_LANGUAGES+= c c++ AUTO_MKDIRS= yes +SUBST_CLASSES+= go +SUBST_STAGE.go= post-patch +SUBST_FILES.go= CMakeLists.txt +SUBST_SED.go= -e '/find_program.GO_EXECUTABLE/s,go,${GO},' + do-build: mkdir -p ${WRKSRC}/build cd ${WRKSRC}/build && cmake .. --_----------=_153772796310050--