Received: by mail.netbsd.org (Postfix, from userid 605) id CB0E284DEC; Fri, 28 Aug 2020 17:09:14 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5277684D90 for ; Fri, 28 Aug 2020 17:09:14 +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 DxT8tSIoJ_dK for ; Fri, 28 Aug 2020 17:09:13 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id CBEEC84CF1 for ; Fri, 28 Aug 2020 17:09:13 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C5464FB27; Fri, 28 Aug 2020 17:09:13 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_159863455349960" MIME-Version: 1.0 Date: Fri, 28 Aug 2020 17:09:13 +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: <20200828170913.C5464FB27@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. --_----------=_159863455349960 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Fri Aug 28 17:09:13 UTC 2020 Modified Files: pkgsrc/graphics/graphviz: Makefile options.mk Log Message: graphviz: default gtk option to off Reduce rarely used dependency for package that's quite low in some dependency chains. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.219 -r1.220 pkgsrc/graphics/graphviz/Makefile cvs rdiff -u -r1.30 -r1.31 pkgsrc/graphics/graphviz/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_159863455349960 Content-Disposition: inline Content-Length: 1534 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.219 pkgsrc/graphics/graphviz/Makefile:1.220 --- pkgsrc/graphics/graphviz/Makefile:1.219 Mon Aug 17 20:17:29 2020 +++ pkgsrc/graphics/graphviz/Makefile Fri Aug 28 17:09:13 2020 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.219 2020/08/17 20:17:29 leot Exp $ +# $NetBSD: Makefile,v 1.220 2020/08/28 17:09:13 wiz Exp $ DISTNAME= graphviz-2.44.1 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= graphics MASTER_SITES= https://www2.graphviz.org/Packages/stable/portable_source/ Index: pkgsrc/graphics/graphviz/options.mk diff -u pkgsrc/graphics/graphviz/options.mk:1.30 pkgsrc/graphics/graphviz/options.mk:1.31 --- pkgsrc/graphics/graphviz/options.mk:1.30 Tue Aug 11 10:03:57 2020 +++ pkgsrc/graphics/graphviz/options.mk Fri Aug 28 17:09:13 2020 @@ -1,11 +1,11 @@ -# $NetBSD: options.mk,v 1.30 2020/08/11 10:03:57 wiz Exp $ +# $NetBSD: options.mk,v 1.31 2020/08/28 17:09:13 wiz Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.graphviz PKG_SUPPORTED_OPTIONS= gd ghostscript gtk lua ocaml perl poppler svg tcl x11 # guile does not build with guile20 .if exists(/System/Library/Frameworks/Quartz.framework) PKG_SUPPORTED_OPTIONS+= quartz .endif -PKG_SUGGESTED_OPTIONS= gd gtk lua perl tcl x11 +PKG_SUGGESTED_OPTIONS= gd lua perl tcl x11 # Explanation of consequence of options, to help those trying to slim down: # guile ocaml lua tcl perl: extension language support # x11: Omits all linking with x11, which means x11 graphics supports as --_----------=_159863455349960--