pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/graphics/graphviz PkgSrc changes:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/71d70da9d8f7
branches:  trunk
changeset: 393094:71d70da9d8f7
user:      sno <sno%pkgsrc.org@localhost>
date:      Sun May 17 12:55:52 2009 +0000

description:
PkgSrc changes:
  - Updating package graphics/graphviz to 2.22.2
  - Setting license to cpl-1.0
  - Rework optional dependencies handling (handle dependencies
    of dependencies)

Upstream changes:
March 13, 2009
        - Release 2.22.2
                - fix for buffer overflow (present in 2.22.0 and 2.22.1)
        - Fixed bugs:
                1596, 1602

March 9, 2009
        - Release 2.22.1
                - build fixes for Visual Studio and for FreeBSD
March 3, 2009
        - Release 2.22.0
        - Core:
                - libgvc api changed, version bumped.  Affects third party
                  applications using libgvc.
                - plugin api changed, version bumped.  Affects third party
                  plugins for graphviz.
                - 90% conversion to cgraph has been done, but not enabled yet,
                  (and yes, its true what they say about the last 10% )
                - drop libagraph from distribution  (use libcgraph)
                - layout code completely converted to floating point.
                - new "dot -P" option for generating a graph of available
                  plugins.
                - registered MIME type:  text/vnd.graphviz for .gv files
                - rename files from .dot to .gv to avoid conflict with
                  Word templates.  .dot still supported, but deprecated.
                - new command: mm2gv   (matrix-market graph file conversion)
                - rename commands:      dot2gxl -> gv2gxl
                                        gxl2dot -> gxl2gv
        - Plugins:
                - new rsvg plugin for support of node shapes in SVG format
                - new gs plugin for support of node shapes in PS format
                - new lasi plugin for support of UTF-8 characters in PS output
                  (the above thee plugins are Linux only, at the moment)
                - new quartz plugin (MacOSx only)
                - new gdiplus plugin (Windows only)
                - new -Tvml support in core plugin (thanks Steve Roush)
                - new -Ttk support in core plugin (also used by Tcldot and
                  gv_tcl language bindings.)
                - disabled old style codegens completely
        - Linux:
                - new Ubuntu8 builds
                - new Fedora 10 and 11 builds
        - MacOSx:
                - Universal binary for Leopard: i386, x86_64, ppc, ppc64
                - Should not conflict with parallel install of MacPorts
                  version of graphviz
                - Improved GUI
        - Windows:
                - VisualC project files now available, in addition to the GNU
                  Makefiles that are used the mingw builds.
        - Language Bindings:
                - fixed problem with writing dot, xdot, plain, canon to
                  memory or to Tcl_Channels
                - renamed man pages to Debian style:  gv.3tcl, gv.3perl, etc
        - Fixed bugs:
                827, 1365, 1366, 1367, 1368, 1374, 1375, 1376, 1378, 1380, 1382,
                1383, 1385, 1386, 1388, 1390, 1391, 1392, 1394, 1395, 1397,
                1398, 1399, 1405, 1407, 1410, 1412, 1414, 1415, 1416, 1421,
                1424, 1425, 1427, 1429, 1431, 1433, 1435, 1436, 1437, 1438,
                1440, 1441, 1444, 1446, 1451, 1452, 1453, 1456, 1457, 1459,
                1460, 1461, 1462, 1463, 1464, 1465, 1466, 1470, 1474, 1475,
                1476, 1477, 1478, 1484, 1485, 1489, 1490, 1492, 1493, 1495,
                1496, 1499, 1500, 1501, 1502, 1503, 1505, 1509, 1513, 1521,
                1523, 1525, 1530, 1531, 1532, 1533, 1535, 1536, 1539, 1540,
                1542, 1543, 1546, 1547, 1551, 1553, 1554, 1561, 1565, 1566,
                1568, 1569, 1570, 1571, 1573, 1577, 1578, 1579, 1580, 1581,
                1582, 1584, 1586,

diffstat:

 graphics/graphviz/DEINSTALL        |    4 +-
 graphics/graphviz/Makefile         |   18 +-
 graphics/graphviz/PLIST            |  349 ++++++++++++++++++++----------------
 graphics/graphviz/distinfo         |   20 +-
 graphics/graphviz/options.mk       |  100 +++++++---
 graphics/graphviz/patches/patch-aa |   98 ++++++----
 graphics/graphviz/patches/patch-ab |   89 +++++----
 graphics/graphviz/patches/patch-ag |   18 +-
 graphics/graphviz/patches/patch-aj |   16 +-
 graphics/graphviz/patches/patch-ak |   22 +-
 graphics/graphviz/patches/patch-ap |   11 +-
 11 files changed, 432 insertions(+), 313 deletions(-)

diffs (truncated from 1131 to 300 lines):

diff -r 3815798d545c -r 71d70da9d8f7 graphics/graphviz/DEINSTALL
--- a/graphics/graphviz/DEINSTALL       Sun May 17 11:01:11 2009 +0000
+++ b/graphics/graphviz/DEINSTALL       Sun May 17 12:55:52 2009 +0000
@@ -1,9 +1,9 @@
-# $NetBSD: DEINSTALL,v 1.1 2007/09/21 17:40:38 joerg Exp $
+# $NetBSD: DEINSTALL,v 1.2 2009/05/17 12:55:52 sno Exp $
 
 : ${PKG_PREFIX=@PREFIX@}
 
 case ${STAGE} in
 DEINSTALL)
-       ${RM} ${PKG_PREFIX}/lib/graphviz/config
+       ${RM} ${PKG_PREFIX}/lib/graphviz/config6
        ;;
 esac
diff -r 3815798d545c -r 71d70da9d8f7 graphics/graphviz/Makefile
--- a/graphics/graphviz/Makefile        Sun May 17 11:01:11 2009 +0000
+++ b/graphics/graphviz/Makefile        Sun May 17 12:55:52 2009 +0000
@@ -1,27 +1,26 @@
-# $NetBSD: Makefile,v 1.73 2009/04/01 17:12:57 tron Exp $
+# $NetBSD: Makefile,v 1.74 2009/05/17 12:55:52 sno Exp $
 
-DISTNAME=      graphviz-2.20.3
-PKGREVISION=   4
+DISTNAME=      graphviz-2.22.2
 CATEGORIES=    graphics
 MASTER_SITES=  http://www.graphviz.org/pub/graphviz/stable/SOURCES/
 
-MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
+MAINTAINER=    sno%NetBSD.org@localhost
 HOMEPAGE=      http://www.graphviz.org/
 COMMENT=       Graph Drawing Programs from AT&T Research and Lucent Bell Labs
+LICENSE=       cpl-1.0
 
 PKG_INSTALLATION_TYPES=        overwrite pkgviews
 PKG_DESTDIR_SUPPORT=   user-destdir
 
 DEPENDS+= ghostscript-fonts>=6.0:../../fonts/ghostscript-fonts
 
-CHECK_FILES_SKIP=      ${PREFIX}/lib/graphviz/config
+CHECK_FILES_SKIP=      ${PREFIX}/lib/graphviz/config6
 
 USE_LANGUAGES=         c c++
 USE_LIBTOOL=           yes
 USE_TOOLS+=            bison pkg-config
 GNU_CONFIGURE=         yes
 CONFIGURE_ARGS+=       --disable-java
-CONFIGURE_ARGS+=       --disable-perl
 CONFIGURE_ARGS+=       --disable-php
 CONFIGURE_ARGS+=       --disable-python
 CONFIGURE_ARGS+=       --disable-ruby
@@ -50,6 +49,10 @@
 REPLACE.tclsh.new=     ${PREFIX}/bin/tclsh
 REPLACE_FILES.tclsh=   tclpkg/gv/demo/modgraph.tcl
 
+REPLACE_PERL+=         config/config_perl.pl lib/gd/configure.pl \
+                       tclpkg/gv/demo/modgraph.pl contrib/dotmcl.pl \
+                       contrib/dirgraph/dirgraph.pl
+
 .include "../../mk/bsd.prefs.mk"
 
 .include "../../mk/compiler.mk"
@@ -71,7 +74,8 @@
 
 .include "../../converters/libiconv/buildlink3.mk"
 .include "../../devel/gettext-lib/buildlink3.mk"
-.include "../../devel/libltdl/convenience.mk"
+.include "../../devel/libltdl/buildlink3.mk"
+#.include "../../devel/libltdl/convenience.mk"
 .include "../../fonts/fontconfig/buildlink3.mk"
 #.include "../../graphics/jpeg/buildlink3.mk"
 #.include "../../graphics/png/buildlink3.mk"
diff -r 3815798d545c -r 71d70da9d8f7 graphics/graphviz/PLIST
--- a/graphics/graphviz/PLIST   Sun May 17 11:01:11 2009 +0000
+++ b/graphics/graphviz/PLIST   Sun May 17 12:55:52 2009 +0000
@@ -1,34 +1,37 @@
-@comment $NetBSD: PLIST,v 1.31 2009/04/01 17:12:57 tron Exp $
+@comment $NetBSD: PLIST,v 1.32 2009/05/17 12:55:52 sno Exp $
 bin/acyclic
 bin/bcomps
 bin/ccomps
 bin/circo
-bin/dot2gxl
-bin/fdp
-bin/neato
-bin/twopi
+${PLIST.gd}bin/diffimg
 bin/dijkstra
 bin/dot
+bin/dot2gxl
 bin/dotty
+bin/fdp
 bin/gc
+bin/gv2gxl
 bin/gvcolor
+bin/gvgen
 bin/gvpack
 bin/gvpr
 bin/gxl2dot
+bin/gxl2gv
 ${PLIST.x11}bin/lefty
 bin/lneato
+bin/mm2gv
+bin/neato
 bin/nop
 bin/prune
 bin/sccmap
 bin/tred
+bin/twopi
 bin/unflatten
-include/graphviz/agraph.h
+${PLIST.pangocairo}bin/vimdot
 include/graphviz/arith.h
 include/graphviz/cdt.h
 include/graphviz/cgraph.h
 include/graphviz/color.h
-include/graphviz/demand_loading.c
-include/graphviz/dot_builtins.c
 include/graphviz/geom.h
 include/graphviz/graph.h
 include/graphviz/gv.cpp
@@ -37,30 +40,56 @@
 include/graphviz/gvcext.h
 include/graphviz/gvcjob.h
 include/graphviz/gvcommon.h
+include/graphviz/gvconfig.h
 include/graphviz/gvplugin.h
 include/graphviz/gvplugin_device.h
 include/graphviz/gvplugin_layout.h
 include/graphviz/gvplugin_loadimage.h
 include/graphviz/gvplugin_render.h
 include/graphviz/gvplugin_textlayout.h
-include/graphviz/no_demand_loading.c
 include/graphviz/pack.h
 include/graphviz/pathgeom.h
 include/graphviz/pathplan.h
 include/graphviz/textpara.h
 include/graphviz/types.h
 include/graphviz/usershape.h
+${PLIST.guile}lib/graphviz/guile/libgv_guile.la
 lib/graphviz/libgvplugin_core.la
 lib/graphviz/libgvplugin_dot_layout.la
 lib/graphviz/libgvplugin_gd.la
+${PLIST.gtk}lib/graphviz/libgvplugin_gdk_pixbuf.la
+${PLIST.gtk}lib/graphviz/libgvplugin_gtk.la
 lib/graphviz/libgvplugin_neato_layout.la
-lib/libagraph.la
+${PLIST.pangocairo}lib/graphviz/libgvplugin_pango.la
+${PLIST.rsvg}lib/graphviz/libgvplugin_rsvg.la
+${PLIST.pangocairo}lib/graphviz/libgvplugin_xlib.la
+${PLIST.lua}lib/graphviz/lua/libgv_lua.la
+${PLIST.ocaml}lib/graphviz/ocaml/META.gv
+${PLIST.ocaml}lib/graphviz/ocaml/gv.a
+${PLIST.ocaml}lib/graphviz/ocaml/gv.cma
+${PLIST.ocaml}lib/graphviz/ocaml/gv.cmi
+${PLIST.ocaml}lib/graphviz/ocaml/gv.cmo
+${PLIST.ocaml}lib/graphviz/ocaml/gv.cmx
+${PLIST.ocaml}lib/graphviz/ocaml/gv.cmxa
+${PLIST.ocaml}lib/graphviz/ocaml/gv.mli
+${PLIST.ocaml}lib/graphviz/ocaml/libgv_ocaml.la
+${PLIST.perl}lib/graphviz/perl/gv.pm
+${PLIST.perl}lib/graphviz/perl/gv.so
+${PLIST.perl}lib/graphviz/perl/libgv_perl.la
+${PLIST.tcl}${PLIST.gd}lib/graphviz/tcl/libgdtclft.la
+${PLIST.tcl}lib/graphviz/tcl/libgv_tcl.la
+${PLIST.tcl}lib/graphviz/tcl/libtcldot.la
+${PLIST.tcl}lib/graphviz/tcl/libtcldot_builtin.la
+${PLIST.tcl}lib/graphviz/tcl/libtclplan.la
+${PLIST.tcl}lib/graphviz/tcl/libtkspline.la
+${PLIST.tcl}lib/graphviz/tcl/pkgIndex.tcl
 lib/libcdt.la
 lib/libcgraph.la
 lib/libgraph.la
 lib/libgvc.la
 lib/libpathplan.la
-lib/pkgconfig/libagraph.pc
+${PLIST.perl}lib/perl5/vendor_perl/5.10.0/${MACHINE_ARCH}-${LOWER_OPSYS}-thread-multi/gv.pm
+${PLIST.perl}lib/perl5/vendor_perl/5.10.0/${MACHINE_ARCH}-${LOWER_OPSYS}-thread-multi/gv.so
 lib/pkgconfig/libcdt.pc
 lib/pkgconfig/libcgraph.pc
 lib/pkgconfig/libgraph.pc
@@ -69,42 +98,80 @@
 man/man1/acyclic.1
 man/man1/bcomps.1
 man/man1/ccomps.1
+man/man1/circo.1
 man/man1/dijkstra.1
 man/man1/dot.1
 man/man1/dotty.1
+man/man1/fdp.1
 man/man1/gc.1
+man/man1/gv2gxl.1
 man/man1/gvcolor.1
+man/man1/gvgen.1
 man/man1/gvpack.1
 man/man1/gvpr.1
-man/man1/gxl2dot.1
+man/man1/gxl2gv.1
 ${PLIST.x11}man/man1/lefty.1
 man/man1/lneato.1
+man/man1/mm2gv.1
+man/man1/neato.1
 man/man1/nop.1
 man/man1/prune.1
 man/man1/sccmap.1
 man/man1/tred.1
+man/man1/twopi.1
 man/man1/unflatten.1
-man/man1/circo.1
-man/man1/dot2gxl.1
-man/man1/fdp.1
-man/man1/neato.1
-man/man1/twopi.1
-man/man3/agraph.3
 man/man3/cdt.3
 man/man3/cgraph.3
+${PLIST.tcl}${PLIST.gd}man/man3/gdtclft.3tcl
 man/man3/graph.3
+${PLIST.guile}man/man3/gv.3guile
+${PLIST.lua}man/man3/gv.3lua
+${PLIST.ocaml}man/man3/gv.3ocaml
+${PLIST.perl}man/man3/gv.3perl
+${PLIST.tcl}man/man3/gv.3tcl
 man/man3/gvc.3
 man/man3/pathplan.3
+${PLIST.tcl}man/man3/tcldot.3tcl
+${PLIST.tcl}man/man3/tkspline.3tk
 man/man7/graphviz.7
+${PLIST.tcl}share/graphviz/demo/doted.tcl
+${PLIST.tcl}share/graphviz/demo/doted.tcl.README
+${PLIST.tcl}share/graphviz/demo/entities.tcl
+${PLIST.tcl}share/graphviz/demo/entities.tcl.README
+${PLIST.tcl}share/graphviz/demo/entities.tcl.html
+${PLIST.tcl}share/graphviz/demo/gcat.tcl
+${PLIST.tcl}share/graphviz/demo/gcat.tcl.README
+${PLIST.lua}share/graphviz/demo/modgraph.lua
+${PLIST.perl}share/graphviz/demo/modgraph.pl
+${PLIST.tcl}share/graphviz/demo/modgraph.tcl
+${PLIST.tcl}share/graphviz/demo/pathplan.tcl
+${PLIST.tcl}share/graphviz/demo/pathplan.tcl.README
+${PLIST.tcl}share/graphviz/demo/pathplan_data/boxes.dat
+${PLIST.tcl}share/graphviz/demo/pathplan_data/dpd.dat
+${PLIST.tcl}share/graphviz/demo/pathplan_data/funny.dat
+${PLIST.tcl}share/graphviz/demo/pathplan_data/maze.dat
+${PLIST.tcl}share/graphviz/demo/pathplan_data/nested.dat
+${PLIST.tcl}share/graphviz/demo/pathplan_data/northo.dat
+${PLIST.tcl}share/graphviz/demo/pathplan_data/obs.dat
+${PLIST.tcl}share/graphviz/demo/pathplan_data/other.dat
+${PLIST.tcl}share/graphviz/demo/pathplan_data/paths.dat
+${PLIST.tcl}share/graphviz/demo/pathplan_data/rotor.dat
+${PLIST.tcl}share/graphviz/demo/pathplan_data/u.dat
+${PLIST.tcl}share/graphviz/demo/pathplan_data/unknown.dat
+${PLIST.tcl}share/graphviz/demo/spline.tcl
+${PLIST.tcl}share/graphviz/demo/spline.tcl.README
 share/graphviz/doc/AUTHORS
 share/graphviz/doc/COPYING
 share/graphviz/doc/ChangeLog
 share/graphviz/doc/Dot.ref
 share/graphviz/doc/NEWS
+share/graphviz/doc/addingLayout.txt
 share/graphviz/doc/cpl1.0.txt
 share/graphviz/doc/fontfaq.txt
 share/graphviz/doc/html/FAQ.html
+share/graphviz/doc/html/Gdtclft2.2.5.example.png
 share/graphviz/doc/html/build.html
+share/graphviz/doc/html/char.html
 share/graphviz/doc/html/index.html
 share/graphviz/doc/html/info/Mcircle.gif
 share/graphviz/doc/html/info/Mdiamond.gif
@@ -166,6 +233,7 @@
 share/graphviz/doc/html/info/aa_rvee.gif
 share/graphviz/doc/html/info/aa_tee.gif
 share/graphviz/doc/html/info/aa_vee.gif
+share/graphviz/doc/html/info/arrows.html
 share/graphviz/doc/html/info/attrs.html
 share/graphviz/doc/html/info/back.gif
 share/graphviz/doc/html/info/both.gif
@@ -189,8 +257,11 @@
 share/graphviz/doc/html/info/hexagon.gif
 share/graphviz/doc/html/info/house.gif
 share/graphviz/doc/html/info/html1.gif
+share/graphviz/doc/html/info/html2.dot
 share/graphviz/doc/html/info/html2.gif
+share/graphviz/doc/html/info/html3.dot
 share/graphviz/doc/html/info/html3.gif
+share/graphviz/doc/html/info/html4.dot
 share/graphviz/doc/html/info/html4.gif
 share/graphviz/doc/html/info/index.html
 share/graphviz/doc/html/info/invhouse.gif
@@ -206,12 +277,15 @@
 share/graphviz/doc/html/info/parallelogram.gif
 share/graphviz/doc/html/info/pentagon.gif
 share/graphviz/doc/html/info/plaintext.gif
+share/graphviz/doc/html/info/plugins.png
 share/graphviz/doc/html/info/point.gif
 share/graphviz/doc/html/info/polygon.gif
 share/graphviz/doc/html/info/record.gif
+share/graphviz/doc/html/info/record2.gif
 share/graphviz/doc/html/info/rect.gif
 share/graphviz/doc/html/info/rectangle.gif



Home | Main Index | Thread Index | Old Index