Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 092A884E6E for ; Wed, 7 Jun 2023 13:33:00 +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 BAr6Ckuqj2Py for ; Wed, 7 Jun 2023 13:32:59 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 7C2E084D52 for ; Wed, 7 Jun 2023 13:32:59 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 04E26FA89; Wed, 7 Jun 2023 13:32:50 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1686144769278280" MIME-Version: 1.0 Date: Wed, 7 Jun 2023 13:32:49 +0000 From: "Michael Baeuerle" Subject: CVS commit: pkgsrc/graphics/graphviz To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: micha@netbsd.org X-Mailer: log_accum Message-Id: <20230607133250.04E26FA89@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1686144769278280 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: micha Date: Wed Jun 7 13:32:49 UTC 2023 Modified Files: pkgsrc/graphics/graphviz: Makefile options.mk Log Message: graphics/graphviz: Declare minimum required API versions of librsvg and pango As documented by upstream. To generate a diff of this commit: cvs rdiff -u -r1.270 -r1.271 pkgsrc/graphics/graphviz/Makefile cvs rdiff -u -r1.35 -r1.36 pkgsrc/graphics/graphviz/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1686144769278280 Content-Disposition: inline Content-Length: 1624 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/graphviz/Makefile diff -u pkgsrc/graphics/graphviz/Makefile:1.270 pkgsrc/graphics/graphviz/Makefile:1.271 --- pkgsrc/graphics/graphviz/Makefile:1.270 Wed Jun 7 10:09:48 2023 +++ pkgsrc/graphics/graphviz/Makefile Wed Jun 7 13:32:49 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.270 2023/06/07 10:09:48 micha Exp $ +# $NetBSD: Makefile,v 1.271 2023/06/07 13:32:49 micha Exp $ DISTNAME= graphviz-8.0.5 CATEGORIES= graphics @@ -127,6 +127,7 @@ DEPENDS+= urw-fonts-[0-9]*:../../fonts/u .include "../../converters/libiconv/buildlink3.mk" .include "../../devel/gettext-lib/buildlink3.mk" .include "../../devel/libltdl/buildlink3.mk" +BUILDLINK_API_DEPENDS.pango+= pango>=1.22.0 .include "../../devel/pango/buildlink3.mk" .include "../../fonts/fontconfig/buildlink3.mk" .include "../../graphics/freetype2/buildlink3.mk" Index: pkgsrc/graphics/graphviz/options.mk diff -u pkgsrc/graphics/graphviz/options.mk:1.35 pkgsrc/graphics/graphviz/options.mk:1.36 --- pkgsrc/graphics/graphviz/options.mk:1.35 Wed Sep 28 19:58:26 2022 +++ pkgsrc/graphics/graphviz/options.mk Wed Jun 7 13:32:49 2023 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.35 2022/09/28 19:58:26 wiz Exp $ +# $NetBSD: options.mk,v 1.36 2023/06/07 13:32:49 micha Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.graphviz PKG_SUPPORTED_OPTIONS= gd ghostscript gtk lua perl poppler svg tcl x11 @@ -72,6 +72,7 @@ CONFIGURE_ARGS+= --without-quartz .endif .if !empty(PKG_OPTIONS:Msvg) +BUILDLINK_API_DEPENDS.librsvg+= librsvg>=2.36.0 . include "../../graphics/librsvg/buildlink3.mk" PLIST.svg= yes CONFIGURE_ARGS+= --with-rsvg --_----------=_1686144769278280--