Received: by mail.netbsd.org (Postfix, from userid 605) id E288F84DFD; Sun, 27 Oct 2019 17:44:34 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6B9AF84DFB for ; Sun, 27 Oct 2019 17:44:34 +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 qeF7VG9fbc8e for ; Sun, 27 Oct 2019 17:44:34 +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 C12F884D6C for ; Sun, 27 Oct 2019 17:44:33 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id BAD0BFA8D; Sun, 27 Oct 2019 17:44:33 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_157219827369700" MIME-Version: 1.0 Date: Sun, 27 Oct 2019 17:44:33 +0000 From: "Manuel Bouyer" Subject: CVS commit: pkgsrc/geography/opencpn To: pkgsrc-changes@NetBSD.org Reply-To: bouyer@netbsd.org X-Mailer: log_accum Message-Id: <20191027174433.BAD0BFA8D@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. --_----------=_157219827369700 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: bouyer Date: Sun Oct 27 17:44:33 UTC 2019 Modified Files: pkgsrc/geography/opencpn: Makefile Log Message: Hack to make it build with new pango (pango-coverage.h does #include ) To generate a diff of this commit: cvs rdiff -u -r1.36 -r1.37 pkgsrc/geography/opencpn/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_157219827369700 Content-Disposition: inline Content-Length: 900 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/geography/opencpn/Makefile diff -u pkgsrc/geography/opencpn/Makefile:1.36 pkgsrc/geography/opencpn/Makefile:1.37 --- pkgsrc/geography/opencpn/Makefile:1.36 Sun Oct 20 11:10:48 2019 +++ pkgsrc/geography/opencpn/Makefile Sun Oct 27 17:44:33 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.36 2019/10/20 11:10:48 nia Exp $ +# $NetBSD: Makefile,v 1.37 2019/10/27 17:44:33 bouyer Exp $ DISTNAME= OpenCPN-5.0.0 PKGNAME= ${DISTNAME:S/OpenCPN/opencpn/} @@ -41,6 +41,10 @@ SUBST_SED.prefix= -e s,"/usr/local,"${PR # Ensure we export symbols in the linked shared object. LDFLAGS+= ${EXPORT_SYMBOLS_LDFLAGS} +# hack so that pango find harfbuzz's headers +CFLAGS+= -I${PREFIX}/include/harfbuzz +CXXFLAGS+= -I${PREFIX}/include/harfbuzz + .include "../../audio/libsndfile/buildlink3.mk" .include "../../devel/cmake/buildlink3.mk" .include "../../x11/wxGTK30/buildlink3.mk" --_----------=_157219827369700--