Received: by mail.netbsd.org (Postfix, from userid 605) id 5AEAA84D65; Thu, 22 Nov 2018 15:51:47 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 641C984D22 for ; Thu, 22 Nov 2018 15:51:46 +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 vkzoJriT7_aj for ; Thu, 22 Nov 2018 15:51:45 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 96E7684D1F for ; Thu, 22 Nov 2018 15:51:45 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8FF2CFB1F; Thu, 22 Nov 2018 15:51:45 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1542901905191260" MIME-Version: 1.0 Date: Thu, 22 Nov 2018 15:51:45 +0000 From: "Patrick Welche" Subject: CVS commit: pkgsrc/graphics/GraphicsMagick To: pkgsrc-changes@NetBSD.org Reply-To: prlw1@netbsd.org X-Mailer: log_accum Message-Id: <20181122155145.8FF2CFB1F@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. --_----------=_1542901905191260 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: prlw1 Date: Thu Nov 22 15:51:45 UTC 2018 Modified Files: pkgsrc/graphics/GraphicsMagick: Makefile Log Message: Build fix for GraphicsMagick 1.3.31 update [It is worth building packages with PKG_DEVELOPER=yes set before committing updates.] GraphicsMagick 1.3.31 added PKG_CONFIG, PKG_CONFIG_PATH, and presumably PKG_CONFIG_LIBDIR to its build system, which then appear in the output of "gm version". Ignore the WRKDIR which appears listed there. To generate a diff of this commit: cvs rdiff -u -r1.92 -r1.93 pkgsrc/graphics/GraphicsMagick/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1542901905191260 Content-Disposition: inline Content-Length: 745 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/GraphicsMagick/Makefile diff -u pkgsrc/graphics/GraphicsMagick/Makefile:1.92 pkgsrc/graphics/GraphicsMagick/Makefile:1.93 --- pkgsrc/graphics/GraphicsMagick/Makefile:1.92 Tue Nov 20 10:19:29 2018 +++ pkgsrc/graphics/GraphicsMagick/Makefile Thu Nov 22 15:51:45 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.92 2018/11/20 10:19:29 adam Exp $ +# $NetBSD: Makefile,v 1.93 2018/11/22 15:51:45 prlw1 Exp $ .include "Makefile.common" @@ -25,6 +25,8 @@ PKGCONFIG_OVERRIDE+= magick/GraphicsMagi PKGCONFIG_OVERRIDE+= wand/GraphicsMagickWand.pc.in PKGCONFIG_OVERRIDE+= Magick++/lib/GraphicsMagick++.pc.in +CHECK_WRKREF_SKIP= ${PREFIX}/lib/libGraphicsMagick.* + TEST_TARGET= check .include "options.mk" --_----------=_1542901905191260--