Received: by mail.netbsd.org (Postfix, from userid 605) id 5B24C84E4E; Thu, 19 Mar 2020 11:50:32 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D938384E3F for ; Thu, 19 Mar 2020 11:50:31 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id eZZpENR7LnV6 for ; Thu, 19 Mar 2020 11:50:31 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 401D984D55 for ; Thu, 19 Mar 2020 11:50:31 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 39ECDFB27; Thu, 19 Mar 2020 11:50:31 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1584618631168860" MIME-Version: 1.0 Date: Thu, 19 Mar 2020 11:50:31 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/graphics/glfw To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20200319115031.39ECDFB27@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. --_----------=_1584618631168860 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Thu Mar 19 11:50:31 UTC 2020 Modified Files: pkgsrc/graphics/glfw: Makefile Log Message: glfw: Missing PKGCONFIG_OVERRIDE To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 pkgsrc/graphics/glfw/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1584618631168860 Content-Disposition: inline Content-Length: 838 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/glfw/Makefile diff -u pkgsrc/graphics/glfw/Makefile:1.7 pkgsrc/graphics/glfw/Makefile:1.8 --- pkgsrc/graphics/glfw/Makefile:1.7 Thu Mar 19 11:23:53 2020 +++ pkgsrc/graphics/glfw/Makefile Thu Mar 19 11:50:31 2020 @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.7 2020/03/19 11:23:53 nia Exp $ +# $NetBSD: Makefile,v 1.8 2020/03/19 11:50:31 nia Exp $ DISTNAME= glfw-3.3.2 +PKGREVISION= 1 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_GITHUB:=glfw/} @@ -16,7 +17,9 @@ CMAKE_ARGS+= -DBUILD_SHARED_LIBS=ON CMAKE_ARGS+= -DGLFW_BUILD_DOCS=OFF CMAKE_ARGS+= -DGLFW_BUILD_EXAMPLES=OFF -.include "../../mk/bsd.fast.prefs.mk" +PKGCONFIG_OVERRIDE+= src/glfw3.pc.in + +.include "../../mk/bsd.prefs.mk" .if ${OPSYS} != "Darwin" . include "options.mk" . include "../../graphics/MesaLib/buildlink3.mk" --_----------=_1584618631168860--