Received: by mail.netbsd.org (Postfix, from userid 605) id 2B3AE84DDF; Fri, 26 Apr 2019 15:19:20 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A5EA184DAA for ; Fri, 26 Apr 2019 15:19:19 +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 vYbLzZgcJ4ql for ; Fri, 26 Apr 2019 15:19:19 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 0DD8084CD4 for ; Fri, 26 Apr 2019 15:19:19 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 08394FB16; Fri, 26 Apr 2019 15:19:19 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_155629195957030" MIME-Version: 1.0 Date: Fri, 26 Apr 2019 15:19:19 +0000 From: "Gavan Fantom" Subject: CVS commit: pkgsrc/print/ghostscript-agpl To: pkgsrc-changes@NetBSD.org Reply-To: gavan@netbsd.org X-Mailer: log_accum Message-Id: <20190426151919.08394FB16@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. --_----------=_155629195957030 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gavan Date: Fri Apr 26 15:19:18 UTC 2019 Modified Files: pkgsrc/print/ghostscript-agpl: Makefile Log Message: ghostscript-agpl: Require freetype2>=2.10.0 The latest version of ghostscript-agpl calls functions that were introduced in freetype2 version 2.10.0, and the build fails when building against an earlier version. To generate a diff of this commit: cvs rdiff -u -r1.41 -r1.42 pkgsrc/print/ghostscript-agpl/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_155629195957030 Content-Disposition: inline Content-Length: 795 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/print/ghostscript-agpl/Makefile diff -u pkgsrc/print/ghostscript-agpl/Makefile:1.41 pkgsrc/print/ghostscript-agpl/Makefile:1.42 --- pkgsrc/print/ghostscript-agpl/Makefile:1.41 Wed Apr 17 08:28:44 2019 +++ pkgsrc/print/ghostscript-agpl/Makefile Fri Apr 26 15:19:18 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.41 2019/04/17 08:28:44 adam Exp $ +# $NetBSD: Makefile,v 1.42 2019/04/26 15:19:18 gavan Exp $ DISTNAME= ghostscript-${GS_VERSION} PKGNAME= ${DISTNAME:S/ghostscript/ghostscript-agpl/} @@ -81,6 +81,8 @@ CPPFLAGS.SunOS+= -D__C99FEATURES__ # require linking against libiconv when it should do so. BUILDLINK_TRANSFORM.IRIX+= l:fontconfig:fontconfig:iconv +BUILDLINK_API_DEPENDS.freetype2+= freetype2>=2.10.0 + .include "options.mk" post-extract: --_----------=_155629195957030--