Received: by mail.netbsd.org (Postfix, from userid 605) id AF17084D7D; Mon, 30 Sep 2019 15:36:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 352E084D5B for ; Mon, 30 Sep 2019 15:36:44 +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 fw3pP6QOLs1O for ; Mon, 30 Sep 2019 15:36:43 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 8FB3B84D3E for ; Mon, 30 Sep 2019 15:36:43 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 89268FBF4; Mon, 30 Sep 2019 15:36:43 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1569857803251730" MIME-Version: 1.0 Date: Mon, 30 Sep 2019 15:36:43 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/editors/codelite To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20190930153643.89268FBF4@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. --_----------=_1569857803251730 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Mon Sep 30 15:36:43 UTC 2019 Modified Files: pkgsrc/editors/codelite: Makefile Log Message: codelite: Work around harfbuzz headers for pango not being in the -I path. To generate a diff of this commit: cvs rdiff -u -r1.23 -r1.24 pkgsrc/editors/codelite/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1569857803251730 Content-Disposition: inline Content-Length: 820 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/editors/codelite/Makefile diff -u pkgsrc/editors/codelite/Makefile:1.23 pkgsrc/editors/codelite/Makefile:1.24 --- pkgsrc/editors/codelite/Makefile:1.23 Wed Aug 28 09:09:19 2019 +++ pkgsrc/editors/codelite/Makefile Mon Sep 30 15:36:43 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.23 2019/08/28 09:09:19 wiz Exp $ +# $NetBSD: Makefile,v 1.24 2019/09/30 15:36:43 nia Exp $ DISTNAME= codelite-13.0 PKGREVISION= 1 @@ -20,6 +20,9 @@ CMAKE_ARGS+= -DPREFIX:STRING=${PREFIX} # For some reason CMAKE_ARGS.NetBSD+=-DIS_NETBSD:STRING=1 doesn't work for me .include "../../mk/bsd.prefs.mk" +# Likely needed because pango's pkgconfig CFLAGS aren't being applied. +CXXFLAGS+= -I${BUILDLINK_DIR}/include/harfbuzz + CHECK_PORTABILITY_SKIP+= sdk/wxsqlite3/configure .if ${OPSYS} == "NetBSD" --_----------=_1569857803251730--