Received: by mail.netbsd.org (Postfix, from userid 605) id E8ADD84D92; Fri, 10 Jan 2020 06:29:49 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6E8C684D48 for ; Fri, 10 Jan 2020 06:29:49 +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 ynqIXyqkBgmI for ; Fri, 10 Jan 2020 06:29:49 +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 BC4A584D43 for ; Fri, 10 Jan 2020 06:29:48 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B060DFBF4; Fri, 10 Jan 2020 06:29:48 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1578637788278670" MIME-Version: 1.0 Date: Fri, 10 Jan 2020 06:29:48 +0000 From: "Niclas Rosenvik" Subject: CVS commit: pkgsrc/devel/googletest To: pkgsrc-changes@NetBSD.org Reply-To: nros@netbsd.org X-Mailer: log_accum Message-Id: <20200110062948.B060DFBF4@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. --_----------=_1578637788278670 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nros Date: Fri Jan 10 06:29:48 UTC 2020 Modified Files: pkgsrc/devel/googletest: Makefile Log Message: Add missing rpaths to pkg-config files (pkg-config overrides) To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 pkgsrc/devel/googletest/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1578637788278670 Content-Disposition: inline Content-Length: 855 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/googletest/Makefile diff -u pkgsrc/devel/googletest/Makefile:1.15 pkgsrc/devel/googletest/Makefile:1.16 --- pkgsrc/devel/googletest/Makefile:1.15 Mon Sep 10 10:23:33 2018 +++ pkgsrc/devel/googletest/Makefile Fri Jan 10 06:29:48 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.15 2018/09/10 10:23:33 adam Exp $ +# $NetBSD: Makefile,v 1.16 2020/01/10 06:29:48 nros Exp $ DISTNAME= googletest-1.8.1 CATEGORIES= devel @@ -12,7 +12,12 @@ LICENSE= modified-bsd INSTALLATION_DIRS= bin -USE_CMAKE= yes -USE_LANGUAGES= c c++11 +USE_CMAKE= yes +USE_LANGUAGES= c c++11 + +PKGCONFIG_OVERRIDE+= googlemock/cmake/gmock.pc.in +PKGCONFIG_OVERRIDE+= googlemock/cmake/gmock_main.pc.in +PKGCONFIG_OVERRIDE+= googletest/cmake/gtest.pc.in +PKGCONFIG_OVERRIDE+= googletest/cmake/gtest_main.pc.in .include "../../mk/bsd.pkg.mk" --_----------=_1578637788278670--