pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/graphics/graphviz



Module Name:    pkgsrc
Committed By:   wiz
Date:           Tue Aug 11 10:03:57 UTC 2020

Modified Files:
        pkgsrc/graphics/graphviz: PLIST options.mk

Log Message:
graphviz: fix PLIST

When swig is not pulled in, two files are not created. Fix PLIST logic
in that case.


To generate a diff of this commit:
cvs rdiff -u -r1.52 -r1.53 pkgsrc/graphics/graphviz/PLIST
cvs rdiff -u -r1.29 -r1.30 pkgsrc/graphics/graphviz/options.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/graphics/graphviz/PLIST
diff -u pkgsrc/graphics/graphviz/PLIST:1.52 pkgsrc/graphics/graphviz/PLIST:1.53
--- pkgsrc/graphics/graphviz/PLIST:1.52 Fri Aug  7 20:49:36 2020
+++ pkgsrc/graphics/graphviz/PLIST      Tue Aug 11 10:03:57 2020
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.52 2020/08/07 20:49:36 pgoyette Exp $
+@comment $NetBSD: PLIST,v 1.53 2020/08/11 10:03:57 wiz Exp $
 bin/acyclic
 bin/bcomps
 bin/ccomps
@@ -171,7 +171,7 @@ ${PLIST.guile}man/man3/gv.3guile
 ${PLIST.lua}man/man3/gv.3lua
 ${PLIST.ocaml}man/man3/gv.3ocaml
 ${PLIST.perl}man/man3/gv.3perl
-man/man3/gv.3python
+${PLIST.swig}man/man3/gv.3python
 ${PLIST.tcl}man/man3/gv.3tcl
 man/man3/gvc.3
 man/man3/gvpr.3
@@ -421,7 +421,7 @@ ${PLIST.guile}share/graphviz/doc/pdf/gv.
 ${PLIST.lua}share/graphviz/doc/pdf/gv.3lua.pdf
 ${PLIST.ocaml}share/graphviz/doc/pdf/gv.3ocaml.pdf
 ${PLIST.perl}share/graphviz/doc/pdf/gv.3perl.pdf
-share/graphviz/doc/pdf/gv.3python.pdf
+${PLIST.swig}share/graphviz/doc/pdf/gv.3python.pdf
 ${PLIST.tcl}share/graphviz/doc/pdf/gv.3tcl.pdf
 share/graphviz/doc/pdf/gv2gml.1.pdf
 share/graphviz/doc/pdf/gv2gxl.1.pdf

Index: pkgsrc/graphics/graphviz/options.mk
diff -u pkgsrc/graphics/graphviz/options.mk:1.29 pkgsrc/graphics/graphviz/options.mk:1.30
--- pkgsrc/graphics/graphviz/options.mk:1.29    Tue Aug  4 23:30:42 2020
+++ pkgsrc/graphics/graphviz/options.mk Tue Aug 11 10:03:57 2020
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.29 2020/08/04 23:30:42 gutteridge Exp $
+# $NetBSD: options.mk,v 1.30 2020/08/11 10:03:57 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
@@ -19,7 +19,7 @@ PKG_SUGGESTED_OPTIONS=        gd gtk lua perl t
 
 .include "../../mk/bsd.options.mk"
 
-PLIST_VARS+=           gd ghostscript gtk guile lua ocaml perl poppler quartz svg tcl x11
+PLIST_VARS+=           gd ghostscript gtk guile lua ocaml perl poppler quartz svg swig tcl x11
 
 .if !empty(PKG_OPTIONS:Mgd)
 .  include "../../graphics/gd/buildlink3.mk"
@@ -126,6 +126,7 @@ CONFIGURE_ARGS+=    --disable-perl
 .endif
 
 .if !empty(USING_SWIG:Myes)
+PLIST.swig=            yes
 .  include "../../devel/swig/buildlink3.mk"
 .else
 CONFIGURE_ARGS+=       --disable-swig



Home | Main Index | Thread Index | Old Index