diff --git a/science/gnudatalanguage/Makefile b/science/gnudatalanguage/Makefile index 988bf0009634..50945f652010 100644 --- a/science/gnudatalanguage/Makefile +++ b/science/gnudatalanguage/Makefile @@ -1,153 +1,153 @@ PORTNAME= gnudatalanguage -PORTVERSION= 1.0.1 +PORTVERSION= 1.0.2 DISTVERSIONPREFIX= v -PORTREVISION= 5 CATEGORIES= science lang .if defined(BUILD_PYTHON_MODULE) PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} .endif MAINTAINER= thierry@FreeBSD.org COMMENT?= Free IDL-compatible incremental compiler WWW= https://github.com/gnudatalanguage/gdl LICENSE= GPLv2 LIB_DEPENDS+= libgeotiff.so:graphics/libgeotiff\ libexpat.so:textproc/expat2 \ libplplot.so:math/plplot \ libtiff.so:graphics/tiff \ libshp.so:devel/shapelib \ libpng.so:graphics/png \ libsz.so:science/libaec \ libps.so:print/pslib \ libgsl.so:math/gsl USE_GITHUB= yes GH_PROJECT= gdl +GH_TAGNAME= 6546898e7f2d23ae1bf67ebe70dc0f38886e5de7 USES= cmake compiler:c++11-lang fortran ncurses pkgconfig readline \ xorg USE_WX= 3.0+ USE_XORG= x11 sm ice xext # Disable ncurses and readline from ports # TODO: create a port for Astron http://idlastro.gsfc.nasa.gov/ftp/astron.tar.gz -# TODO: create a port for TexToIdl http://physics.mnstate.edu/mcraig/textoidl/textoidl-2-1-2.tar CMAKE_ARGS= -DREADLINEDIR:STRING="/usr" \ -DOPENMP:BOOL=ON \ -DNCURSESDIR:STRING="/usr" \ -DPYTHON:BOOL=NO CPPFLAGS+= ${CFLAGS} -fno-inline -DNPY_NO_DEPRECATED_API -DNPY_1_7_API_VERSION CXXFLAGS+= -std=gnu++11 LDFLAGS+= -lpthread -L${LOCALBASE}/lib TEST_TARGET= test SLAVEDIRS= science/py-gnudatalanguage # Upstream prefer GraphicsMagick over ImageMackick # see https://github.com/gnudatalanguage/gdl/issues/611 # and https://github.com/gnudatalanguage/gdl/issues/1044 for ImageMagick 7 -OPTIONS_DEFINE= EIGEN EXAMPLES FFTW GLPK GRAPHICSMAGICK GRIB HDF5 LIBPROJ4 MPI NETCDF PYTHON UDUNITS -OPTIONS_DEFAULT=EIGEN FFTW GLPK GRAPHICSMAGICK GRIB HDF5 LIBPROJ4 NETCDF PYTHON UDUNITS +OPTIONS_DEFINE= EIGEN EXAMPLES FFTW GLPK GRAPHICSMAGICK GRIB HDF5 LIBPROJ4 \ + MPI NETCDF PYTHON QHULL UDUNITS +OPTIONS_DEFAULT=EIGEN FFTW GLPK GRAPHICSMAGICK GRIB HDF5 LIBPROJ4 NETCDF PYTHON \ + QHULL UDUNITS EIGEN_DESC= Eigen3 support (boost performance) EIGEN_USES= eigen:3 EIGEN_CMAKE_ON= -DEIGEN3:BOOL=YES EIGEN_CMAKE_OFF= -DEIGEN3:BOOL=NO FFTW_LIB_DEPENDS= libfftw3.so:math/fftw3 \ libfftw3f.so:math/fftw3-float FFTW_CMAKE_ON= -DFFTW:BOOL=YES FFTW_CMAKE_OFF= -DFFTW:BOOL=NO GLPK_DESC= Support GLPK for Simplex (Linear programming) GLPK_LIB_DEPENDS= libglpk.so:math/glpk GLPK_CMAKE_ON= -DGLPK=ON:BOOL=YES GLPK_CMAKE_OFF= -DGLPK=OFF:BOOL=NO GRAPHICSMAGICK_DESC= Support GraphicsMagick GRAPHICSMAGICK_LIB_DEPENDS= libGraphicsMagick.so:graphics/GraphicsMagick GRAPHICSMAGICK_CMAKE_ON= -DGRAPHICSMAGICK:BOOL=YES GRAPHICSMAGICK_CMAKE_OFF= -DGRAPHICSMAGICK:BOOL=NO # Temporary swith to ImageMagick #IMAGEMAGICK_DESC= Support ImageMagick #IMAGEMAGICK_LIB_DEPENDS=libMagick++-7.so:graphics/ImageMagick7 #IMAGEMAGICK_CMAKE_ON= -DGRAPHICSMAGICK:BOOL=NO -DMAGICK:BOOL=YES -DMAGICKDIR=${LOCALBASE} #IMAGEMAGICK_CMAKE_OFF= -DMAGICK:BOOL=NO GRIB_DESC= Support GRIB messages GRIB_LIB_DEPENDS= libeccodes.so:science/eccodes GRIB_CMAKE_ON= -DGRIB:BOOL=YES GRIB_CMAKE_OFF= -DGRIB:BOOL=NO HDF5_LIB_DEPENDS= libhdf5.so:science/hdf5 HDF5_CMAKE_ON= -DHDF5:BOOL=YES HDF5_CMAKE_OFF= -DHDF5:BOOL=NO -DHDF:BOOL=NO LIBPROJ4_DESC= Support cartographic processes LIBPROJ4_LIB_DEPENDS= libproj.so:graphics/proj LIBPROJ4_CMAKE_ON= -DLIBPROJ:BOOL=YES LIBPROJ4_CMAKE_OFF= -DLIBPROJ:BOOL=NO MPI_LIB_DEPENDS= libmpich.so:net/mpich MPI_CMAKE_ON= -DMPI:BOOL=ON MPI_CMAKE_OFF= -DMPI:BOOL=OFF -DMPIDIR=/none NETCDF_LIB_DEPENDS= libnetcdf.so:science/netcdf NETCDF_CMAKE_ON= -DNETCDF:BOOL=YES -DHDF:BOOL=NO NETCDF_CMAKE_OFF= -DNETCDF:BOOL=NO PYTHON_USES= python:3.7+ PYTHON_BUILD_DEPENDS= ${PYNUMPY} PYTHON_RUN_DEPENDS= ${PYNUMPY} \ ${PYTHON_PKGNAMEPREFIX}matplotlib>0:math/py-matplotlib@${PY_FLAVOR} PYTHON_CMAKE_ON= -DPYTHON:BOOL=YES -DPYTHONVERSION:STRING="${PYTHON_VER}" PYTHON_CMAKE_OFF= -DPYTHON:BOOL=NO -# QHULL IS NOT NEEDED YET! -#QHULL_DESC= Enable Triangulate and Qhull support -#QHULL_LIB_DEPENDS= libqhull.so:math/qhull -#QHULL_CMAKE_ON= -DQHULL:BOOL=YES -#QHULL_CMAKE_OFF= -DQHULL:BOOL=NO +QHULL_DESC= Enable Triangulate and Qhull support +QHULL_LIB_DEPENDS= libqhull_r.so:math/qhull +QHULL_CMAKE_ON= -DQHULL:BOOL=YES +QHULL_CMAKE_OFF= -DQHULL:BOOL=NO UDUNITS_LIB_DEPENDS= libudunits2.so:science/udunits UDUNITS_CMAKE_ON= -DUDUNITS2:BOOL=YES UDUNITS_CMAKE_OFF= -DUDUNITS2:BOOL=NO .if defined(BUILD_PYTHON_MODULE) CATEGORIES+= python CMAKE_ARGS+= -DPYTHON_MODULE:BOOL=YES PLIST= ${.CURDIR}/pkg-plist.pymod .else CMAKE_ARGS+= -DPYTHON_MODULE:BOOL=NO .endif .if defined(BUILD_PYTHON_MODULE) do-install: ${MKDIR} ${STAGEDIR}${PYTHON_SITELIBDIR} ${INSTALL_DATA} ${INSTALL_WRKSRC}/src/GDL.so ${STAGEDIR}${PYTHON_SITELIBDIR}/ .endif .if !defined(BUILD_PYTHON_MODULE) post-install: ${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/testsuite (cd ${WRKSRC}/testsuite && ${COPYTREE_SHARE} \* ${STAGEDIR}${EXAMPLESDIR}/testsuite/) .endif .if defined(MAINTAINER_MODE) regression-test: install . if defined(BUILD_PYTHON_MODULE) @${ECHO_CMD} 'import GDL' > ${WRKDIR}/testgdl.py @${ECHO_CMD} 'print GDL.function("sin",(1,))' >> ${WRKDIR}/testgdl.py ${PYTHON_CMD} ${WRKDIR}/testgdl.py . else @${ECHO_CMD} ".RUN ${EXAMPLESDIR}/testsuite/test_suite.pro" \ > ${WRKDIR}/testgdl @${ECHO_CMD} "exit" >> ${WRKDIR}/testgdl ${PREFIX}/bin/gdl < ${WRKDIR}/testgdl . endif .endif .include diff --git a/science/gnudatalanguage/distinfo b/science/gnudatalanguage/distinfo index b5225abcf4cb..50c45aaa54dd 100644 --- a/science/gnudatalanguage/distinfo +++ b/science/gnudatalanguage/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1634750665 -SHA256 (gnudatalanguage-gdl-v1.0.1_GH0.tar.gz) = eb055abfc096b4075ff195c2d347fab3343665de71bae374489e17ebca60474a -SIZE (gnudatalanguage-gdl-v1.0.1_GH0.tar.gz) = 32775655 +TIMESTAMP = 1673977705 +SHA256 (gnudatalanguage-gdl-v1.0.2-6546898e7f2d23ae1bf67ebe70dc0f38886e5de7_GH0.tar.gz) = 48968cc919c5eaabf595bb8b3d444014b00a9050285b785d920cc3a6434e41c7 +SIZE (gnudatalanguage-gdl-v1.0.2-6546898e7f2d23ae1bf67ebe70dc0f38886e5de7_GH0.tar.gz) = 33079917 diff --git a/science/gnudatalanguage/files/patch-CMakeModules_FindQHULL.cmake b/science/gnudatalanguage/files/patch-CMakeModules_FindQHULL.cmake deleted file mode 100644 index 8124df9e074a..000000000000 --- a/science/gnudatalanguage/files/patch-CMakeModules_FindQHULL.cmake +++ /dev/null @@ -1,11 +0,0 @@ ---- CMakeModules/FindQHULL.cmake.orig 2017-02-07 21:12:49 UTC -+++ CMakeModules/FindQHULL.cmake -@@ -16,7 +16,7 @@ find_path( - if( QHULL_INCLUDE_DIR ) - find_library( - QHULL_LIBRARY -- NAMES libqhullstatic libqhull qhullstatic qhull -+ NAMES libqhull qhull - PATHS /usr/lib64 /usr/local/lib /usr/lib - ) - if( QHULL_LIBRARY ) diff --git a/science/gnudatalanguage/pkg-plist b/science/gnudatalanguage/pkg-plist index fbda809ce3d3..e798c6b09afc 100644 --- a/science/gnudatalanguage/pkg-plist +++ b/science/gnudatalanguage/pkg-plist @@ -1,684 +1,713 @@ bin/gdl -share/man/man1/gdl.1.gz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/CMakeLists.txt +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/LIST +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/README +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/Saturn.jpg %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/banner_for_testsuite.pro -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/benchmark/basic_benchmarks_by_type.pro +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/benchmark/README.txt %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/benchmark/basic_benchmarks.pro +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/benchmark/basic_benchmarks_by_type.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/benchmark/bench_fft.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/benchmark/bench_matrix_invert.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/benchmark/bench_matrix_multiply.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/benchmark/bench_median.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/benchmark/benchmark_compute_range.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/benchmark/benchmark_file_search.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/benchmark/benchmark_generate_cpuinfo.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/benchmark/benchmark_generate_filename.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/benchmark/benchmark_graphic_style.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/benchmark/benchmark_info_cpu.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/benchmark/benchmark_info_os.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/benchmark/benchmark_info_soft.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/benchmark/benchmark_plot_cartouche.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/benchmark/benchmark_svg.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/benchmark/compare_sort_algos.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/benchmark/plot_all_benchmark.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/benchmark/plot_basic_benchmarks.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/benchmark/print_basic_benchmarks.pro -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/benchmark/README.txt %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/benchmark/run_all_benchmark.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/byte_array.h5 %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/check_if_device_is_ok.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/check_save_restore.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/cmake_install.cmake -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/CMakeLists.txt %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/cw_bgroup_broken.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/decomposed_return_values.sav -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/delvarrnew.pp.pro -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/delvarrnew.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/demo_graphics1.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/demo_graphics2.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/demo_graphics3.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/errors_add.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/errors_cumul.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/errors_reset.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/example.grib %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/file_etc/file_t_copy.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/file_etc/file_t_delete.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/file_etc/file_t_move.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/file_etc/test_file_t_copy.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/file_etc/test_file_t_delete.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/file_etc/test_file_t_move.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/file_search_for_testsuite.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/formats.GDL %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/formats.IDL %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/gdl_idl_fl.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/gdl_version.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/get_image_for_testsuite.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/give_list_numeric.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/hdf5-attr-test.h5 %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/hdf5-data-test.h5 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/hdf5-extend-test.h5 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/hdf5-group-test.h5 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/hdf5-obj-info-test.h5 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/hdf5-struct-test.h5 %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/idl.xdr %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/indgen_sample.sav %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/interactive_tests/test_all_projs.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/interactive_tests/test_axis.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/interactive_tests/test_besel.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/interactive_tests/test_bg.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/interactive_tests/test_bug_2974380.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/interactive_tests/test_bug_3104326.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/interactive_tests/test_bug_3275334.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/interactive_tests/test_colors.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/interactive_tests/test_congrid.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/interactive_tests/test_contour.pro +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/interactive_tests/test_coyote.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/interactive_tests/test_cursor.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/interactive_tests/test_deriv.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/interactive_tests/test_device.pro +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/interactive_tests/test_device_properties.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/interactive_tests/test_dialog_message.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/interactive_tests/test_get_kbrd.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/interactive_tests/test_get_screen_size.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/interactive_tests/test_interpolate_parallel.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/interactive_tests/test_map.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/interactive_tests/test_moment.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/interactive_tests/test_mpfit.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/interactive_tests/test_plot_oo.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/interactive_tests/test_plotting_misc.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/interactive_tests/test_pmulti_basic.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/interactive_tests/test_random.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/interactive_tests/test_read_standard_images.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/interactive_tests/test_rk4.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/interactive_tests/test_surface_basic.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/interactive_tests/test_titles.pro +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/interactive_tests/test_velovect.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/interactive_tests/test_widgets.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/libtest_ce.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/LIST -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/make_test_delvarrnew.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/nc_test.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/ob_xml_to_struct__define.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/obxml.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/python/test-GDL.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/rnewtest.pp.pro -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/rnewtest.pro -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/Saturn.jpg %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/spawn_is_dangerous/image_test.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/spawn_is_dangerous/test_bug_2876161.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/spawn_is_dangerous/test_bug_3104209.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/spawn_is_dangerous/test_bug_3147733.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/spawn_is_dangerous/test_bug_n000720.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/spawn_is_dangerous/test_dicom.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/spawn_is_dangerous/test_file_delete.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/spawn_is_dangerous/test_file_info.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/spawn_is_dangerous/test_point_lun.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/spawn_is_dangerous/test_ps_decomposed.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/spawn_is_dangerous/test_readf.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/spawn_is_dangerous/test_skip_lun.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/spawn_is_dangerous/test_spawn_unit.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/spawn_is_dangerous/test_step.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/spawn_is_dangerous/test_zip.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/string.h5 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test-read_ascii.pro +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test-read_ascii.txt +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test-swap_endian.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_ac_correlate.pro.txt +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_all_basic_functions.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_angles.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_arg_present.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_array_equal.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_array_indices.pro +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_array_indices_star.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_base64.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_binfmt.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bits_per_pix.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_brain.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_1779553.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_2555865.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_2610174.pro -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_2846561.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_2876150.pro -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_2876372.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_2892631.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_2949487.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3033108.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3054361.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3055720.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3057511.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3057520.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3061072.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3081887.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3085858.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3086851.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3091599.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3091610.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3100945.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3104214.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3104349.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3147146.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3147181.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3151760.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3152892.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3152899.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3189072.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3199465.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3285659.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3286031.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3288652.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3290532.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3296360.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3298378.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3300626.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3313522.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3376577.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3394430.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3426399.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3453775.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3488003.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3559291.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3572473.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3595172.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_573.tmp %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_635.dat %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_635.f90 %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_635.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_708.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_709.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_719.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_n000542.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_n000580.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_n000581.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_n000587.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_n000597.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_n000599.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_n000607.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_n000608.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_byte_conversion.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bytscl.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_call_external.pro -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_call_function_extra.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_call_function.pro -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_call_procedure_extra.pro +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_call_function_extra.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_call_procedure.pro +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_call_procedure_extra.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_check_math.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_chisqr_cvf.pro +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_chol.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_cir_3pnt.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_clip.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_colorsetup.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_common.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_constants.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_container.pro +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_convert2.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_convert_coord.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_convol.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_correlate.pro -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_delvarrnew.pp.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_delvarrnew.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_diag_matrix.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_dilate.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_dims_of_arrays.pro +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_dynamic_drivers.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_erfinv.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_erfs.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_erode.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_execute.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_expint.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_extra_keywords.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_factorial.pro +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_fft.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_fft_dim.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_fft_leak.pro -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_fft.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_file_basename.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_file_copy.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_file_dirname.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_file_lines.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_file_link.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_file_mkdir.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_file_move.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_file_test.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_file_which.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_finite.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_fix.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_fixprint.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_float2string.pro -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_formats_random_input.sav %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_formats.pro +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_formats_random_input.sav %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_fx_root.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_fz_roots.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_gammas.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_gaussian_function.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_gc.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_get_lun.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_gh00178.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_gh00716.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_greek_letters.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_grib.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_hash.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_hdf5.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_healpix.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_heap_refcount.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_help.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_hist_2d.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_hist_equal.pro -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_histo.pro -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_idl_validname.pro +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_histogram.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_idl8.pro +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_idl_validname.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_idlneturl.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_image_statistics.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_indgen.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_interpol.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_interpolate.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_invert_matrix.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_ioerror.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_isa.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_ishft.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_jd_op_tut.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_keyword_set_but_null.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_known_bugs.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_l64.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_la_least_squares.pro +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_la_trired.pro +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_legendre.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_levels.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_linfit.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_list.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_ludc_lusol.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_make_array.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_make_dll.c %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_make_dll.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_map2.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_math_function_dim.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_matrix_multiply.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_memory.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_message.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_minmax.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_modulo.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_mpi.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_multiroots.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_n_tags.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_nans_in_sort_and_median.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_nestedloop.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_netcdf.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_norm.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_null.pro +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_numeric_limits.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_obj_destroy.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_obj_hasmethod.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_obj_isa.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_obj_new.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_obj_valid.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_op_elem.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_op_power.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_outofmem.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_parse_url.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_plot_basic.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_plot_benchmark.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_plot_inf_nan.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_plot_info.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_plot_linestyle.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_plot_ranges.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_plot_usersym.pro -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_plotting_ranges.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_pmulti.pro -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_poly_fit.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_poly2d.pro +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_poly_fit.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_polywarp.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_postscript.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_powell.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_product.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_ptr_valid.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_ptrarr.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_python.pro +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_qhull.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_qromb.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_qromo.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_r_correlate.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_read_jpeg.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_readf_with_crlf.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_reads.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_rebin.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_resolve_routine.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_restore.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_rounding.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_routine_dir.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_routine_filepath.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_routine_name.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_routine_names.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_same_name.pro -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_save_restore.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_save.pro +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_save_restore.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_scope_varfetch.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_scope_varname.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_simplex.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_size.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_smooth.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_sort.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_spher_harm.pro -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_spl_init.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_spl.pro +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_spl_init.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_standardize.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_str_functions.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_str_sep.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_stregex.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_strmatch.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_strsplit.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_struct_assign.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_structures.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_suite.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_systime.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_tag_names.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_tic_toc.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_tiff.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_timestamp.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_timestamptovalues.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_total.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_triangulate.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_trisol.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_tv.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_tvlct.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_typename.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_uf77.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_valgrind.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_voigt.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_wait.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_wavelet.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_where.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_window_background.pro -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_wordexp_null_string.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_wordexp.pro +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_wordexp_null_string.pro +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_write_csv.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_xdr.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_xmlsax.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_zeropoly.pro -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test-read_ascii.pro -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test-read_ascii.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test-swap_endian.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/tiff/24bit_color.tif %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/tiff/24bit_color.txt %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/tiff/8bit_gray_geo.tif %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/tiff/8bit_gray_geo.txt %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/tiff/8bit_gray_tiled.tif %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/tiff/8bit_gray_tiled.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/try %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/wrong/test_sem.pro %%DATADIR%%/AUTHORS %%DATADIR%%/README +%%DATADIR%%/drivers/mem.driver_info +%%DATADIR%%/drivers/mem.so +%%DATADIR%%/drivers/ps.driver_info +%%DATADIR%%/drivers/ps.so +%%DATADIR%%/drivers/svg.driver_info +%%DATADIR%%/drivers/svg.so +%%DATADIR%%/drivers/wxwidgets.driver_info +%%DATADIR%%/drivers/wxwidgets.so +%%DATADIR%%/drivers/xwin.driver_info +%%DATADIR%%/drivers/xwin.so +%%DATADIR%%/lib/CMprocedures/mpcurvefit.pro +%%DATADIR%%/lib/CMprocedures/mpfit.pro +%%DATADIR%%/lib/CMprocedures/mpfit2dfun.pro +%%DATADIR%%/lib/CMprocedures/mpfit2dpeak.pro +%%DATADIR%%/lib/CMprocedures/mpfitfun.pro +%%DATADIR%%/lib/CMprocedures/mpfitpeak.pro %%DATADIR%%/lib/a_correlate.pro %%DATADIR%%/lib/appleman.pro %%DATADIR%%/lib/array_indices.pro %%DATADIR%%/lib/bilinear.pro +%%DATADIR%%/lib/box_cursor.pro %%DATADIR%%/lib/c_correlate.pro %%DATADIR%%/lib/calendar.pro %%DATADIR%%/lib/chisqr_cvf.pro %%DATADIR%%/lib/cir_3pnt.pro -%%DATADIR%%/lib/CMprocedures/mpcurvefit.pro -%%DATADIR%%/lib/CMprocedures/mpfit.pro -%%DATADIR%%/lib/CMprocedures/mpfit2dpeak.pro -%%DATADIR%%/lib/CMprocedures/mpfitfun.pro -%%DATADIR%%/lib/CMprocedures/mpfitpeak.pro +%%DATADIR%%/lib/cmyk_convert.pro +%%DATADIR%%/lib/color_convert.pro %%DATADIR%%/lib/color_quan.pro %%DATADIR%%/lib/congrid.pro %%DATADIR%%/lib/correlate.pro %%DATADIR%%/lib/curvefit.pro %%DATADIR%%/lib/cvttobm.pro -%%DATADIR%%/lib/cw_bgroup_donotuseyet.pro %%DATADIR%%/lib/cw_bgroup.pro -%%DATADIR%%/lib/define_msgblk_from_file.pro +%%DATADIR%%/lib/cw_bgroup_donotuseyet.pro %%DATADIR%%/lib/define_msgblk.pro +%%DATADIR%%/lib/define_msgblk_from_file.pro %%DATADIR%%/lib/delvar.pro %%DATADIR%%/lib/deriv.pro %%DATADIR%%/lib/diag_matrix.pro %%DATADIR%%/lib/dicom/gdlffdicom__assoc__define.pro %%DATADIR%%/lib/dicom/gdlffdicom__assoc__test.pro %%DATADIR%%/lib/dicom/gdlffdicom__assoc_generateuid.pro %%DATADIR%%/lib/dicom/gdlffdicom__define.pro %%DATADIR%%/lib/dicom/gdlffdicom__dictionary.pro %%DATADIR%%/lib/dicom/gdlffdicom__test.pro %%DATADIR%%/lib/dicom/gdlffdicom_copy_lun.pro %%DATADIR%%/lib/dicom/gdlffdicom_date.pro %%DATADIR%%/lib/dicom/gdlffdicom_time.pro %%DATADIR%%/lib/dicom/gdlffdicom_trim.pro %%DATADIR%%/lib/dilate.pro %%DATADIR%%/lib/dist.pro %%DATADIR%%/lib/doc_library.pro %%DATADIR%%/lib/envi/read_envi_file.pro %%DATADIR%%/lib/envi/test_write_read_envi.pro %%DATADIR%%/lib/envi/write_envi_file.pro %%DATADIR%%/lib/erode.pro %%DATADIR%%/lib/errplot.pro %%DATADIR%%/lib/escape_special_char.pro %%DATADIR%%/lib/factorial.pro %%DATADIR%%/lib/file_chmod.pro %%DATADIR%%/lib/file_which.pro %%DATADIR%%/lib/filepath.pro %%DATADIR%%/lib/findex.pro %%DATADIR%%/lib/gauss2dfit.pro %%DATADIR%%/lib/gaussfit.pro %%DATADIR%%/lib/gaussian_function.pro %%DATADIR%%/lib/gdl_multimin_fdf.pro %%DATADIR%%/lib/get_login_info.pro %%DATADIR%%/lib/hanning.pro %%DATADIR%%/lib/heap_nosave.pro %%DATADIR%%/lib/heap_save.pro %%DATADIR%%/lib/helpform.pro %%DATADIR%%/lib/hist_2d.pro %%DATADIR%%/lib/hist_equal.pro %%DATADIR%%/lib/hist_nd.pro %%DATADIR%%/lib/identity.pro -%%DATADIR%%/lib/idl_container__define.pro %%DATADIR%%/lib/idl_container.pro +%%DATADIR%%/lib/idl_container__define.pro %%DATADIR%%/lib/idl_object.pro %%DATADIR%%/lib/idl_validname.pro %%DATADIR%%/lib/image_statistics.pro %%DATADIR%%/lib/imsl_erf.pro %%DATADIR%%/lib/imsl_zerosys.pro %%DATADIR%%/lib/json_serialize.pro %%DATADIR%%/lib/kurtosis.pro %%DATADIR%%/lib/la_invert.pro %%DATADIR%%/lib/label_date.pro %%DATADIR%%/lib/last_item.pro %%DATADIR%%/lib/linfit.pro %%DATADIR%%/lib/lmgr.pro %%DATADIR%%/lib/loadct.pro %%DATADIR%%/lib/make_dll.pro %%DATADIR%%/lib/map/gdl_map_proj_init_common.pro %%DATADIR%%/lib/map/gdl_set_map_limits.pro %%DATADIR%%/lib/map/gdlcommon_mapprojections_common.pro %%DATADIR%%/lib/map/gdldrawshapecompound.pro %%DATADIR%%/lib/map/gdldrawshapefile.pro %%DATADIR%%/lib/map/map_adjlon.pro %%DATADIR%%/lib/map/map_clip_set.pro %%DATADIR%%/lib/map/map_continents.pro %%DATADIR%%/lib/map/map_grid.pro %%DATADIR%%/lib/map/map_horizon.pro %%DATADIR%%/lib/map/map_image.pro %%DATADIR%%/lib/map/map_proj_info.pro %%DATADIR%%/lib/map/map_proj_init.pro %%DATADIR%%/lib/map/map_set.pro %%DATADIR%%/lib/map/map_struct_append.pro %%DATADIR%%/lib/map/merge_structs_mapset.pro %%DATADIR%%/lib/matrix_multiply.pro %%DATADIR%%/lib/meanabsdev.pro %%DATADIR%%/lib/norm.pro %%DATADIR%%/lib/obsolete/errorf.pro %%DATADIR%%/lib/obsolete/file_copy.pro %%DATADIR%%/lib/obsolete/file_expand_path.pro %%DATADIR%%/lib/obsolete/file_lines.pro %%DATADIR%%/lib/obsolete/file_link.pro %%DATADIR%%/lib/obsolete/file_move.pro %%DATADIR%%/lib/obsolete/gethelp.pro %%DATADIR%%/lib/obsolete/handle_create.pro %%DATADIR%%/lib/obsolete/handle_free.pro %%DATADIR%%/lib/obsolete/handle_info.pro %%DATADIR%%/lib/obsolete/handle_value.pro %%DATADIR%%/lib/obsolete/lubksb.pro %%DATADIR%%/lib/obsolete/ludcmp.pro %%DATADIR%%/lib/obsolete/mprove.pro %%DATADIR%%/lib/obsolete/nr_beta.pro %%DATADIR%%/lib/obsolete/nr_broyden.pro %%DATADIR%%/lib/obsolete/nr_choldc.pro %%DATADIR%%/lib/obsolete/nr_cholsl.pro %%DATADIR%%/lib/obsolete/nr_dfpmin.pro %%DATADIR%%/lib/obsolete/nr_expint.pro %%DATADIR%%/lib/obsolete/nr_fulstr.pro %%DATADIR%%/lib/obsolete/nr_helmes.pro %%DATADIR%%/lib/obsolete/nr_hqr.pro %%DATADIR%%/lib/obsolete/nr_invert.pro %%DATADIR%%/lib/obsolete/nr_linbcg.pro %%DATADIR%%/lib/obsolete/nr_lubksb.pro %%DATADIR%%/lib/obsolete/nr_ludcmp.pro %%DATADIR%%/lib/obsolete/nr_machar.pro %%DATADIR%%/lib/obsolete/nr_mprove.pro %%DATADIR%%/lib/obsolete/nr_newt.pro %%DATADIR%%/lib/obsolete/nr_powell.pro %%DATADIR%%/lib/obsolete/nr_qromb.pro %%DATADIR%%/lib/obsolete/nr_qromo.pro %%DATADIR%%/lib/obsolete/nr_qsimp.pro %%DATADIR%%/lib/obsolete/nr_rk4.pro %%DATADIR%%/lib/obsolete/nr_spline.pro %%DATADIR%%/lib/obsolete/nr_splint.pro %%DATADIR%%/lib/obsolete/nr_sprsab.pro %%DATADIR%%/lib/obsolete/nr_sprsax.pro %%DATADIR%%/lib/obsolete/nr_sprsin.pro %%DATADIR%%/lib/obsolete/nr_svbksb.pro %%DATADIR%%/lib/obsolete/nr_svd.pro %%DATADIR%%/lib/obsolete/nr_tqli.pro %%DATADIR%%/lib/obsolete/nr_tred2.pro %%DATADIR%%/lib/obsolete/nr_tridag.pro %%DATADIR%%/lib/obsolete/nr_wtn.pro %%DATADIR%%/lib/obsolete/nr_zroots.pro %%DATADIR%%/lib/obsolete/online_help_pdf_index.pro %%DATADIR%%/lib/obsolete/pickfile.pro %%DATADIR%%/lib/obsolete/polyfitw.pro %%DATADIR%%/lib/obsolete/rstrpos.pro %%DATADIR%%/lib/obsolete/setup_keys.pro %%DATADIR%%/lib/obsolete/str_sep.pro %%DATADIR%%/lib/obsolete/svbksb.pro %%DATADIR%%/lib/obsolete/svd.pro %%DATADIR%%/lib/obsolete/tiff_read.pro %%DATADIR%%/lib/obsolete/tiff_write.pro %%DATADIR%%/lib/obsolete/tqli.pro %%DATADIR%%/lib/obsolete/tred2.pro %%DATADIR%%/lib/obsolete/tridag.pro %%DATADIR%%/lib/obsolete/tvdelete.pro %%DATADIR%%/lib/obsolete/tvset.pro %%DATADIR%%/lib/obsolete/tvshow.pro %%DATADIR%%/lib/obsolete/tvwindow.pro %%DATADIR%%/lib/obsolete/widget_message.pro %%DATADIR%%/lib/obsolete/zroots.pro %%DATADIR%%/lib/online_help.pro %%DATADIR%%/lib/oploterr.pro %%DATADIR%%/lib/ploterr.pro +%%DATADIR%%/lib/poly.pro %%DATADIR%%/lib/poly_area.pro %%DATADIR%%/lib/poly_fit.pro -%%DATADIR%%/lib/poly.pro %%DATADIR%%/lib/polyfillv.pro %%DATADIR%%/lib/polywarp.pro %%DATADIR%%/lib/popd.pro %%DATADIR%%/lib/primes.pro %%DATADIR%%/lib/printd.pro %%DATADIR%%/lib/pushd.pro %%DATADIR%%/lib/py_plot.pro %%DATADIR%%/lib/py_print.pro %%DATADIR%%/lib/query_bmp.pro %%DATADIR%%/lib/query_dicom.pro %%DATADIR%%/lib/query_gif.pro %%DATADIR%%/lib/query_image.pro %%DATADIR%%/lib/query_jpeg.pro %%DATADIR%%/lib/query_pict.pro %%DATADIR%%/lib/query_png.pro %%DATADIR%%/lib/query_ppm.pro %%DATADIR%%/lib/query_srf.pro %%DATADIR%%/lib/query_tiff.pro %%DATADIR%%/lib/r_correlate.pro %%DATADIR%%/lib/read_ascii.pro %%DATADIR%%/lib/read_binary.pro %%DATADIR%%/lib/read_bmp.pro %%DATADIR%%/lib/read_csv.pro %%DATADIR%%/lib/read_dicom.pro %%DATADIR%%/lib/read_gif.pro %%DATADIR%%/lib/read_image.pro %%DATADIR%%/lib/read_jpeg.pro %%DATADIR%%/lib/read_jpeg2000.pro %%DATADIR%%/lib/read_pict.pro %%DATADIR%%/lib/read_png.pro %%DATADIR%%/lib/read_ppm.pro %%DATADIR%%/lib/read_tiff.pro %%DATADIR%%/lib/read_x11_bitmap.pro %%DATADIR%%/lib/read_xwd.pro %%DATADIR%%/lib/resolve_all.pro %%DATADIR%%/lib/rot.pro +%%DATADIR%%/lib/scale3d.pro %%DATADIR%%/lib/showfont.pro %%DATADIR%%/lib/sigma.pro %%DATADIR%%/lib/skewness.pro %%DATADIR%%/lib/spline.pro %%DATADIR%%/lib/standardize.pro %%DATADIR%%/lib/stddev.pro %%DATADIR%%/lib/stdev.pro %%DATADIR%%/lib/strmatch.pro %%DATADIR%%/lib/strsplit.pro +%%DATADIR%%/lib/surfr.pro %%DATADIR%%/lib/svsol.pro -%%DATADIR%%/lib/swap_endian_inplace.pro %%DATADIR%%/lib/swap_endian.pro -%%DATADIR%%/lib/template_blank.pro +%%DATADIR%%/lib/swap_endian_inplace.pro %%DATADIR%%/lib/template.pro +%%DATADIR%%/lib/template_blank.pro %%DATADIR%%/lib/tic.pro %%DATADIR%%/lib/toc.pro %%DATADIR%%/lib/trace.pro %%DATADIR%%/lib/tvscl.pro %%DATADIR%%/lib/uniq.pro %%DATADIR%%/lib/utilities/color2color.pro %%DATADIR%%/lib/utilities/gdl_implied_print.pro +%%DATADIR%%/lib/utilities/gdl_reset_widgets.pro %%DATADIR%%/lib/utilities/gdl_status.pro %%DATADIR%%/lib/utilities/grab_on_internet.pro %%DATADIR%%/lib/utilities/idlneturl__define.pro %%DATADIR%%/lib/utilities/idlsysmonitorinfo__define.pro %%DATADIR%%/lib/utilities/md5sum_check.pro %%DATADIR%%/lib/utilities/path_add.pro %%DATADIR%%/lib/utilities/path_remove.pro %%DATADIR%%/lib/utilities/path_sep_add.pro %%DATADIR%%/lib/utilities/path_show.pro %%DATADIR%%/lib/utilities/read_anygraphicsfilewithmagick.pro %%DATADIR%%/lib/utilities/read_ascii_basic.pro %%DATADIR%%/lib/utilities/routine_name.pro %%DATADIR%%/lib/utilities/wget_or_curl.pro %%DATADIR%%/lib/value_locate.pro %%DATADIR%%/lib/variance.pro +%%DATADIR%%/lib/velovect.pro %%DATADIR%%/lib/widget_message.pro +%%DATADIR%%/lib/widget_tree_move.pro %%DATADIR%%/lib/wmenu.pro %%DATADIR%%/lib/write_bmp.pro %%DATADIR%%/lib/write_csv.pro %%DATADIR%%/lib/write_gif.pro %%DATADIR%%/lib/write_image.pro %%DATADIR%%/lib/write_jpeg.pro %%DATADIR%%/lib/write_pict.pro %%DATADIR%%/lib/write_png.pro %%DATADIR%%/lib/write_ppm.pro %%DATADIR%%/lib/write_tiff.pro %%DATADIR%%/lib/xdisplayfile.pro %%DATADIR%%/lib/xmanager.pro %%DATADIR%%/lib/xregistered.pro +%%DATADIR%%/resource/gdl.icns %%DATADIR%%/resource/gdl.ico %%DATADIR%%/resource/gdl.png +%%DATADIR%%/resource/gdlicon.xpm %%DATADIR%%/resource/maps/COPYRIGHTS +%%DATADIR%%/resource/maps/README %%DATADIR%%/resource/maps/earth.jpg %%DATADIR%%/resource/maps/high/continents_med.dbf %%DATADIR%%/resource/maps/high/continents_med.shp %%DATADIR%%/resource/maps/high/continents_med.shx %%DATADIR%%/resource/maps/high/ne_10m_admin_0_boundary_lines_land.dbf %%DATADIR%%/resource/maps/high/ne_10m_admin_0_boundary_lines_land.shp %%DATADIR%%/resource/maps/high/ne_10m_admin_0_boundary_lines_land.shx -%%DATADIR%%/resource/maps/high/ne_10m_admin_1_states_provinces_lines.dbf -%%DATADIR%%/resource/maps/high/ne_10m_admin_1_states_provinces_lines.shp -%%DATADIR%%/resource/maps/high/ne_10m_admin_1_states_provinces_lines.shx %%DATADIR%%/resource/maps/high/ne_10m_admin_1_states_provinces.dbf %%DATADIR%%/resource/maps/high/ne_10m_admin_1_states_provinces.shp %%DATADIR%%/resource/maps/high/ne_10m_admin_1_states_provinces.shx +%%DATADIR%%/resource/maps/high/ne_10m_admin_1_states_provinces_lines.dbf +%%DATADIR%%/resource/maps/high/ne_10m_admin_1_states_provinces_lines.shp +%%DATADIR%%/resource/maps/high/ne_10m_admin_1_states_provinces_lines.shx %%DATADIR%%/resource/maps/high/ne_10m_lakes.dbf %%DATADIR%%/resource/maps/high/ne_10m_lakes.shp %%DATADIR%%/resource/maps/high/ne_10m_lakes.shx %%DATADIR%%/resource/maps/high/ne_10m_rivers_lake_centerlines.dbf %%DATADIR%%/resource/maps/high/ne_10m_rivers_lake_centerlines.shp %%DATADIR%%/resource/maps/high/ne_10m_rivers_lake_centerlines.shx %%DATADIR%%/resource/maps/low/continents.dbf %%DATADIR%%/resource/maps/low/continents.shp %%DATADIR%%/resource/maps/low/continents.shx %%DATADIR%%/resource/maps/low/ne_110m_admin_0_boundary_lines_land.dbf %%DATADIR%%/resource/maps/low/ne_110m_admin_0_boundary_lines_land.shp %%DATADIR%%/resource/maps/low/ne_110m_admin_0_boundary_lines_land.shx -%%DATADIR%%/resource/maps/low/ne_110m_admin_1_states_provinces_lines.dbf -%%DATADIR%%/resource/maps/low/ne_110m_admin_1_states_provinces_lines.shp -%%DATADIR%%/resource/maps/low/ne_110m_admin_1_states_provinces_lines.shx %%DATADIR%%/resource/maps/low/ne_110m_admin_1_states_provinces.dbf %%DATADIR%%/resource/maps/low/ne_110m_admin_1_states_provinces.shp %%DATADIR%%/resource/maps/low/ne_110m_admin_1_states_provinces.shx +%%DATADIR%%/resource/maps/low/ne_110m_admin_1_states_provinces_lines.dbf +%%DATADIR%%/resource/maps/low/ne_110m_admin_1_states_provinces_lines.shp +%%DATADIR%%/resource/maps/low/ne_110m_admin_1_states_provinces_lines.shx %%DATADIR%%/resource/maps/low/ne_110m_lakes.dbf %%DATADIR%%/resource/maps/low/ne_110m_lakes.shp %%DATADIR%%/resource/maps/low/ne_110m_lakes.shx %%DATADIR%%/resource/maps/low/ne_50m_rivers_lake_centerlines.dbf %%DATADIR%%/resource/maps/low/ne_50m_rivers_lake_centerlines.shp %%DATADIR%%/resource/maps/low/ne_50m_rivers_lake_centerlines.shx %%DATADIR%%/resource/maps/projDefinitions.sav %%DATADIR%%/resource/maps/projections.ods -%%DATADIR%%/resource/maps/README +%%DATADIR%%/resource/randomgenerators_parallel.cpp +share/man/man1/gdl.1.gz