pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/graphics/p5-GraphViz Update to version 2.02



details:   https://anonhg.NetBSD.org/pkgsrc/rev/a09f3eaa2573
branches:  trunk
changeset: 492824:a09f3eaa2573
user:      seb <seb%pkgsrc.org@localhost>
date:      Wed Apr 20 08:42:11 2005 +0000

description:
Update to version 2.02

Add (pseudo) HOMEPAGE, trim dependencies, install examples.

Changes since last packaged version (1.8):
2.02 Fri Jan  7 18:51:06 GMT 2005
        - remove dependencies on Graph and Math::Bezier
        - make GraphViz HTML-Like labels work (spotted by Patrice Dehais)
        - updated (including much documentation) to support newer additions
          to the dot language (by Max Baker)
        - new test which tests the POD

2.01 Fri Sep 24 17:02:29 BST 2004
        - no longer *always* quote the label in add_node() in order to
          let GraphViz::Data::Structure work again (sorry)

2.00 Wed Aug 25 16:30:53 BST 2004
        - thanks to Ron Savage, patched to work under systems
          which have an executable extension, such as Windows

1.9 Tue Aug 24 15:30:31 BST 2004
        - check for "dot" in the Makefile.PL instead of a test, as
          suggested by Autrijus Tang
        - renamed Changes to CHANGES
        - clusters can now take attributes as a hashref, thanks to
          patch from Richard A.Wells (see clusters2.pl)
        - fix docbug in GraphViz::Parse::Yapp (spotted by Mark Fowler)
        - better quoting (patch by Barrie Slaymaker)
        - document as_debug (suggested by Richard Clamp)

diffstat:

 graphics/p5-GraphViz/Makefile |  18 +++++++++++-------
 graphics/p5-GraphViz/PLIST    |  30 +++++++++++++++++++++++++++++-
 graphics/p5-GraphViz/distinfo |   8 ++++----
 3 files changed, 44 insertions(+), 12 deletions(-)

diffs (85 lines):

diff -r 4225723f4d32 -r a09f3eaa2573 graphics/p5-GraphViz/Makefile
--- a/graphics/p5-GraphViz/Makefile     Wed Apr 20 07:45:39 2005 +0000
+++ b/graphics/p5-GraphViz/Makefile     Wed Apr 20 08:42:11 2005 +0000
@@ -1,23 +1,27 @@
-# $NetBSD: Makefile,v 1.11 2005/04/11 21:46:07 tv Exp $
+# $NetBSD: Makefile,v 1.12 2005/04/20 08:42:11 seb Exp $
 #
 
-DISTNAME=      GraphViz-1.8
+DISTNAME=      GraphViz-2.02
 PKGNAME=       p5-${DISTNAME}
-PKGREVISION=   1
 CATEGORIES=    graphics perl5
 MASTER_SITES=  ${MASTER_SITE_PERL_CPAN:=GraphViz/}
 
 MAINTAINER=    seb%NetBSD.org@localhost
+HOMEPAGE=      http://search.cpan.org/dist/GraphViz/
 COMMENT=       Perl interface to the Graphviz tools set
 
-DEPENDS+=      p5-Graph>=0.201:../../devel/p5-Graph
+# This is for the 'test' target
+BUILD_DEPENDS+=        p5-Test-Pod-[0-9]*:../../devel/p5-Test-Pod
+
 DEPENDS+=      p5-IPC-Run>=0.74:../../devel/p5-IPC-Run
-DEPENDS+=      p5-Math-Bezier>=0.01:../../math/p5-Math-Bezier
-DEPENDS+=      p5-Math-Bezier>=0.01:../../math/p5-Math-Bezier
-DEPENDS+=      p5-Test-Simple-[0-9]*:../../devel/p5-Test-Simple
 DEPENDS+=      graphviz-[0-9]*:../../graphics/graphviz
 
 PERL5_PACKLIST=                ${PERL5_SITEARCH}/auto/GraphViz/.packlist
+INSTALLATION_DIRS=     share/examples/p5-GraphViz
+
+post-install:
+       cd ${WRKSRC}/examples &&        \
+         ${PAX} -pm -rw . ${PREFIX}/share/examples/p5-GraphViz
 
 .include "../../lang/perl5/module.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r 4225723f4d32 -r a09f3eaa2573 graphics/p5-GraphViz/PLIST
--- a/graphics/p5-GraphViz/PLIST        Wed Apr 20 07:45:39 2005 +0000
+++ b/graphics/p5-GraphViz/PLIST        Wed Apr 20 08:42:11 2005 +0000
@@ -1,1 +1,29 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 2002/08/28 19:39:52 seb Exp $
+@comment $NetBSD: PLIST,v 1.2 2005/04/20 08:42:11 seb Exp $
+share/examples/p5-GraphViz/README
+share/examples/p5-GraphViz/Yapp.output
+share/examples/p5-GraphViz/clusters.pl
+share/examples/p5-GraphViz/clusters2.pl
+share/examples/p5-GraphViz/directories.pl
+share/examples/p5-GraphViz/dprofpp.graphviz
+share/examples/p5-GraphViz/dumper.pl
+share/examples/p5-GraphViz/make_all.pl
+share/examples/p5-GraphViz/perly.output
+share/examples/p5-GraphViz/port.pl
+share/examples/p5-GraphViz/ppmgraph.pl
+share/examples/p5-GraphViz/primes.pl
+share/examples/p5-GraphViz/primes_aux.pl
+share/examples/p5-GraphViz/rank.pl
+share/examples/p5-GraphViz/recdescent.pl
+share/examples/p5-GraphViz/redcarpet.pl
+share/examples/p5-GraphViz/regex.pl
+share/examples/p5-GraphViz/remote.pl
+share/examples/p5-GraphViz/simple.pl
+share/examples/p5-GraphViz/text.pl
+share/examples/p5-GraphViz/tmon.out
+share/examples/p5-GraphViz/undirected.pl
+share/examples/p5-GraphViz/xml.pl
+share/examples/p5-GraphViz/xref.pl
+share/examples/p5-GraphViz/xref_aux.pl
+share/examples/p5-GraphViz/yacc.pl
+share/examples/p5-GraphViz/yapp.pl
+@dirrm share/examples/p5-GraphViz
diff -r 4225723f4d32 -r a09f3eaa2573 graphics/p5-GraphViz/distinfo
--- a/graphics/p5-GraphViz/distinfo     Wed Apr 20 07:45:39 2005 +0000
+++ b/graphics/p5-GraphViz/distinfo     Wed Apr 20 08:42:11 2005 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.3 2005/02/24 08:45:11 agc Exp $
+$NetBSD: distinfo,v 1.4 2005/04/20 08:42:11 seb Exp $
 
-SHA1 (GraphViz-1.8.tar.gz) = a84da0cb7181ae9fdc3c2721462ff5c7ea0e582c
-RMD160 (GraphViz-1.8.tar.gz) = e7661fd179fa0db0e3b11aeab5f6e027879bb5d9
-Size (GraphViz-1.8.tar.gz) = 113418 bytes
+SHA1 (GraphViz-2.02.tar.gz) = 02d5771ef4c24d30c20083e8f86d52606e5706a2
+RMD160 (GraphViz-2.02.tar.gz) = cd0cad4cd687198a9a8c1cd02e10320c1f07b268
+Size (GraphViz-2.02.tar.gz) = 84348 bytes



Home | Main Index | Thread Index | Old Index