Upgrade to 3.1.3-4.

This commit is contained in:
Thierry Thomas 2012-07-07 15:15:13 +00:00
parent 6fcbd86674
commit 00f93e050c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=300600
11 changed files with 340 additions and 58 deletions

View file

@ -6,58 +6,70 @@
#
PORTNAME= cgnslib
DISTVERSION= 2.5-5
PORTREVISION= 1
DISTVERSION= 3.1.3-4
CATEGORIES= science
MASTER_SITES= SF/cgns/${PORTNAME}_${PORTVERSION:R}/Release%20${PORTVERSION:E}
MASTER_SITES= SF/cgns/${PORTNAME}_${PORTVERSION:R:R}/
DISTNAME= ${PORTNAME}_${DISTVERSION}
MAINTAINER= thierry@FreeBSD.org
COMMENT= CFD General Notation System library code
LICENSE= AS-IS
LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
LICENSE_NAME= AS-IS
LICENSE_FILE= ${WRKSRC}/LICENSE
LICENSE_FILE= ${WRKSRC}/license.txt
LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-shared=all
USE_CMAKE= yes
MAKE_ENV= PTHREAD_LIBS="${PTHREAD_LIBS}"
USE_LDCONFIG= yes
.if !defined(WITHOUT_HDF5)
LIB_DEPENDS+= hdf5.7:${PORTSDIR}/science/hdf5-18
CONFIGURE_ARGS+=--with-hdf5=${LOCALBASE}
CMAKE_ARGS+= -DENABLE_HDF5:BOOL=TRUE -DHDF5_NEED_ZLIB:BOOL=TRUE \
-DHDF5_INCLUDE_PATH:PATH="${LOCALBASE}/include"
PLIST_SUB= HDF5=""
. if !defined(WITHOUT_SZIP)
CMAKE_ARGS+= -DHDF5_NEED_SZIP:BOOL=OFF
. endif
.else
CONFIGURE_ARGS+=--with-hdf5=no
CMAKE_ARGS+= -DENABLE_HDF5:BOOL=OFF
PLIST_SUB= HDF5="@comment "
.endif
.if !defined(WITHOUT_TESTS)
USE_FORTRAN= yes
TESTSBIN= rundbtest cgwrite cgread
CMAKE_ARGS+= -DENABLE_TESTS:BOOL=TRUE -DENABLE_FORTRAN:BOOL=TRUE
TESTSBIN= cgwrite cgread test_partial
.endif
.if !defined(WITHOUT_TOOLS)
USE_TK= yes
USE_GL= gl glu
USE_XORG= xmu
CMAKE_ARGS+= -DBUILD_CGNSTOOLS:BOOL=TRUE \
-DTCL_INCLUDE_PATH:STRING="${TCL_INCLUDEDIR}" \
-DTK_INCLUDE_PATH:STRING="${TK_INCLUDEDIR}"
PLIST_SUB= TOOLS=""
.else
PLIST_SUB= TOOLS="@comment "
.endif
WRKSRC= ${WRKDIR}/${PORTNAME}_${PORTVERSION:R}
CNVBIN= adf2hdf hdf2adf
LIBVER= ${PORTVERSION:R:R}
OPTIONS= HDF5 "Enable or disable HDF5 interface" on \
TESTS "Enable test programs" on \
TOOLS "Build the CGNSTools package" on \
SZIP "SZIP support in HDF5" off
post-build:
.if !defined(WITHOUT_TESTS)
@(cd ${BUILD_WRKSRC}/tests; \
${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET})
@(cd ${BUILD_WRKSRC}/tests; \
${SETENV} ${MAKE_ENV} FOPTS="${FFLAGS} -I.." ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} fortran)
regression-test:
. for pg in ${TESTSBIN}
@(cd ${BUILD_WRKSRC}/src/tests; ./${pg})
. endfor
.endif
regression-test:
.for pg in ${TESTSBIN}
@(cd ${BUILD_WRKSRC}/tests; ./${pg})
.endfor
post-install:
${MV} ${PREFIX}/lib/libcgns.so ${PREFIX}/lib/libcgns.so.0
${LN} -sf ${PREFIX}/lib/libcgns.so.0 ${PREFIX}/lib/libcgns.so
${INSTALL_PROGRAM} ${CNVBIN:C|^|${BUILD_WRKSRC}/${OPSYS:U}/|} ${PREFIX}/bin
${LN} -sf ${PREFIX}/lib/libcgns.so.${LIBVER} ${PREFIX}/lib/libcgns.so.${LIBVER:R}
.include <bsd.port.mk>

View file

@ -1,2 +1,2 @@
SHA256 (cgnslib_2.5-5.tar.gz) = 038760e66c50050f596168a7ce6405810d883e6eeaa363f38185ed2e74f907f1
SIZE (cgnslib_2.5-5.tar.gz) = 398661
SHA256 (cgnslib_3.1.3-4.tar.gz) = bded38e0b70498f76f1663899bce361344dff16e37d8f8befa2cd0178dc2f810
SIZE (cgnslib_3.1.3-4.tar.gz) = 1571920

View file

@ -1,18 +0,0 @@
--- ./make.defs.in.orig Thu May 12 06:55:51 2005
+++ ./make.defs.in Sat Mar 24 21:33:14 2007
@@ -48,7 +48,7 @@
CFLAGS = @CFLAGS@ @SYSCFLAGS@
COOUT = @COOUT@
CEOUT = @CEOUT@
-CLIBS = @LIBS@
+CLIBS = @LIBS@ $(PTHREAD_LIBS)
#------------------------------------------------------------------------
# F2CFLAGS defines the type of Fortran to C interface.
@@ -122,5 +122,5 @@
F77 = @F77@
FFLAGS = @FFLAGS@ @SYSFFLAGS@
FEOUT = @FEOUT@
-FLIBS = @FLIBS@
+FLIBS = @FLIBS@ $(PTHREAD_LIBS)

View file

@ -0,0 +1,13 @@
--- src/cgnstools/cgnscalc/calcwish.c.orig 2011-02-12 23:52:41.000000000 +0100
+++ src/cgnstools/cgnscalc/calcwish.c 2012-03-13 22:15:02.000000000 +0100
@@ -20,8 +20,10 @@
* Sun shared libraries to be used for Tcl.
*/
+#ifndef __FreeBSD__
extern int matherr();
int *tclDummyMathPtr = (int *) matherr;
+#endif /* FreeBSD test */
#ifdef TK_TEST
extern int Tcltest_Init _ANSI_ARGS_((Tcl_Interp *interp));

View file

@ -0,0 +1,13 @@
--- ./src/cgnstools/cgnsplot/plotwish.c.orig 2011-02-12 23:50:31.000000000 +0100
+++ ./src/cgnstools/cgnsplot/plotwish.c 2012-03-13 22:19:20.000000000 +0100
@@ -20,8 +20,10 @@
* Sun shared libraries to be used for Tcl.
*/
+#ifndef __FreeBSD__
extern int matherr();
int *tclDummyMathPtr = (int *) matherr;
+#endif /* FreeBSD test */
extern int Cgnstcl_Init _ANSI_ARGS_((Tcl_Interp *interp));
extern int Tkogl_Init _ANSI_ARGS_((Tcl_Interp *interp));

View file

@ -0,0 +1,13 @@
--- ./src/cgnstools/cgnsview/cgiowish.c.orig 2011-02-12 23:47:39.000000000 +0100
+++ ./src/cgnstools/cgnsview/cgiowish.c 2012-03-13 22:04:59.000000000 +0100
@@ -20,8 +20,10 @@
* Sun shared libraries to be used for Tcl.
*/
+#ifndef __FreeBSD__
extern int matherr();
int *tclDummyMathPtr = (int *) matherr;
+#endif /* FreeBSD test */
#ifdef TK_TEST
extern int Tcltest_Init _ANSI_ARGS_((Tcl_Interp *interp));

View file

@ -0,0 +1,11 @@
--- ./src/cgnstools/utilities/binaryio.h.orig 2011-02-12 23:52:26.000000000 +0100
+++ ./src/cgnstools/utilities/binaryio.h 2012-03-13 22:38:55.000000000 +0100
@@ -98,7 +98,7 @@
# define MACH_LOCAL MACH_WIN32
#endif
-#if defined(__linux) || defined(__CYGWIN__)
+#if defined(__linux) || defined(__CYGWIN__) || defined(__FreeBSD__)
# define ARCH_LOCAL ARCH_BSIEEE
# define MACH_LOCAL MACH_LINUX
#endif

View file

@ -0,0 +1,11 @@
--- src/cgnstools/utilities/p3dfout.c.orig 2011-02-12 23:52:26.000000000 +0100
+++ src/cgnstools/utilities/p3dfout.c 2012-03-13 22:40:39.000000000 +0100
@@ -20,7 +20,7 @@
MACH_LOCAL == MACH_UNKNOWN
fprintf (stderr,
"Fortran unformatted output not supported for %s machine\n",
- bf_machname (MACH_LOCAL);
+ bf_machname (MACH_LOCAL));
exit (1);
#else
buff = (char *) malloc (length + 1);

View file

@ -0,0 +1,20 @@
--- ./src/make.defs.in.orig 2011-03-12 00:38:33.000000000 +0100
+++ ./src/make.defs.in 2012-03-13 21:31:59.000000000 +0100
@@ -16,7 +16,7 @@
COOUT = @COOUT@
CEOUT = @CEOUT@
LDFLAGS = @LDFLAGS@
-CLIBS = @LIBS@
+CLIBS = @LIBS@ $(PTHREAD_LIBS)
#------------------------------------------------------------------------
# SPACE - used to force a space in the compiler executable output flag
@@ -64,7 +64,7 @@
F77 = @F77@
FFLAGS = @FFLAGS@ @SYSFFLAGS@
FEOUT = @FEOUT@
-FLIBS = @FLIBS@
+FLIBS = @FLIBS@ $(PTHREAD_LIBS)
#------------------------------------------------------------------------
# strip command for executables - set to true if not used

View file

@ -1,11 +0,0 @@
--- tests/rundbtest.orig Sat May 7 03:11:17 2005
+++ tests/rundbtest Sat Mar 24 21:41:06 2007
@@ -5,7 +5,7 @@
values="1 10 100 1000 10000 100000"
for z in $zones ; do
for v in $values ; do
- dbtest $z $v
+ ./dbtest $z $v
done
done
exit

View file

@ -1,7 +1,225 @@
%%HDF5%%bin/adf2hdf
%%HDF5%%bin/hdf2adf
bin/adf2hdf
bin/cgconfig
bin/cgnames
bin/cgnscalc
bin/cgnscheck
bin/cgnsconvert
bin/cgnsdiff
bin/cgnslist
bin/cgnsnodes
bin/cgnsplot
bin/cgnsupdate
bin/cgnsview
bin/unitconv
%%TOOLS%%bin/cgnstools/calcwish
%%TOOLS%%bin/cgnstools/cgiowish
%%TOOLS%%bin/cgnstools/cgns_to_plot3d
%%TOOLS%%bin/cgnstools/cgns_to_tecplot
%%TOOLS%%bin/cgnstools/cgns_to_vtk
%%TOOLS%%bin/cgnstools/convert_dataclass
%%TOOLS%%bin/cgnstools/convert_location
%%TOOLS%%bin/cgnstools/convert_variables
%%TOOLS%%bin/cgnstools/extract_subset
%%TOOLS%%bin/cgnstools/interpolate_cgns
%%TOOLS%%bin/cgnstools/patran_to_cgns
%%TOOLS%%bin/cgnstools/plot3d_to_cgns
%%TOOLS%%bin/cgnstools/plotwish
%%TOOLS%%bin/cgnstools/tecplot_to_cgns
bin/cgnsversion
bin/hdf2adf
include/cgnslib.h
include/cgnswin_f.h
include/cgnslib_f.h
include/cgns_io.h
include/cgnstypes.h
include/cgnstypes_f.h
lib/libcgns.a
lib/libcgns.so
lib/libcgns.so.0
lib/libcgns.so.3
lib/libcgns.so.3.1
%%TOOLS%%share/cgnstools/balloon.tcl
%%TOOLS%%share/cgnstools/cgns-icon.xbm
%%TOOLS%%share/cgnstools/cgns-mask.xbm
%%TOOLS%%share/cgnstools/cgns.ico
%%TOOLS%%share/cgnstools/cgns.png
%%TOOLS%%share/cgnstools/cgns.tcl
%%TOOLS%%share/cgnstools/cgnscalc-icon.xbm
%%TOOLS%%share/cgnstools/cgnscalc-mask.xbm
%%TOOLS%%share/cgnstools/cgnscalc.ico
%%TOOLS%%share/cgnstools/cgnscalc.png
%%TOOLS%%share/cgnstools/cgnscalc.tcl
%%TOOLS%%share/cgnstools/cgnsnodes.tcl
%%TOOLS%%share/cgnstools/cgnsplot-icon.xbm
%%TOOLS%%share/cgnstools/cgnsplot-mask.xbm
%%TOOLS%%share/cgnstools/cgnsplot.ico
%%TOOLS%%share/cgnstools/cgnsplot.png
%%TOOLS%%share/cgnstools/cgnsplot.tcl
%%TOOLS%%share/cgnstools/cgnsview.tcl
%%TOOLS%%share/cgnstools/combobox.tcl
%%TOOLS%%share/cgnstools/config.tcl
%%TOOLS%%share/cgnstools/conserved.cnv
%%TOOLS%%share/cgnstools/convert.tcl
%%TOOLS%%share/cgnstools/dialog.tcl
%%TOOLS%%share/cgnstools/dimensional.cnv
%%TOOLS%%share/cgnstools/editfile.tcl
%%TOOLS%%share/cgnstools/export.tcl
%%TOOLS%%share/cgnstools/filesel.tcl
%%TOOLS%%share/cgnstools/findfile.tcl
%%TOOLS%%share/cgnstools/frame.tcl
%%TOOLS%%share/cgnstools/help.tcl
%%TOOLS%%share/cgnstools/help/cgnsplot/base.html
%%TOOLS%%share/cgnstools/help/cgnsplot/cgnsplot.html
%%TOOLS%%share/cgnstools/help/cgnsplot/cutting.html
%%TOOLS%%share/cgnstools/help/cgnsplot/defaults.html
%%TOOLS%%share/cgnstools/help/cgnsplot/display.html
%%TOOLS%%share/cgnstools/help/cgnsplot/graphics.html
%%TOOLS%%share/cgnstools/help/cgnsplot/help.html
%%TOOLS%%share/cgnstools/help/cgnsplot/images/axes_but.gif
%%TOOLS%%share/cgnstools/help/cgnsplot/images/backface_but.gif
%%TOOLS%%share/cgnstools/help/cgnsplot/images/base_sel.gif
%%TOOLS%%share/cgnstools/help/cgnsplot/images/center_but.gif
%%TOOLS%%share/cgnstools/help/cgnsplot/images/cgnsplot.gif
%%TOOLS%%share/cgnstools/help/cgnsplot/images/cutplane.gif
%%TOOLS%%share/cgnstools/help/cgnsplot/images/cutting_but.gif
%%TOOLS%%share/cgnstools/help/cgnsplot/images/cutview.gif
%%TOOLS%%share/cgnstools/help/cgnsplot/images/display_menu.gif
%%TOOLS%%share/cgnstools/help/cgnsplot/images/error.gif
%%TOOLS%%share/cgnstools/help/cgnsplot/images/file_menu.gif
%%TOOLS%%share/cgnstools/help/cgnsplot/images/graphics.gif
%%TOOLS%%share/cgnstools/help/cgnsplot/images/help.gif
%%TOOLS%%share/cgnstools/help/cgnsplot/images/help_but.gif
%%TOOLS%%share/cgnstools/help/cgnsplot/images/help_menu.gif
%%TOOLS%%share/cgnstools/help/cgnsplot/images/lighting_but.gif
%%TOOLS%%share/cgnstools/help/cgnsplot/images/open_but.gif
%%TOOLS%%share/cgnstools/help/cgnsplot/images/options_menu.gif
%%TOOLS%%share/cgnstools/help/cgnsplot/images/perspective.gif
%%TOOLS%%share/cgnstools/help/cgnsplot/images/perspective_but.gif
%%TOOLS%%share/cgnstools/help/cgnsplot/images/popup.gif
%%TOOLS%%share/cgnstools/help/cgnsplot/images/region_info.gif
%%TOOLS%%share/cgnstools/help/cgnsplot/images/reset_but.gif
%%TOOLS%%share/cgnstools/help/cgnsplot/images/separator.gif
%%TOOLS%%share/cgnstools/help/cgnsplot/images/setup.gif
%%TOOLS%%share/cgnstools/help/cgnsplot/images/setup_but.gif
%%TOOLS%%share/cgnstools/help/cgnsplot/images/status.gif
%%TOOLS%%share/cgnstools/help/cgnsplot/images/tree.gif
%%TOOLS%%share/cgnstools/help/cgnsplot/menu.html
%%TOOLS%%share/cgnstools/help/cgnsplot/perspective.html
%%TOOLS%%share/cgnstools/help/cgnsplot/separator.html
%%TOOLS%%share/cgnstools/help/cgnsplot/status.html
%%TOOLS%%share/cgnstools/help/cgnsplot/toolbar.html
%%TOOLS%%share/cgnstools/help/cgnsview/buttons.html
%%TOOLS%%share/cgnstools/help/cgnsview/cgnsnodes.html
%%TOOLS%%share/cgnstools/help/cgnsview/cgnsview.html
%%TOOLS%%share/cgnstools/help/cgnsview/customize.html
%%TOOLS%%share/cgnstools/help/cgnsview/datadesc.html
%%TOOLS%%share/cgnstools/help/cgnsview/dialogs.html
%%TOOLS%%share/cgnstools/help/cgnsview/images/autosize_dialog.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/calc.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/cgnsview.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/check.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/check_dialog.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/clear_but.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/collapse.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/command.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/config_menu.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/convert.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/create_but.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/custom_menu.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/datadesc.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/datasize.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/delete_but.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/expand.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/export.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/file-link.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/file.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/file_menu.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/fileinfo_dialog.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/find.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/find_dialog.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/findagain.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/folder-link.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/folder.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/follow.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/help.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/help_menu.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/helpsetup_dialog.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/import.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/invalid.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/linkdesc.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/linknode_dialog.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/modify_but.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/new.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/nodedata.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/nodedesc.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/nodeinfo.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/noderef.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/nodetree.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/open.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/plot.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/popup.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/properties.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/question-link.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/question.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/read_but.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/refresh.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/save.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/separator.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/tools_menu.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/tree_menu.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/unitconv.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/units.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/update.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/utility.gif
%%TOOLS%%share/cgnstools/help/cgnsview/images/version_dialog.gif
%%TOOLS%%share/cgnstools/help/cgnsview/linkdesc.html
%%TOOLS%%share/cgnstools/help/cgnsview/menu.html
%%TOOLS%%share/cgnstools/help/cgnsview/nodedata.html
%%TOOLS%%share/cgnstools/help/cgnsview/nodedesc.html
%%TOOLS%%share/cgnstools/help/cgnsview/nodetree.html
%%TOOLS%%share/cgnstools/help/cgnsview/separator.html
%%TOOLS%%share/cgnstools/help/cgnsview/toolbar.html
%%TOOLS%%share/cgnstools/help/cgnsview/unitconv.html
%%TOOLS%%share/cgnstools/help/utilities/convert.html
%%TOOLS%%share/cgnstools/help/utilities/export.html
%%TOOLS%%share/cgnstools/help/utilities/images/dimensionalization.gif
%%TOOLS%%share/cgnstools/help/utilities/images/export_plot3d.gif
%%TOOLS%%share/cgnstools/help/utilities/images/export_tecplot.gif
%%TOOLS%%share/cgnstools/help/utilities/images/extract_subset.gif
%%TOOLS%%share/cgnstools/help/utilities/images/import_patran.gif
%%TOOLS%%share/cgnstools/help/utilities/images/import_plot3d.gif
%%TOOLS%%share/cgnstools/help/utilities/images/import_tecplot.gif
%%TOOLS%%share/cgnstools/help/utilities/images/import_user.gif
%%TOOLS%%share/cgnstools/help/utilities/images/interpolate_solution.gif
%%TOOLS%%share/cgnstools/help/utilities/images/solution_location.gif
%%TOOLS%%share/cgnstools/help/utilities/images/solution_variables.gif
%%TOOLS%%share/cgnstools/help/utilities/import.html
%%TOOLS%%share/cgnstools/help/utilities/subset.html
%%TOOLS%%share/cgnstools/help/utilities/utilities.html
%%TOOLS%%share/cgnstools/import.tcl
%%TOOLS%%share/cgnstools/menubar.tcl
%%TOOLS%%share/cgnstools/patran.tcl
%%TOOLS%%share/cgnstools/plot3d.tcl
%%TOOLS%%share/cgnstools/primitive.cnv
%%TOOLS%%share/cgnstools/tclIndex
%%TOOLS%%share/cgnstools/tclreg.tcl
%%TOOLS%%share/cgnstools/tecplot.tcl
%%TOOLS%%share/cgnstools/tkdir.tcl
%%TOOLS%%share/cgnstools/tools.tcl
%%TOOLS%%share/cgnstools/tree.tcl
%%TOOLS%%share/cgnstools/unitconv.ico
%%TOOLS%%share/cgnstools/unitconv.png
%%TOOLS%%share/cgnstools/unitconv.tcl
%%TOOLS%%share/cgnstools/unitconv.xbm
%%TOOLS%%share/cgnstools/units.tcl
%%TOOLS%%share/cgnstools/util.tcl
%%TOOLS%%share/cgnstools/utilities.mnu
%%TOOLS%%share/cgnstools/vtk.tcl
%%TOOLS%%@dirrm bin/cgnstools
%%TOOLS%%@dirrm share/cgnstools/help/utilities/images
%%TOOLS%%@dirrm share/cgnstools/help/utilities
%%TOOLS%%@dirrm share/cgnstools/help/cgnsview/images
%%TOOLS%%@dirrm share/cgnstools/help/cgnsview
%%TOOLS%%@dirrm share/cgnstools/help/cgnsplot/images
%%TOOLS%%@dirrm share/cgnstools/help/cgnsplot
%%TOOLS%%@dirrm share/cgnstools/help
%%TOOLS%%@dirrm share/cgnstools