Wed Sep 28 19:58:26 2022 UTC ()
graphviz: prefer quartz to x11 where available

Bump PKGREVISION.


(wiz)
diff -r1.254 -r1.255 pkgsrc/graphics/graphviz/Makefile
diff -r1.34 -r1.35 pkgsrc/graphics/graphviz/options.mk

cvs diff -r1.254 -r1.255 pkgsrc/graphics/graphviz/Makefile (expand / switch to unified diff)

--- pkgsrc/graphics/graphviz/Makefile 2022/07/27 12:29:08 1.254
+++ pkgsrc/graphics/graphviz/Makefile 2022/09/28 19:58:26 1.255
@@ -1,17 +1,17 @@ @@ -1,17 +1,17 @@
1# $NetBSD: Makefile,v 1.254 2022/07/27 12:29:08 micha Exp $ 1# $NetBSD: Makefile,v 1.255 2022/09/28 19:58:26 wiz Exp $
2 2
3DISTNAME= graphviz-5.0.0 3DISTNAME= graphviz-5.0.0
4PKGREVISION= 2 4PKGREVISION= 3
5CATEGORIES= graphics 5CATEGORIES= graphics
6MASTER_SITES= ${MASTER_SITE_GITLAB:=api/v4/projects/4207231/packages/generic/graphviz-releases/${PKGVERSION_NOREV}/} 6MASTER_SITES= ${MASTER_SITE_GITLAB:=api/v4/projects/4207231/packages/generic/graphviz-releases/${PKGVERSION_NOREV}/}
7 7
8MAINTAINER= micha@NetBSD.org 8MAINTAINER= micha@NetBSD.org
9HOMEPAGE= https://www.graphviz.org/ 9HOMEPAGE= https://www.graphviz.org/
10COMMENT= Graph Drawing Programs from AT&T Research and Lucent Bell Labs 10COMMENT= Graph Drawing Programs from AT&T Research and Lucent Bell Labs
11LICENSE= epl-v1.0 11LICENSE= epl-v1.0
12 12
13CHECK_FILES_SKIP+= ${PREFIX}/lib/graphviz/config6 13CHECK_FILES_SKIP+= ${PREFIX}/lib/graphviz/config6
14CHECK_PORTABILITY_SKIP+= windows/* 14CHECK_PORTABILITY_SKIP+= windows/*
15 15
16USE_LANGUAGES= c99 c++11 16USE_LANGUAGES= c99 c++11
17USE_TOOLS+= automake autoreconf makeinfo bison flex gmake groff pkg-config 17USE_TOOLS+= automake autoreconf makeinfo bison flex gmake groff pkg-config

cvs diff -r1.34 -r1.35 pkgsrc/graphics/graphviz/options.mk (expand / switch to unified diff)

--- pkgsrc/graphics/graphviz/options.mk 2022/07/22 12:04:46 1.34
+++ pkgsrc/graphics/graphviz/options.mk 2022/09/28 19:58:26 1.35
@@ -1,21 +1,24 @@ @@ -1,21 +1,24 @@
1# $NetBSD: options.mk,v 1.34 2022/07/22 12:04:46 micha Exp $ 1# $NetBSD: options.mk,v 1.35 2022/09/28 19:58:26 wiz Exp $
2 2
3PKG_OPTIONS_VAR= PKG_OPTIONS.graphviz 3PKG_OPTIONS_VAR= PKG_OPTIONS.graphviz
4PKG_SUPPORTED_OPTIONS= gd ghostscript gtk lua perl poppler svg tcl x11 4PKG_SUPPORTED_OPTIONS= gd ghostscript gtk lua perl poppler svg tcl x11
5.if exists(/System/Library/Frameworks/Quartz.framework) 5.if exists(/System/Library/Frameworks/Quartz.framework)
6PKG_SUPPORTED_OPTIONS+= quartz 6PKG_SUPPORTED_OPTIONS+= quartz
 7PKG_SUGGESTED_OPTIONS+= quartz
 8.else
 9PKG_SUGGESTED_OPTIONS+= x11
7.endif 10.endif
8PKG_SUGGESTED_OPTIONS= gd x11 11PKG_SUGGESTED_OPTIONS= gd
9# Explanation of consequence of options, to help those trying to slim down: 12# Explanation of consequence of options, to help those trying to slim down:
10# lua tcl perl: extension language support 13# lua tcl perl: extension language support
11# x11: Omits all linking with x11, which means x11 graphics supports as 14# x11: Omits all linking with x11, which means x11 graphics supports as
12# well as x11 frontend support. 15# well as x11 frontend support.
13# gtk: basic graphic format support (in addition to gd, which isn't 16# gtk: basic graphic format support (in addition to gd, which isn't
14# maintained anymore) 17# maintained anymore)
15# svg: Omitting loses svg support. librsvg has large dependencies 18# svg: Omitting loses svg support. librsvg has large dependencies
16# including some GNOME libs. 19# including some GNOME libs.
17# gd: basic graphic format support, especially gif 20# gd: basic graphic format support, especially gif
18# ghostscript: provides better ps/pdf-support, plus eps 21# ghostscript: provides better ps/pdf-support, plus eps
19 22
20.include "../../mk/bsd.options.mk" 23.include "../../mk/bsd.options.mk"
21 24