diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-04-18 14:42:22 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-04-18 14:42:22 +0000 |
commit | ebb6dabb7a2ac70a1d991a4a482fdbdac503f543 (patch) | |
tree | 5a0830cd5d5816dfc55f56bae624474bd9ebd0b9 /graphics/graphviz | |
parent | Update to 0.6.10. (diff) |
upgrade to 1.8.5
take over maintainership
PR: 37203
Submitted by: Hye-Shik Chang <perky@fallin.lv>
Requested by: Stephen C. North <north@research.att.com> (author)
Notes
Notes:
svn path=/head/; revision=57851
Diffstat (limited to 'graphics/graphviz')
-rw-r--r-- | graphics/graphviz/Makefile | 30 | ||||
-rw-r--r-- | graphics/graphviz/distinfo | 2 | ||||
-rw-r--r-- | graphics/graphviz/files/patch-aclocal.m4 | 17 | ||||
-rw-r--r-- | graphics/graphviz/files/patch-configure.in | 17 | ||||
-rw-r--r-- | graphics/graphviz/files/patch-fdp::adjust.c | 19 | ||||
-rw-r--r-- | graphics/graphviz/files/patch-gd::gdcache.h | 14 | ||||
-rw-r--r-- | graphics/graphviz/files/patch-gd::gdhelpers.c | 14 | ||||
-rw-r--r-- | graphics/graphviz/files/patch-incr::callback.c | 11 | ||||
-rw-r--r-- | graphics/graphviz/files/patch-incr::edgeclip.c | 9 | ||||
-rw-r--r-- | graphics/graphviz/files/patch-incr::routem.c | 13 | ||||
-rw-r--r-- | graphics/graphviz/files/patch-lefty::exec.c | 59 | ||||
-rw-r--r-- | graphics/graphviz/files/patch-pathplan::route.c | 12 | ||||
-rw-r--r-- | graphics/graphviz/files/patch-pathplan::shortest.c | 12 | ||||
-rw-r--r-- | graphics/graphviz/files/patch-tools::gpr::gpr.c | 10 | ||||
-rw-r--r-- | graphics/graphviz/files/patch-tools::sfio::sfhdr.h | 6 | ||||
-rw-r--r-- | graphics/graphviz/files/patch-tools::vmalloc::malloc.c | 13 | ||||
-rw-r--r-- | graphics/graphviz/pkg-plist | 41 |
17 files changed, 145 insertions, 154 deletions
diff --git a/graphics/graphviz/Makefile b/graphics/graphviz/Makefile index 406705f17341..5d1c06bd0149 100644 --- a/graphics/graphviz/Makefile +++ b/graphics/graphviz/Makefile @@ -6,13 +6,11 @@ # PORTNAME= graphviz -PORTVERSION= 1.7.7 -PORTREVISION= 3 +PORTVERSION= 1.8.5 CATEGORIES= graphics tk83 -MASTER_SITES= http://www.research.att.com/sw/tools/graphviz/dist/ -EXTRACT_SUFX= .tgz +MASTER_SITES= http://www.graphviz.org/pub/graphviz/ARCHIVE/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= perky@fallin.lv LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \ png.5:${PORTSDIR}/graphics/png \ @@ -27,12 +25,17 @@ USE_LIBTOOL= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${LOCALBASE}/include/tcl8.3 -I${LOCALBASE}/include/tk8.3" \ LDFLAGS="-L${LOCALBASE}/lib" \ TCLCONFIG=${LOCALBASE}/lib/tcl8.3/tclConfig.sh \ - TKCONFIG=${LOCALBASE}/lib/tk8.3/tkConfig.sh + TKCONFIG=${LOCALBASE}/lib/tk8.3/tkConfig.sh \ + AUTOHEADER=${LOCALBASE}/bin/autoheader213 \ + AUTOCONF=${LOCALBASE}/bin/autoconf213 \ + AUTOMAKE=${LOCALBASE}/bin/automake14 \ + ACLOCAL=${LOCALBASE}/bin/aclocal14 INSTALLS_SHLIB= yes LDCONFIG_DIRS= ${PREFIX}/lib/graphviz MAN1= acyclic.1 ccomps.1 colorize.1 dot.1 dotty.1 gc.1 gpr.1 \ - lefty.1 neato.1 nop.1 sccmap.1 tred.1 unflatten.1 + lefty.1 neato.1 nop.1 prune.1 sccmap.1 tred.1 \ + twopi.1 unflatten.1 MAN3= agraph.3 cdt.3 expr.3 graph.3 pathplan.3 MANN= gdtclft.n tcldgl.n tcldgr.n tcldot.n tkspline.n @@ -42,15 +45,16 @@ PORTDOCS= dotguide.pdf dottyguide.pdf gd.html leftyguide.pdf \ .include <bsd.port.pre.mk> .if exists(${LOCALBASE}/include/iconv.h) || defined(WITH_ICONV) -LIB_DEPENDS+= iconv.3:${PORTSDIR}/converters/libiconv -CONFIGURE_ENV+= LIBS="-liconv" +LIB_DEPENDS+= iconv.3:${PORTSDIR}/converters/libiconv +CONFIGURE_ARGS= --with-iconvlibdir=${LOCALBASE}/lib .endif -post-extract: - @${RM} ${WRKSRC}/cdt/ast_common.h +post-patch: + @${INSTALL_SCRIPT} ${LOCALBASE}/bin/libtool ${WRKSRC} +.if ${OSVERSION} >= 500032 + @${PERL} -pi.orig -e 's|expr |expr -- |' ${WRKSRC}/libtool +.endif -#post-patch: -# @cd ${WRKSRC} && ${ACLOCAL} && ${AUTOHEADER} && libtoolize --force post-install: .if !defined(NOPORTDOCS) diff --git a/graphics/graphviz/distinfo b/graphics/graphviz/distinfo index 4dd149337725..251e21dd1aa9 100644 --- a/graphics/graphviz/distinfo +++ b/graphics/graphviz/distinfo @@ -1 +1 @@ -MD5 (graphviz-1.7.7.tgz) = e04a6031b34d07ebceacc6ccb0745eb5 +MD5 (graphviz-1.8.5.tar.gz) = b7a204814a830c62d3ce653b71fdc731 diff --git a/graphics/graphviz/files/patch-aclocal.m4 b/graphics/graphviz/files/patch-aclocal.m4 new file mode 100644 index 000000000000..175f3d4d321a --- /dev/null +++ b/graphics/graphviz/files/patch-aclocal.m4 @@ -0,0 +1,17 @@ +--- aclocal.m4.tmp Wed Apr 17 11:05:05 2002 ++++ aclocal.m4 Wed Apr 17 11:11:43 2002 +@@ -59,10 +59,10 @@ + AC_REQUIRE([AC_ARG_PROGRAM]) + dnl FIXME This is truly gross. + missing_dir=`cd $ac_aux_dir && pwd` +-AM_MISSING_PROG(ACLOCAL, aclocal, $missing_dir) +-AM_MISSING_PROG(AUTOCONF, autoconf, $missing_dir) +-AM_MISSING_PROG(AUTOMAKE, automake, $missing_dir) +-AM_MISSING_PROG(AUTOHEADER, autoheader, $missing_dir) ++AM_MISSING_PROG(ACLOCAL, ${ACLOCAL}, $missing_dir) ++AM_MISSING_PROG(AUTOCONF, ${AUTOCONF}, $missing_dir) ++AM_MISSING_PROG(AUTOMAKE, ${AUTOMAKE}, $missing_dir) ++AM_MISSING_PROG(AUTOHEADER, ${AUTOHEADER}, $missing_dir) + AM_MISSING_PROG(MAKEINFO, makeinfo, $missing_dir) + AC_REQUIRE([AC_PROG_MAKE_SET])]) + diff --git a/graphics/graphviz/files/patch-configure.in b/graphics/graphviz/files/patch-configure.in index 9a347623348a..ffacea1468ed 100644 --- a/graphics/graphviz/files/patch-configure.in +++ b/graphics/graphviz/files/patch-configure.in @@ -1,6 +1,6 @@ ---- configure.in.orig Fri Jul 13 19:50:41 2001 -+++ configure.in Wed Nov 7 16:50:08 2001 -@@ -97,7 +97,9 @@ +--- configure.in.orig Fri Apr 12 07:09:14 2002 ++++ configure.in Thu Apr 18 00:58:35 2002 +@@ -166,7 +166,9 @@ # Some systems don't have Tcl. Don't build # the Tcl products if we don't have the library. @@ -11,7 +11,7 @@ if test -f $TCLCONFIG; then AC_MSG_RESULT([using $TCLCONFIG]) file=${TCLCONFIG} -@@ -173,7 +175,9 @@ +@@ -242,7 +244,9 @@ # Some systems have Tcl, but not TK. Don't build # the Tk products if we don't have the library. @@ -22,3 +22,12 @@ if test -f $TKCONFIG; then AC_MSG_RESULT([using $TKCONFIG]) file=${TKCONFIG} +@@ -561,7 +565,7 @@ + # Checks for header files + # AC_STDC_HEADERS + # AC_HAVE_HEADERS(string.h) +-AC_CHECK_HEADERS(malloc.h search.h getopt.h values.h termios.h \ ++AC_CHECK_HEADERS(search.h getopt.h values.h termios.h \ + errno.h sys/time.h unistd.h fpu_control.h sys/fpu.h strings.h) + AC_HEADER_TIME + AC_HEADER_DIRENT diff --git a/graphics/graphviz/files/patch-fdp::adjust.c b/graphics/graphviz/files/patch-fdp::adjust.c deleted file mode 100644 index 3bc50879d6db..000000000000 --- a/graphics/graphviz/files/patch-fdp::adjust.c +++ /dev/null @@ -1,19 +0,0 @@ ---- fdp/adjust.c.orig Wed May 3 22:28:23 2000 -+++ fdp/adjust.c Wed Nov 7 17:46:43 2001 -@@ -1,5 +1,7 @@ - /* adjust.c - */ -+#include <math.h> -+#include <assert.h> - #include "adjust.h" - #include "grid.h" - #include "structs.h" -@@ -7,8 +9,6 @@ - #include "options.h" - #include "component.h" - #include "macros.h" --#include <math.h> --#include <assert.h> - - static void - doRep (fdp_data* p, fdp_data* q, double xdelta, double ydelta, double dist2) diff --git a/graphics/graphviz/files/patch-gd::gdcache.h b/graphics/graphviz/files/patch-gd::gdcache.h deleted file mode 100644 index 605bdaf7b762..000000000000 --- a/graphics/graphviz/files/patch-gd::gdcache.h +++ /dev/null @@ -1,14 +0,0 @@ ---- gd/gdcache.h.orig Mon Apr 24 03:04:01 2000 -+++ gd/gdcache.h Thu Nov 8 17:08:56 2001 -@@ -40,7 +40,11 @@ - /* header */ - /*********************************************************/ - -+#ifndef __STDC__ - #include <malloc.h> -+#else -+#include <stdlib.h> -+#endif - #ifndef NULL - #define NULL (void *)0 - #endif diff --git a/graphics/graphviz/files/patch-gd::gdhelpers.c b/graphics/graphviz/files/patch-gd::gdhelpers.c deleted file mode 100644 index 9935cfe105f5..000000000000 --- a/graphics/graphviz/files/patch-gd::gdhelpers.c +++ /dev/null @@ -1,14 +0,0 @@ ---- gd/gdhelpers.c.orig Thu Jun 7 23:13:52 2001 -+++ gd/gdhelpers.c Thu Nov 8 17:10:18 2001 -@@ -1,9 +1,9 @@ - #include "gd.h" - #include "gdhelpers.h" - #include <stdlib.h> --#ifndef _OSD_POSIX /* _OSD_POSIX defines *alloc() in stdlib.h */ -+#ifndef __STDC__ - #include <malloc.h> --#endif /*_OSD_POSIX*/ -+#endif - - /* TBB: gd_strtok_r is not portable; provide an implementation */ - diff --git a/graphics/graphviz/files/patch-incr::callback.c b/graphics/graphviz/files/patch-incr::callback.c deleted file mode 100644 index 823d718dbe0b..000000000000 --- a/graphics/graphviz/files/patch-incr::callback.c +++ /dev/null @@ -1,11 +0,0 @@ ---- incr/callback.c.orig Tue May 30 21:19:18 2000 -+++ incr/callback.c Wed Nov 7 17:48:02 2001 -@@ -1,7 +1,7 @@ - /* Common callback management for incremental layout engines. */ - --#include <engine.h> - #include <math.h> -+#include <engine.h> - - static ilbool do_node_cb(engview_t *view, Agraph_t *set, ILevf_t fn) - { diff --git a/graphics/graphviz/files/patch-incr::edgeclip.c b/graphics/graphviz/files/patch-incr::edgeclip.c deleted file mode 100644 index 9b76690ad1f9..000000000000 --- a/graphics/graphviz/files/patch-incr::edgeclip.c +++ /dev/null @@ -1,9 +0,0 @@ ---- incr/edgeclip.c.orig Fri Nov 10 04:23:25 2000 -+++ incr/edgeclip.c Wed Nov 7 17:48:55 2001 -@@ -1,5 +1,5 @@ --#include <engine.h> - #include <math.h> -+#include <engine.h> - #define EPSILON (.005) - - static int seg_size(ilcurve_t *curve) diff --git a/graphics/graphviz/files/patch-incr::routem.c b/graphics/graphviz/files/patch-incr::routem.c deleted file mode 100644 index 60137ba731dd..000000000000 --- a/graphics/graphviz/files/patch-incr::routem.c +++ /dev/null @@ -1,13 +0,0 @@ ---- incr/routem.c.orig Tue Apr 18 05:55:32 2000 -+++ incr/routem.c Wed Nov 7 17:49:35 2001 -@@ -1,8 +1,8 @@ -+#include <stdio.h> /* temporary for debugging */ -+#include <math.h> - #include <engine.h> - #include <pathplan.h> - #include <vispath.h> --#include <stdio.h> /* temporary for debugging */ --#include <math.h> - - typedef struct { - Ppoly_t **list; diff --git a/graphics/graphviz/files/patch-lefty::exec.c b/graphics/graphviz/files/patch-lefty::exec.c new file mode 100644 index 000000000000..343211d06a3e --- /dev/null +++ b/graphics/graphviz/files/patch-lefty::exec.c @@ -0,0 +1,59 @@ +--- lefty/exec.c.orig Wed Apr 17 16:28:33 2002 ++++ lefty/exec.c Wed Apr 17 16:33:21 2002 +@@ -261,6 +261,8 @@ + return (boolop (v1o) == FALSE) ? Tfalse: Ttrue; + case C_NOT: + return (boolop (v1o) == TRUE) ? Tfalse: Ttrue; ++ default: ++ break; + } + /* NOT REACHED */ + return Tfalse; +@@ -646,7 +648,7 @@ + } + + static Tobj getval (Tobj co, int ci) { +- Tobj cvo, cko, cto; ++ Tobj cvo = 0, cko = 0, cto = 0; + Ctype_t ct, vt; + int vi, ni, nn = 0; + +@@ -687,10 +689,10 @@ + } + + static int getvar (Tobj co, int ci, tnk_t *tnkp) { +- Tobj cvo, cko, cto; +- Ctype_t ct, vt; ++ Tobj cvo = 0, cko = 0, cto = 0; ++ Ctype_t ct, vt = 0; + long m; +- int vi, ovi, nn, ni; ++ int vi, ovi, nn = 0, ni; + + if ((ct = TCgettype (co, ci)) == C_LVAR) { + nn = (int) TCgetinteger (co, (ni = TCgetnext (co, TCgetfp (co, ci)))); +@@ -780,6 +782,8 @@ + case C_REAL: + Tinsr (tnk.u.tnks.to, TCgetreal (tnk.u.tnks.co, tnk.u.tnks.vi), vo); + break; ++ default: ++ break; + } + break; + } +@@ -848,6 +852,7 @@ + case C_LE: return (r <= 0) ? TRUE : FALSE; + case C_GT: return (r > 0) ? TRUE : FALSE; + case C_GE: return (r >= 0) ? TRUE : FALSE; ++ default: break; + } + panic (POS, "orderop", "bad op code"); + return FALSE; /* NOT REACHED */ +@@ -892,6 +897,7 @@ + case C_MUL: d3 = d1 * d2; break; + case C_DIV: d3 = d1 / d2; break; + case C_MOD: d3 = (long) d1 % (long) d2; break; ++ default: break; + } + result: + if (d3 == (double) (long) d3) diff --git a/graphics/graphviz/files/patch-pathplan::route.c b/graphics/graphviz/files/patch-pathplan::route.c deleted file mode 100644 index be8cdd021fde..000000000000 --- a/graphics/graphviz/files/patch-pathplan::route.c +++ /dev/null @@ -1,12 +0,0 @@ ---- pathplan/route.c.orig Sun Oct 15 11:13:58 2000 -+++ pathplan/route.c Thu Nov 8 17:12:41 2001 -@@ -11,7 +11,9 @@ - - #include <stdlib.h> - #include <stdio.h> -+#ifndef __STDC__ - #include <malloc.h> -+#endif - #include <math.h> - #include "pathplan.h" - #include "solvers.h" diff --git a/graphics/graphviz/files/patch-pathplan::shortest.c b/graphics/graphviz/files/patch-pathplan::shortest.c deleted file mode 100644 index b88a516f54d1..000000000000 --- a/graphics/graphviz/files/patch-pathplan::shortest.c +++ /dev/null @@ -1,12 +0,0 @@ ---- pathplan/shortest.c.orig Tue Apr 18 05:56:48 2000 -+++ pathplan/shortest.c Thu Nov 8 17:13:03 2001 -@@ -11,7 +11,9 @@ - - #include <stdlib.h> - #include <stdio.h> -+#ifndef __STDC__ - #include <malloc.h> -+#endif - #include <limits.h> - #include <math.h> - #include "pathplan.h" diff --git a/graphics/graphviz/files/patch-tools::gpr::gpr.c b/graphics/graphviz/files/patch-tools::gpr::gpr.c deleted file mode 100644 index f8cad5622d1c..000000000000 --- a/graphics/graphviz/files/patch-tools::gpr::gpr.c +++ /dev/null @@ -1,10 +0,0 @@ ---- tools/gpr/gpr.c.orig Sat Nov 10 21:15:30 2001 -+++ tools/gpr/gpr.c Sat Nov 10 21:15:38 2001 -@@ -23,7 +23,6 @@ - #include <queue.h> - #include <sfstr.h> - #include <error.h> --#include "getopt.h" - - static const char* usage = - ": gpr [-o <ofile>] ([-f <prog>] | 'prog') [files]\n\ diff --git a/graphics/graphviz/files/patch-tools::sfio::sfhdr.h b/graphics/graphviz/files/patch-tools::sfio::sfhdr.h index 35046f7ddfce..dee4a6c658aa 100644 --- a/graphics/graphviz/files/patch-tools::sfio::sfhdr.h +++ b/graphics/graphviz/files/patch-tools::sfio::sfhdr.h @@ -1,10 +1,10 @@ ---- tools/sfio/sfhdr.h.orig Thu Apr 26 21:17:42 2001 -+++ tools/sfio/sfhdr.h Wed Nov 7 17:58:52 2001 +--- tools/sfio/sfhdr.h.orig Thu Apr 18 10:28:45 2002 ++++ tools/sfio/sfhdr.h Thu Apr 18 10:29:17 2002 @@ -230,7 +230,9 @@ #endif #if _hdr_values -+#ifndef __STDC__ ++#ifdef HAVE_VALUES_H #include <values.h> +#endif #if !defined(SF_MAXDOUBLE) && defined(MAXDOUBLE) diff --git a/graphics/graphviz/files/patch-tools::vmalloc::malloc.c b/graphics/graphviz/files/patch-tools::vmalloc::malloc.c deleted file mode 100644 index 3e02c3c26eb9..000000000000 --- a/graphics/graphviz/files/patch-tools::vmalloc::malloc.c +++ /dev/null @@ -1,13 +0,0 @@ ---- tools/vmalloc/malloc.c.orig Thu Apr 26 20:59:21 2001 -+++ tools/vmalloc/malloc.c Thu Nov 8 17:14:01 2001 -@@ -345,7 +345,9 @@ - #define malloc ______malloc - #define realloc ______realloc - --#include <malloc.h> -+#ifndef __STDC__ -+#include <malloc.h> -+#endif - - #if _lib_mallopt - #if __STD_C diff --git a/graphics/graphviz/pkg-plist b/graphics/graphviz/pkg-plist index 833176b62d71..af458ad57171 100644 --- a/graphics/graphviz/pkg-plist +++ b/graphics/graphviz/pkg-plist @@ -9,8 +9,10 @@ bin/lefty bin/lneato bin/neato bin/nop +bin/prune bin/sccmap bin/tred +bin/twopi bin/unflatten lib/graphviz/demo/dge lib/graphviz/demo/dge.README @@ -21,6 +23,8 @@ lib/graphviz/demo/doted.README lib/graphviz/demo/entities lib/graphviz/demo/entities.README lib/graphviz/demo/entities.html +lib/graphviz/demo/gcat +lib/graphviz/demo/gcat.README lib/graphviz/demo/ihi lib/graphviz/demo/ihi.README lib/graphviz/demo/ihi.testdata @@ -41,6 +45,7 @@ lib/graphviz/demo/pathplan_data/unknown.dat lib/graphviz/demo/spline lib/graphviz/demo/spline.README lib/graphviz/graphs/directed/KW91.dot +lib/graphviz/graphs/directed/Latin1.dot lib/graphviz/graphs/directed/NaN.dot lib/graphviz/graphs/directed/abstract.dot lib/graphviz/graphs/directed/alf.dot @@ -58,9 +63,11 @@ lib/graphviz/graphs/directed/fig6.dot lib/graphviz/graphs/directed/fsm.dot lib/graphviz/graphs/directed/grammar.dot lib/graphviz/graphs/directed/hashtable.dot +lib/graphviz/graphs/directed/honda-tokoro.dot lib/graphviz/graphs/directed/jcctree.dot lib/graphviz/graphs/directed/jsort.dot lib/graphviz/graphs/directed/ldbxtried.dot +lib/graphviz/graphs/directed/longflat.dot lib/graphviz/graphs/directed/mike.dot lib/graphviz/graphs/directed/newarrows.dot lib/graphviz/graphs/directed/nhg.dot @@ -69,6 +76,7 @@ lib/graphviz/graphs/directed/pm2way.dot lib/graphviz/graphs/directed/pmpipe.dot lib/graphviz/graphs/directed/polypoly.dot lib/graphviz/graphs/directed/proc3d.dot +lib/graphviz/graphs/directed/record2.dot lib/graphviz/graphs/directed/records.dot lib/graphviz/graphs/directed/rowe.dot lib/graphviz/graphs/directed/shells.dot @@ -81,9 +89,12 @@ lib/graphviz/graphs/directed/triedds.dot lib/graphviz/graphs/directed/try.dot lib/graphviz/graphs/directed/unix.dot lib/graphviz/graphs/directed/unix2.dot +lib/graphviz/graphs/directed/unix2k.dot lib/graphviz/graphs/directed/viewfile.dot lib/graphviz/graphs/directed/world.dot lib/graphviz/graphs/undirected/ER.dot +lib/graphviz/graphs/undirected/Heawood.dot +lib/graphviz/graphs/undirected/Petersen.dot lib/graphviz/graphs/undirected/ngk10_4.dot lib/graphviz/graphs/undirected/process.dot lib/graphviz/lefty/box.lefty @@ -98,18 +109,36 @@ lib/graphviz/lefty/fractal2.lefty lib/graphviz/lefty/lefty.psp lib/graphviz/lefty/slides.lefty lib/graphviz/lefty/tree.lefty -lib/graphviz/libgdtclft.so +lib/graphviz/libgdtclft.a +lib/graphviz/libgdtclft.la lib/graphviz/libgdtclft.so.0 -lib/graphviz/libtcldgl.so +@unexec rm -f %D/lib/graphviz/libgdtclft.so +@exec ln -fs libgdtclft.so.0 %D/lib/graphviz/libgdtclft.so +lib/graphviz/libtcldgl.a +lib/graphviz/libtcldgl.la lib/graphviz/libtcldgl.so.0 -lib/graphviz/libtcldgr.so +@unexec rm -f %D/lib/graphviz/libtcldgl.so +@exec ln -fs libtcldgl.so.0 %D/lib/graphviz/libtcldgl.so +lib/graphviz/libtcldgr.a +lib/graphviz/libtcldgr.la lib/graphviz/libtcldgr.so.0 -lib/graphviz/libtcldot.so +@unexec rm -f %D/lib/graphviz/libtcldgr.so +@exec ln -fs libtcldgr.so.0 %D/lib/graphviz/libtcldgr.so +lib/graphviz/libtcldot.a +lib/graphviz/libtcldot.la lib/graphviz/libtcldot.so.0 -lib/graphviz/libtclplan.so +@unexec rm -f %D/lib/graphviz/libtcldot.so +@exec ln -fs libtcldot.so.0 %D/lib/graphviz/libtcldot.so +lib/graphviz/libtclplan.a +lib/graphviz/libtclplan.la lib/graphviz/libtclplan.so.0 -lib/graphviz/libtkspline.so +@unexec rm -f %D/lib/graphviz/libtclplan.so +@exec ln -fs libtclplan.so.0 %D/lib/graphviz/libtclplan.so +lib/graphviz/libtkspline.a +lib/graphviz/libtkspline.la lib/graphviz/libtkspline.so.0 +@unexec rm -f %D/lib/graphviz/libtkspline.so +@exec ln -fs libtkspline.so.0 %D/lib/graphviz/libtkspline.so lib/graphviz/pkgIndex.tcl %%PORTDOCS%%share/doc/graphviz/Dot.ref %%PORTDOCS%%share/doc/graphviz/FAQ.html |