Received: by mail.netbsd.org (Postfix, from userid 605) id 5E88684EBA; Wed, 28 Sep 2022 19:58:28 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 90B4684E7C for ; Wed, 28 Sep 2022 19:58:27 +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 pkmOefcIWSdb for ; Wed, 28 Sep 2022 19:58:27 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 12F9084C2C for ; Wed, 28 Sep 2022 19:58:27 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 0FA84FA90; Wed, 28 Sep 2022 19:58:27 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1664395107179280" MIME-Version: 1.0 Date: Wed, 28 Sep 2022 19:58:27 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/graphics/graphviz To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20220928195827.0FA84FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1664395107179280 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Wed Sep 28 19:58:26 UTC 2022 Modified Files: pkgsrc/graphics/graphviz: Makefile options.mk Log Message: graphviz: prefer quartz to x11 where available Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.254 -r1.255 pkgsrc/graphics/graphviz/Makefile cvs rdiff -u -r1.34 -r1.35 pkgsrc/graphics/graphviz/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1664395107179280 Content-Disposition: inline Content-Length: 1560 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.254 pkgsrc/graphics/graphviz/Makefile:1.255 --- pkgsrc/graphics/graphviz/Makefile:1.254 Wed Jul 27 12:29:08 2022 +++ pkgsrc/graphics/graphviz/Makefile Wed Sep 28 19:58:26 2022 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.254 2022/07/27 12:29:08 micha Exp $ +# $NetBSD: Makefile,v 1.255 2022/09/28 19:58:26 wiz Exp $ DISTNAME= graphviz-5.0.0 -PKGREVISION= 2 +PKGREVISION= 3 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_GITLAB:=api/v4/projects/4207231/packages/generic/graphviz-releases/${PKGVERSION_NOREV}/} Index: pkgsrc/graphics/graphviz/options.mk diff -u pkgsrc/graphics/graphviz/options.mk:1.34 pkgsrc/graphics/graphviz/options.mk:1.35 --- pkgsrc/graphics/graphviz/options.mk:1.34 Fri Jul 22 12:04:46 2022 +++ pkgsrc/graphics/graphviz/options.mk Wed Sep 28 19:58:26 2022 @@ -1,11 +1,14 @@ -# $NetBSD: options.mk,v 1.34 2022/07/22 12:04:46 micha Exp $ +# $NetBSD: options.mk,v 1.35 2022/09/28 19:58:26 wiz Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.graphviz PKG_SUPPORTED_OPTIONS= gd ghostscript gtk lua perl poppler svg tcl x11 .if exists(/System/Library/Frameworks/Quartz.framework) PKG_SUPPORTED_OPTIONS+= quartz +PKG_SUGGESTED_OPTIONS+= quartz +.else +PKG_SUGGESTED_OPTIONS+= x11 .endif -PKG_SUGGESTED_OPTIONS= gd x11 +PKG_SUGGESTED_OPTIONS= gd # Explanation of consequence of options, to help those trying to slim down: # lua tcl perl: extension language support # x11: Omits all linking with x11, which means x11 graphics supports as --_----------=_1664395107179280--