svn commit: r330061 - in head/science/gnudatalanguage: . files
Thierry Thomas
thierry at FreeBSD.org
Fri Oct 11 09:35:05 UTC 2013
Author: thierry
Date: Fri Oct 11 09:35:03 2013
New Revision: 330061
URL: http://svnweb.freebsd.org/changeset/ports/330061
Log:
- Upgrade to GDL 0.9.4.
- Switch to cmake.
Added:
head/science/gnudatalanguage/files/patch-CMakeLists.txt (contents, props changed)
head/science/gnudatalanguage/files/patch-CMakeModules_Findlibps.cmake (contents, props changed)
head/science/gnudatalanguage/files/patch-src_plotting.cpp (contents, props changed)
head/science/gnudatalanguage/files/patch-src_plotting_contour.cpp (contents, props changed)
head/science/gnudatalanguage/files/patch-src_plotting_xyouts.cpp (contents, props changed)
Deleted:
head/science/gnudatalanguage/files/patch-Makefile.in
head/science/gnudatalanguage/files/patch-doc_Makefile.in
head/science/gnudatalanguage/files/patch-src_Makefile.in
head/science/gnudatalanguage/files/patch-src_antlr_Makefile.in
head/science/gnudatalanguage/files/patch-src_pro_Makefile.in
head/science/gnudatalanguage/files/patch-src_pro_dicom_Makefile.in
head/science/gnudatalanguage/files/patch-src_pro_envi_Makefile.in
head/science/gnudatalanguage/files/patch-testsuite_Makefile.in
Modified:
head/science/gnudatalanguage/Makefile
head/science/gnudatalanguage/distinfo
head/science/gnudatalanguage/pkg-plist
Modified: head/science/gnudatalanguage/Makefile
==============================================================================
--- head/science/gnudatalanguage/Makefile Fri Oct 11 07:31:44 2013 (r330060)
+++ head/science/gnudatalanguage/Makefile Fri Oct 11 09:35:03 2013 (r330061)
@@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= gnudatalanguage
-DISTVERSION= 0.9.3
-PORTREVISION= 3
+DISTVERSION= 0.9.4
CATEGORIES= science lang
MASTER_SITES= SF/${PORTNAME}/gdl/${DISTVERSION}
.if defined(BUILD_PYTHON_MODULE)
@@ -16,8 +15,9 @@ COMMENT?= GDL, a free IDL compatible inc
LICENSE= GPLv2
+#NO_STAGE= yes
+
#---------------------------------------------------------------------------
-NO_STAGE= yes
# You may define these options:
#
# - WITHOUT_GRAPHICSMAGICK: remove GraphicsMagick support
@@ -25,77 +25,95 @@ NO_STAGE= yes
# - WITHOUT_NETCDF: remove netCDF support
# - WITHOUT_HDF: remove HDF 4 suppport (conflict with netCDF)
# - WITHOUT_PYTHON: don't build the interface to python
-# - WITH_FFTW3: faster fft routine than GSL
+# - WITHOUT_FFTW3: remove FFTW (faster fft routine than GSL)
+# - WITHOUT_EIGEN remove Eigen support (boost performance)
+# - WITHOUT_UDUNITS remove unit conversion in IMSL_CONSTANT
#
#---------------------------------------------------------------------------
LIB_DEPENDS+= libplplotd.so:${PORTSDIR}/math/plplot \
- libps.so:${PORTSDIR}/print/pslib \
- libgsl.so:${PORTSDIR}/math/gsl \
- libdps.so:${PORTSDIR}/x11/dgs
+ libps.so:${PORTSDIR}/print/pslib \
+ libgsl.so:${PORTSDIR}/math/gsl
+
+USE_DOS2UNIX= src/plotting_xyouts.cpp
USE_GCC= yes
USE_WX= 2.8
USE_XORG= x11
-USES= pkgconfig
-GNU_CONFIGURE= yes
+USES= pkgconfig cmake
+
# Disable ncurses and readline from ports
# Disable ImageMagick (does'nt work with plplot because dynamic drivers
# are enabled by default)
-CONFIGURE_ARGS= --with-ncursesdir=/usr --with-readlinedir=/usr --without-Magick
-CONFIGURE_ENV= wxConfig=${WX_CONFIG}
-CPPFLAGS+= ${CFLAGS} -fno-inline ${PTHREAD_CFLAGS} -I${LOCALBASE}/include ${GM_INC}
+# TODO: add a slave port for mpich - ATM just deactivate its support.
+CMAKE_ARGS= -DREADLINEDIR:STRING="/usr" \
+ -DNCURSESDIR:STRING="/usr" \
+ -DMPICH:BOOL=NO \
+ -DMAGICK:BOOL=NO
+CPPFLAGS+= ${CFLAGS} -fno-inline ${PTHREAD_CFLAGS}
LDFLAGS+= ${PTHREAD_LIBS} -L${LOCALBASE}/lib
SLAVEDIRS= science/py-gnudatalanguage
.if defined(BUILD_PYTHON_MODULE)
CATEGORIES+= python
-CONFIGURE_ARGS+=--enable-python_module --with-openmp=no
+CMAKE_ARGS+= -DPYTHON_MODULE:BOOL=YES -DOPENMP:BOOL=NO
PLIST_FILES= %%PYTHON_SITELIBDIR%%/GDL.so
PLIST_SUB+= MASTER="@comment "
.else
-MAN1= gdl.1
+CMAKE_ARGS+= -DPYTHON_MODULE:BOOL=NO
PLIST_SUB+= MASTER=""
.endif
.if !defined(WITHOUT_GRAPHICSMAGICK)
LIB_DEPENDS+= libGraphicsMagick.so.12:${PORTSDIR}/graphics/GraphicsMagick13
-CONFIGURE_ARGS+=--with-GraphicsMagick=${LOCALBASE}
-GM_INC= -I${LOCALBASE}/include/GraphicsMagick
+CMAKE_ARGS+= -DGRAPHICSMAGICK:BOOL=YES
.else
-CONFIGURE_ARGS+=--with-Magick=no
+CMAKE_ARGS+= -DGRAPHICSMAGICK:BOOL=NO
.endif
.if !defined(WITHOUT_HDF5)
LIB_DEPENDS+= libhdf5.so.7:${PORTSDIR}/science/hdf5-18
-CONFIGURE_ARGS+=--with-hdf5=${LOCALBASE}
+CMAKE_ARGS+= -DHDF5:BOOL=YES
.else
-CONFIGURE_ARGS+=--with-hdf5=no
+CMAKE_ARGS+= -DHDF5:BOOL=NO
.endif
.if !defined(WITHOUT_NETCDF)
LIB_DEPENDS+= libnetcdf.so:${PORTSDIR}/science/netcdf
-CONFIGURE_ARGS+=--with-netcdf=${LOCALBASE} --with-hdf=no
+CMAKE_ARGS+= -DNETCDF:BOOL=YES -DHDF:BOOL=NO
.else
-CONFIGURE_ARGS+=--with-netcdf=no
+CMAKE_ARGS+= -DNETCDF:BOOL=NO
. if !defined(WITHOUT_HDF)
LIB_DEPENDS+= libdf.so.2:${PORTSDIR}/science/hdf
-CONFIGURE_ARGS+=--with-hdf=${LOCALBASE}
+CMAKE_ARGS+= -DHDF:BOOL=YES
. else
-CONFIGURE_ARGS+=--with-hdf=no
+CMAKE_ARGS+= -DHDF:BOOL=NO
. endif
.endif
+.if !defined(WITHOUT_EIGEN)
+BUILD_DEPENDS+= ${LOCALBASE}/libdata/pkgconfig/eigen3.pc:${PORTSDIR}/math/eigen3
+CMAKE_ARGS+= -DEIGEN3:BOOL=YES
+.else
+CMAKE_ARGS+= -DEIGEN3:BOOL=NO
+.endif
+
+.if !defined(WITHOUT_UDUNITS)
+LIB_DEPENDS+= libudunits2.so:${PORTSDIR}/science/udunits
+CMAKE_ARGS+= -DUDUNITS:BOOL=YES
+.else
+CMAKE_ARGS+= -DUDUNITS:BOOL=NO
+.endif
+
.if !defined(WITHOUT_PYTHON) || defined(BUILD_PYTHON_MODULE)
USE_PYTHON= -2.7
BUILD_DEPENDS+= ${PYNUMPY}
RUN_DEPENDS+= ${PYNUMPY} \
${PYTHON_PKGNAMEPREFIX}matplotlib>0:${PORTSDIR}/math/py-matplotlib
-CONFIGURE_ENV+= PYTHON_VERSION=${PYTHON_VER}
-CONFIGURE_ARGS+=--with-python=${PYTHONBASE}
+CMAKE_ARGS+= -DPYTHON:BOOL=YES -DPYTHONVERSION:STRING="${PYTHON_VER}"
.else
-CONFIGURE_ARGS+=--with-python=no
+CMAKE_ARGS+= -DPYTHON:BOOL=NO
.endif
.include <bsd.port.pre.mk>
@@ -104,31 +122,24 @@ CONFIGURE_ARGS+=--with-python=no
BROKEN= Does not build with ancient binutils
.endif
-.if defined(PACKAGE_BUILDING) || exists(${LOCALBASE}/lib/libfftw3.so)
-WITH_FFTW3= yes
-.endif
-.if defined(WITH_FFTW3)
+.if !defined(WITHOUT_FFTW3)
LIB_DEPENDS+= libfftw3.so:${PORTSDIR}/math/fftw3 \
libfftw3f.so:${PORTSDIR}/math/fftw3-float
-CONFIGURE_ARGS+=--with-fftw=${LOCALBASE}
+CMAKE_ARGS+= -DFFTW:BOOL=YES
+.else
+CMAKE_ARGS+= -DFFTW:BOOL=NO
.endif
-pre-configure:
- ${REINPLACE_CMD} -e 's|wx-config|${WX_CONFIG}|g' \
- ${WRKSRC}/${CONFIGURE_SCRIPT}
-
.if defined(BUILD_PYTHON_MODULE)
do-install:
${INSTALL_DATA} ${WRKSRC}/src/.libs/libgdl.so.0 ${PYTHON_SITELIBDIR}/GDL.so
.endif
.if !defined(BUILD_PYTHON_MODULE)
-post-install:
+post-stage:
. if !defined(NOPORTEXAMPLES)
- ${MKDIR} ${EXAMPLESDIR}/testsuite
- (cd ${WRKSRC}/testsuite && ${COPYTREE_SHARE} \* ${EXAMPLESDIR}/testsuite/)
- ${RM} ${EXAMPLESDIR}/testsuite/Makefile.in.orig
- @${ECHO_MSG} "===> Examples installed in ${EXAMPLESDIR}."
+ ${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/testsuite
+ (cd ${WRKSRC}/testsuite && ${COPYTREE_SHARE} \* ${STAGEDIR}${EXAMPLESDIR}/testsuite/)
. endif
.endif
Modified: head/science/gnudatalanguage/distinfo
==============================================================================
--- head/science/gnudatalanguage/distinfo Fri Oct 11 07:31:44 2013 (r330060)
+++ head/science/gnudatalanguage/distinfo Fri Oct 11 09:35:03 2013 (r330061)
@@ -1,2 +1,2 @@
-SHA256 (gdl-0.9.3.tar.gz) = 6d3c30c06ce2772a1017b3685dfc8fb74308e5f9d258fcb764b765c33d20f500
-SIZE (gdl-0.9.3.tar.gz) = 2540106
+SHA256 (gdl-0.9.4.tar.gz) = e18010cd874cad7b1fd8c752e9386571156e1fb066f2d27ecbcc15bbfc9514fa
+SIZE (gdl-0.9.4.tar.gz) = 2191342
Added: head/science/gnudatalanguage/files/patch-CMakeLists.txt
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/science/gnudatalanguage/files/patch-CMakeLists.txt Fri Oct 11 09:35:03 2013 (r330061)
@@ -0,0 +1,11 @@
+--- ./CMakeLists.txt.orig 2013-09-28 17:03:32.000000000 +0200
++++ ./CMakeLists.txt 2013-09-30 16:19:09.000000000 +0200
+@@ -752,7 +752,7 @@
+ endif(NOT PYTHON_MODULE)
+
+ install(FILES ${CMAKE_SOURCE_DIR}/AUTHORS ${CMAKE_SOURCE_DIR}/README DESTINATION ${CMAKE_INSTALL_PREFIX}/${GDL_DATA_DIR})
+-install(FILES ${CMAKE_SOURCE_DIR}/doc/gdl.1 DESTINATION ${CMAKE_INSTALL_PREFIX}/share/man/man1)
++install(FILES ${CMAKE_SOURCE_DIR}/doc/gdl.1 DESTINATION ${CMAKE_INSTALL_PREFIX}/man/man1)
+
+ # substitute variables in configure.h.cmake and move it to configure.h
+ configure_file(${CMAKE_SOURCE_DIR}/config.h.cmake ${CMAKE_BINARY_DIR}/config.h)
Added: head/science/gnudatalanguage/files/patch-CMakeModules_Findlibps.cmake
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/science/gnudatalanguage/files/patch-CMakeModules_Findlibps.cmake Fri Oct 11 09:35:03 2013 (r330061)
@@ -0,0 +1,8 @@
+--- ./CMakeModules/Findlibps.cmake.orig 2013-01-03 00:26:23.000000000 +0100
++++ ./CMakeModules/Findlibps.cmake 2013-09-30 13:27:07.000000000 +0200
+@@ -1,4 +1,4 @@
+-find_path(LIBPSPKG libps.pc PATH_SUFFIXES lib lib/pkgconfig lib64/pkgconfig)
++find_path(LIBPSPKG libps.pc PATH_SUFFIXES lib libdata/pkgconfig lib/pkgconfig lib64/pkgconfig)
+ include(FindPackageHandleStandardArgs)
+ if(LIBPSPKG)
+ set(ENV{PKG_CONFIG_PATH} ${LIBPSPKG}) # pkg search path
Added: head/science/gnudatalanguage/files/patch-src_plotting.cpp
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/science/gnudatalanguage/files/patch-src_plotting.cpp Fri Oct 11 09:35:03 2013 (r330061)
@@ -0,0 +1,56 @@
+--- src/plotting.cpp.orig 2013-09-22 05:09:11.000000000 +0200
++++ src/plotting.cpp 2013-10-11 10:55:14.000000000 +0200
+@@ -1891,7 +1891,7 @@
+ DFloatGDL* charthickVect=e->GetKWAs<DFloatGDL>( charthickIx );
+ charthick=(*charthickVect)[0];
+ }
+- a->wid(charthick);
++ a->width(charthick);
+ }
+
+ void gdlSetAxisCharsize(EnvT *e, GDLGStream *a, string axis)
+@@ -1919,7 +1919,7 @@
+
+ e->AssureFloatScalarKWIfPresent("THICK", thick);
+ if ( thick<=0.0 ) thick=1.0;
+- a->wid(static_cast<PLINT>(floor(thick-0.5)));
++ a->width(static_cast<PLINT>(floor(thick-0.5)));
+ }
+
+ //LINESTYLE
+@@ -2936,7 +2936,7 @@
+ a->smaj((PLFLT)OtherAxisSizeInMm, 1.0); //set base ticks to default 0.02 viewport converted to mm.
+ a->smin((PLFLT)OtherAxisSizeInMm/2.0,1.0); //idem min (plplt defaults)
+ //thick for box and ticks.
+- a->wid(Thick);
++ a->width(Thick);
+ //ticks or grid eventually with style and length:
+ if (abs(TickLen)<1e-6) Opt=""; else Opt="st"; //remove ticks if ticklen=0
+ if (TickLen<0) {Opt+="i"; TickLen=-TickLen;}
+@@ -2981,7 +2981,7 @@
+ else if (axis=="Y") a->box("", 0.0, 0 , Opt.c_str(), 0.0, 0);
+ }
+ //reset charsize & thick
+- a->wid(1);
++ a->width(1);
+ a->sizeChar(1.0);
+ }
+ return 0;
+@@ -3124,7 +3124,7 @@
+ a->smaj((PLFLT)OtherAxisSizeInMm, 1.0); //set base ticks to default 0.02 viewport converted to mm.
+ a->smin((PLFLT)OtherAxisSizeInMm/2.0,1.0); //idem min (plplt defaults)
+ //thick for box and ticks.
+- a->wid(Thick);
++ a->width(Thick);
+ //ticks or grid eventually with style and length:
+ if (abs(TickLen)<1e-6) Opt=""; else Opt="st"; //remove ticks if ticklen=0
+ if (TickLen<0) {Opt+="i"; TickLen=-TickLen;}
+@@ -3149,7 +3149,7 @@
+ else if (axis=="Z") a->box3("","",0,0,"","",0,0, Opt.c_str(), "", TickInterval, Minor);
+ }
+ //reset charsize & thick
+- a->wid(1);
++ a->width(1);
+ a->sizeChar(1.0);
+ }
+ return 0;
Added: head/science/gnudatalanguage/files/patch-src_plotting_contour.cpp
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/science/gnudatalanguage/files/patch-src_plotting_contour.cpp Fri Oct 11 09:35:03 2013 (r330061)
@@ -0,0 +1,20 @@
+--- src/plotting_contour.cpp.orig 2013-09-17 22:13:27.000000000 +0200
++++ src/plotting_contour.cpp 2013-10-11 10:35:22.000000000 +0200
+@@ -728,7 +728,7 @@
+ actStream->pat(1,&ori,&spa);
+
+ if (docolors) actStream->Color ( ( *colors )[i%colors->N_Elements ( )], decomposed, (PLINT)colorindex_table_0_color );
+- if (dothick) actStream->wid ( ( *thick )[i%thick->N_Elements ( )]);
++ if (dothick) actStream->width ( ( *thick )[i%thick->N_Elements ( )]);
+ if (dostyle) gdlLineStyle(actStream, ( *style )[i%style->N_Elements ( )]);
+ actStream->shade( map, xEl, yEl, isLog?doIt:NULL, xStart, xEnd, yStart, yEnd,
+ clevel[i], clevel[i+1],
+@@ -811,7 +811,7 @@
+ actStream->stransform(gdl3dTo2dTransformContour, &Data3d);
+ }
+ if (docolors) actStream->Color ( ( *colors )[i%colors->N_Elements ( )], decomposed, 2);
+- if (dothick) actStream->wid ( ( *thick )[i%thick->N_Elements ( )]);
++ if (dothick) actStream->width ( ( *thick )[i%thick->N_Elements ( )]);
+ if (dostyle) gdlLineStyle(actStream, ( *style )[i%style->N_Elements ( )]);
+ if (dolabels) actStream->setcontlabelparam ( LABELOFFSET, (PLFLT) label_size, LABELSPACING,
+ (PLINT)(*labels)[i%labels->N_Elements()] );
Added: head/science/gnudatalanguage/files/patch-src_plotting_xyouts.cpp
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/science/gnudatalanguage/files/patch-src_plotting_xyouts.cpp Fri Oct 11 09:35:03 2013 (r330061)
@@ -0,0 +1,11 @@
+--- src/plotting_xyouts.cpp.orig 2013-10-11 11:26:06.000000000 +0200
++++ src/plotting_xyouts.cpp 2013-10-11 11:27:24.000000000 +0200
+@@ -339,7 +339,7 @@
+ //plot!
+ if (docharsize) actStream->sizeChar(( *size )[i%size->N_Elements ( )]);
+ if (docolor) actStream->Color ( ( *color )[i%color->N_Elements ( )], decomposed, 2);
+- if (docharthick) actStream->wid ( ( *charthick )[i%charthick->N_Elements ( )]);
++ if (docharthick) actStream->width ( ( *charthick )[i%charthick->N_Elements ( )]);
+ //orientation word is not orientation page depending on axes increment direction [0..1] vs. [1..0]
+ PLFLT oriD=(( *orientation )[i%orientation->N_Elements ( )]); //ori DEVICE
+ PLFLT oriW=oriD; //ori WORLD
Modified: head/science/gnudatalanguage/pkg-plist
==============================================================================
--- head/science/gnudatalanguage/pkg-plist Fri Oct 11 07:31:44 2013 (r330060)
+++ head/science/gnudatalanguage/pkg-plist Fri Oct 11 09:35:03 2013 (r330061)
@@ -1,11 +1,33 @@
%%MASTER%%bin/gdl
+%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/CMakeFiles/CMakeDirectoryInformation.cmake
+%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/CMakeFiles/check.dir/DependInfo.cmake
+%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/CMakeFiles/check.dir/build.make
+%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/CMakeFiles/check.dir/cmake_clean.cmake
+%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/CMakeFiles/check.dir/progress.make
+%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/CMakeFiles/launchtest.dir/DependInfo.cmake
+%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/CMakeFiles/launchtest.dir/build.make
+%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/CMakeFiles/launchtest.dir/cmake_clean.cmake
+%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/CMakeFiles/launchtest.dir/depend.make
+%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/CMakeFiles/launchtest.dir/flags.make
+%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/CMakeFiles/launchtest.dir/link.txt
+%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/CMakeFiles/launchtest.dir/progress.make
+%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/CMakeFiles/progress.marks
+%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/CMakeFiles/test_ce.dir/DependInfo.cmake
+%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/CMakeFiles/test_ce.dir/build.make
+%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/CMakeFiles/test_ce.dir/cmake_clean.cmake
+%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/CMakeFiles/test_ce.dir/depend.make
+%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/CMakeFiles/test_ce.dir/flags.make
+%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/CMakeFiles/test_ce.dir/link.txt
+%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/CMakeFiles/test_ce.dir/progress.make
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/CMakeLists.txt
+%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/CTestTestfile.cmake
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/Makefile
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/Makefile.am
-%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/Makefile.in
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/README
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/Saturn.jpg
+%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/benchmark/bench_matrix_multiply.pro
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/checks
+%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/cmake_install.cmake
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/example.grib
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/image_test.pro
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/launchtest.c
@@ -17,6 +39,7 @@
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test-total.pro
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_MathFunctionsDim.pro
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_angles.pro
+%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_array_equal.pro
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_axis.pro
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_base64.pro
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_besel.pro
@@ -68,6 +91,7 @@
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3488003.pro
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3559291.pro
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_byte_conversion.pro
+%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bytscl.pro
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_call_function.pro
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_call_procedure.pro
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_ce.pro
@@ -129,6 +153,7 @@
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_known_bugs.pro
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_ludc_lusol.pro
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_map.pro
+%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_matrix_multiply.pro
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_memory.pro
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_minmax.pro
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_moment.pro
@@ -136,6 +161,7 @@
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_multiroots.pro
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_nans_in_sort_and_median.pro
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_nestedloop.pro
+%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_netcdf.pro
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_ntags.pro
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_op_elem.pro
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_op_power.pro
@@ -182,6 +208,7 @@
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_stregex.pro
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_strmatch.pro
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_strsplit.pro
+%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_structures.pro
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_suite.pro
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_surface_basic.pro
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_systime.pro
@@ -199,7 +226,6 @@
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_widgets.pro
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_zeropoly.pro
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_zip.pro
-%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/testsuite/launchtest.c
%%MASTER%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/try
%%MASTER%%%%DATADIR%%/AUTHORS
%%MASTER%%%%DATADIR%%/README
@@ -211,6 +237,7 @@
%%MASTER%%%%DATADIR%%/lib/calendar.pro
%%MASTER%%%%DATADIR%%/lib/congrid.pro
%%MASTER%%%%DATADIR%%/lib/correlate.pro
+%%MASTER%%%%DATADIR%%/lib/delvar.pro
%%MASTER%%%%DATADIR%%/lib/deriv.pro
%%MASTER%%%%DATADIR%%/lib/diag_matrix.pro
%%MASTER%%%%DATADIR%%/lib/dialog_message.pro
@@ -226,15 +253,16 @@
%%MASTER%%%%DATADIR%%/lib/dicom/gdlffdicom_time.pro
%%MASTER%%%%DATADIR%%/lib/dicom/gdlffdicom_trim.pro
%%MASTER%%%%DATADIR%%/lib/dist.pro
+%%MASTER%%%%DATADIR%%/lib/doc_library.pro
%%MASTER%%%%DATADIR%%/lib/envi/read_envi_file.pro
%%MASTER%%%%DATADIR%%/lib/envi/test_write_read_envi.pro
%%MASTER%%%%DATADIR%%/lib/envi/write_envi_file.pro
%%MASTER%%%%DATADIR%%/lib/escape_special_char.pro
%%MASTER%%%%DATADIR%%/lib/factorial.pro
-%%MASTER%%%%DATADIR%%/lib/file_basename.pro
+%%MASTER%%%%DATADIR%%/lib/file_basename_old.pro
%%MASTER%%%%DATADIR%%/lib/file_copy.pro
%%MASTER%%%%DATADIR%%/lib/file_delete.pro
-%%MASTER%%%%DATADIR%%/lib/file_dirname.pro
+%%MASTER%%%%DATADIR%%/lib/file_dirname_old.pro
%%MASTER%%%%DATADIR%%/lib/file_expand_path.pro
%%MASTER%%%%DATADIR%%/lib/file_lines.pro
%%MASTER%%%%DATADIR%%/lib/file_which.pro
@@ -264,6 +292,8 @@
%%MASTER%%%%DATADIR%%/lib/meanabsdev.pro
%%MASTER%%%%DATADIR%%/lib/moment.pro
%%MASTER%%%%DATADIR%%/lib/norm.pro
+%%MASTER%%%%DATADIR%%/lib/online_help.pro
+%%MASTER%%%%DATADIR%%/lib/oploterr.pro
%%MASTER%%%%DATADIR%%/lib/path_sep.pro
%%MASTER%%%%DATADIR%%/lib/ploterr.pro
%%MASTER%%%%DATADIR%%/lib/poly.pro
@@ -327,10 +357,15 @@
%%MASTER%%%%DATADIR%%/lib/write_pict.pro
%%MASTER%%%%DATADIR%%/lib/write_png.pro
%%MASTER%%%%DATADIR%%/lib/zenity_check.pro
+%%MASTER%%man/man1/gdl.1.gz
%%MASTER%%@dirrm %%DATADIR%%/lib/envi
%%MASTER%%@dirrm %%DATADIR%%/lib/dicom
%%MASTER%%@dirrm %%DATADIR%%/lib
%%MASTER%%@dirrm %%DATADIR%%
-%%MASTER%%%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/testsuite/testsuite
-%%MASTER%%%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/testsuite
-%%MASTER%%%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%
+%%MASTER%%%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/testsuite/benchmark
+%%MASTER%%%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/testsuite/CMakeFiles/test_ce.dir
+%%MASTER%%%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/testsuite/CMakeFiles/launchtest.dir
+%%MASTER%%%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%%/testsuite/CMakeFiles/check.dir
+%%MASTER%%%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%%/testsuite/CMakeFiles
+%%MASTER%%%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%%/testsuite
+%%MASTER%%%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%%
More information about the svn-ports-all
mailing list