*/*: sync with upstream

Taken from: HardenedBSD
This commit is contained in:
Franco Fichtner 2019-03-10 02:34:41 +01:00
parent 8a68eaa354
commit 12fd0f38b8
174 changed files with 2591 additions and 2810 deletions

View file

@ -2,7 +2,7 @@
PORTNAME= ark
DISTVERSION= ${KDE_APPLICATIONS_VERSION}
PORTREVISION= 1
PORTREVISION= 3
CATEGORIES= archivers kde kde-applications
MAINTAINER= kde@FreeBSD.org
@ -23,13 +23,17 @@ USE_QT= concurrent core dbus gui network widgets xml \
USE_LDCONFIG= yes
OPTIONS_DEFINE= 7ZIP RAR ZIP DOCS
OPTIONS_DEFAULT= ${OPTIONS_DEFINE}
OPTIONS_DEFAULT= 7ZIP ZIP DOCS
OPTIONS_DEFAULT_i386= RAR
OPTIONS_DEFAULT_amd64= RAR
OPTIONS_SUB= YES
7ZIP_DESC= Support for 7-Zip archives
# The 7ZIP and RAR options only need runtime dependencies;
# the port builds identically with or without them.
7ZIP_DESC= Support for 7-Zip archives (runtime)
7ZIP_RUN_DEPENDS= 7z:archivers/p7zip
RAR_DESC= Support for RAR archives
RAR_DESC= Support for RAR archives (runtime)
RAR_RUN_DEPENDS= unrar:archivers/unrar \
rar:archivers/rar

View file

@ -0,0 +1,26 @@
commit a3bcf9becddd5725725089add15fbae39c79757e
Author: Elvis Angelaccio <elvis.angelaccio@kde.org>
Date: Sat Mar 9 13:05:35 2019 +0100
Fix creation of tar archives
Usage of QString::compare() breaks the creation of tar archives, because
`zst` is "bigger" than `tar` which means ark would use the `zstd` filter
even when creating a simple tar archive.
BUG: 405136
FIXED-IN: 19.03.80
diff --git a/plugins/libarchive/readwritelibarchiveplugin.cpp b/plugins/libarchive/readwritelibarchiveplugin.cpp
index 38f62881..e83d0087 100644
--- plugins/libarchive/readwritelibarchiveplugin.cpp
+++ plugins/libarchive/readwritelibarchiveplugin.cpp
@@ -352,7 +352,7 @@ bool ReadWriteLibarchivePlugin::initializeNewFileWriterFilters(const Compression
qCDebug(ARK) << "Detected lz4 compression for new file";
ret = archive_write_add_filter_lz4(m_archiveWriter.data());
#ifdef HAVE_ZSTD_SUPPORT
- } else if (filename().rightRef(3).compare(QLatin1String("zst"), Qt::CaseInsensitive)) {
+ } else if (filename().right(3).toUpper() == QLatin1String("ZST")) {
qCDebug(ARK) << "Detected zstd compression for new file";
ret = archive_write_add_filter_zstd(m_archiveWriter.data());
#endif

View file

@ -4,8 +4,7 @@ environment.
Archives can be viewed, extracted, created and modified from within
Ark. The program can handle various formats such as tar, gzip, bzip2,
zip, rar and lha (if appropriate command-line programs are
installed). Ark can work closely with Konqueror in the KDE
environment to handle archives, if you install the Konqueror
Integration plugin available in the kdeaddons package.
installed). Ark can work closely with Konqueror and Dolphin in
a KDE Plasma environment to handle archives.
WWW: https://utils.kde.org/
WWW: https://utils.kde.org/projects/ark/

View file

@ -0,0 +1,4 @@
Support for 7zip and rar archives requires the appropriate executables.
If ark has been packaged without options 7ZIP or RAR, you can install
archivers/p7zip (for 7ZIP) or archivers/unrar and archivers/rar (for RAR)
to allow ark to handle those archives.

View file

@ -2,9 +2,8 @@
# $FreeBSD$
PORTNAME= audacity
PORTVERSION= 2.3.0
PORTVERSION= 2.3.1
DISTVERSIONPREFIX= Audacity-
PORTREVISION= 5
CATEGORIES= audio
MAINTAINER= xxjack12xx@gmail.com
@ -25,7 +24,9 @@ LIB_DEPENDS= libasound.so:audio/alsa-lib \
libsoxr.so:audio/libsoxr \
libsndfile.so:audio/libsndfile
USES= autoreconf compiler:c++11-lib cpe desktop-file-utils gettext-tools gmake iconv libtool pkgconfig shared-mime-info shebangfix dos2unix localbase
USES= autoreconf compiler:c++11-lib cpe desktop-file-utils dos2unix \
gettext-tools gmake gnome iconv libtool localbase pkgconfig \
shared-mime-info shebangfix
GNU_CONFIGURE= yes
NLS_USES= gettext-runtime
NLS_CONFIGURE_ENABLE= nls
@ -39,8 +40,9 @@ DOS2UNIX_GLOB= Makefile.* *.c* *.h
SHEBANG_FILES= lib-src/lv2/build
USE_GITHUB= yes
OPTIONS_DEFINE= NLS DEBUG DOCS DYNLOAD FFMPEG FLAC ID3TAG LADSPA LAME LV2 \
MAD MOD_SCRIPT_PIPE MOD_NYQ_BENCH SBSMS SOUNDTOUCH TWOLAME VAMP VORBIS VST
OPTIONS_DEFINE= DEBUG DOCS DYNLOAD FFMPEG FLAC ID3TAG LADSPA LAME LV2 MAD \
MOD_NYQ_BENCH MOD_SCRIPT_PIPE NLS SBSMS SOUNDTOUCH STATIC_WX \
TWOLAME VAMP VORBIS VST
OPTIONS_DEFAULT= FLAC ID3TAG LADSPA MAD \
SBSMS SOUNDTOUCH TWOLAME VAMP VORBIS VST
@ -57,6 +59,7 @@ MOD_SCRIPT_PIPE_DESC= mod-script-pipe scripting support
MOD_NYQ_BENCH_DESC= Enable Nyquist Workbench
SBSMS_DESC= Use libsbsms for pitch and tempo changing
SOUNDTOUCH_DESC= Use libSoundTouch for pitch and tempo changing
STATIC_WX_DESC= Link wx statically
TAGLIB_DESC= Use TagLib for metadata support
TWOLAME_DESC= Use libtwolame for MP2 export support
VAMP_DESC= Vamp plug-in support
@ -128,6 +131,8 @@ SOUNDTOUCH_LIB_DEPENDS= libSoundTouch.so:audio/soundtouch
SSE_CONFIGURE_ENABLE= sse
STATIC_WX_ENABLE= static-wx
TWOLAME_CONFIGURE_WITH= libtwolame=system
TWOLAME_LIB_DEPENDS= libtwolame.so:audio/twolame

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1538360236
SHA256 (audacity-audacity-Audacity-2.3.0_GH0.tar.gz) = 37127f68dceeb5da08d008ec9373a65e2d5d0a9b937c808a5d7c3b88aa9e275e
SIZE (audacity-audacity-Audacity-2.3.0_GH0.tar.gz) = 27479664
TIMESTAMP = 1552123965
SHA256 (audacity-audacity-Audacity-2.3.1_GH0.tar.gz) = 2ef1c06f9cdc2ee3d315b8e575dc2bea5b372f4f415f3dc6570c3cfca0f93321
SIZE (audacity-audacity-Audacity-2.3.1_GH0.tar.gz) = 27618480

View file

@ -1,6 +1,21 @@
--- configure.ac.orig 2018-09-20 14:35:07 UTC
--- configure.ac.orig 2019-02-24 08:28:05 UTC
+++ configure.ac
@@ -235,20 +235,7 @@ dnl check if alloca.h exists. If it does, we need to i
@@ -204,14 +204,6 @@ if test x$enable_universal_binary = xyes; then
esac
fi
-dnl Check if $CXX is clang by evaluating the version string because
-dnl $ax_cv_cxx_compiler_vendor seems not to work (it is either "gnu" or just empty).
-dnl If $CXX is clang (string is found), grep returns 0 and the if is executed.
-dnl Use /dev/null to suppress grep output to shell.
-if ($CXX --version | grep 'clang version' > /dev/null); then
- LDFLAGS="${LDFLAGS} -latomic"
-fi
-
if test x$enable_sse = xyes; then
if test "${ax_cv_cxx_compiler_vendor}" = "gnu"; then
@@ -243,20 +235,7 @@ dnl check if alloca.h exists. If it does, we need to i
dnl Solaris builds, by defining HAVE_ALLOCA_H
AC_CHECK_HEADERS_ONCE(alloca.h)

View file

@ -1,14 +1,6 @@
--- src/MemoryX.h.orig 2018-10-01 14:07:33 UTC
--- src/MemoryX.h.orig 2019-03-09 11:55:09 UTC
+++ src/MemoryX.h
@@ -1,6 +1,7 @@
#ifndef __AUDACITY_MEMORY_X_H__
#define __AUDACITY_MEMORY_X_H__
+#include <stdlib.h>
// C++ standard header <memory> with a few extensions
#include <memory>
#include <cstdlib> // Needed for free.
@@ -706,7 +707,7 @@ make_value_transform_iterator(const Iterator &iterator
@@ -628,7 +628,7 @@ make_iterator_range( const Container &container )
// For using std::unordered_map on wxString
namespace std
{

View file

@ -3,14 +3,15 @@ man/man1/audacity.1.gz
share/appdata/audacity.appdata.xml
share/applications/audacity.desktop
%%DATADIR%%/EQDefaultCurves.xml
%%DATADIR%%/include/audacity/ComponentInterface.h
%%DATADIR%%/include/audacity/ConfigInterface.h
%%DATADIR%%/include/audacity/EffectAutomationParameters.h
%%DATADIR%%/include/audacity/EffectInterface.h
%%DATADIR%%/include/audacity/IdentInterface.h
%%DATADIR%%/include/audacity/ImporterInterface.h
%%DATADIR%%/include/audacity/ModuleInterface.h
%%DATADIR%%/include/audacity/PluginInterface.h
%%DATADIR%%/include/audacity/Types.h
%%DATADIR%%/nyquist/aud-do-support.lsp
%%DATADIR%%/nyquist/dspprims.lsp
%%DATADIR%%/nyquist/envelopes.lsp
%%DATADIR%%/nyquist/equalizer.lsp
@ -73,6 +74,7 @@ share/applications/audacity.desktop
%%DATADIR%%/plug-ins/pluck.ny
%%DATADIR%%/plug-ins/rhythmtrack.ny
%%DATADIR%%/plug-ins/rissetdrum.ny
%%DATADIR%%/plug-ins/rms.ny
%%DATADIR%%/plug-ins/sample-data-export.ny
%%DATADIR%%/plug-ins/sample-data-import.ny
%%DATADIR%%/plug-ins/tremolo.ny

View file

@ -2,7 +2,7 @@
PORTNAME= avldrums
DISTVERSIONPREFIX= v
DISTVERSION= 0.3.3
DISTVERSION= 0.3.4
CATEGORIES= audio
PKGNAMESUFFIX= -lv2
@ -18,7 +18,7 @@ USES= gl gmake gnome pkgconfig
USE_GITHUB= yes
GH_ACCOUNT= x42
GH_PROJECT= ${PORTNAME}.lv2
GH_TUPLE= x42:robtk:9b82274:robtk/robtk
GH_TUPLE= x42:robtk:bad6354:robtk/robtk
USE_GL= gl glu
USE_GNOME= glib20 pango cairo
USE_XORG= x11

View file

@ -1,5 +1,5 @@
TIMESTAMP = 1548474821
SHA256 (x42-avldrums.lv2-v0.3.3_GH0.tar.gz) = 8f78a3303d14fb3eff8f11288ca05bc55f4f82a4fab26245cc714ce1026ec5d6
SIZE (x42-avldrums.lv2-v0.3.3_GH0.tar.gz) = 35233738
SHA256 (x42-robtk-9b82274_GH0.tar.gz) = a1be15f2507295e98e35b5dec4c07f39df1a4b5fb651cd2f9e038472dc9aa7e7
SIZE (x42-robtk-9b82274_GH0.tar.gz) = 114473
TIMESTAMP = 1552168304
SHA256 (x42-avldrums.lv2-v0.3.4_GH0.tar.gz) = fd0a21e2f6d638b396a8795e26c7663a33c4b0ed41040eac50fc3ee9ac5f2843
SIZE (x42-avldrums.lv2-v0.3.4_GH0.tar.gz) = 35236003
SHA256 (x42-robtk-bad6354_GH0.tar.gz) = 00324fa0a8c498cec4e2d8930599ea471ad69193a3251c6fc8e844ad4f490de1
SIZE (x42-robtk-bad6354_GH0.tar.gz) = 114562

View file

@ -17,7 +17,7 @@ USES= localbase:ldflags sdl
USE_SDL= sdl2
SVN_URL= https://svn.code.sf.net/p/protracker/code/trunk
SVN_REV= 162
SVN_REV= 165
LDFLAGS+= -lSDL2 -lm

View file

@ -1,5 +1,5 @@
TIMESTAMP = 1550218030
SHA256 (protracker-2.3d.r162.tar.gz) = 851a5f128ff789baa0d7a46632886008f66a4c81e9a71d9fca3514cf7a358455
SIZE (protracker-2.3d.r162.tar.gz) = 6438817
TIMESTAMP = 1552151423
SHA256 (protracker-2.3d.r165.tar.gz) = dcaf9781da91640f38ec9c5ff3d7b7c001c05402cc7441fb831195a852e507da
SIZE (protracker-2.3d.r165.tar.gz) = 6443900
SHA256 (protracker-extras-1.tar.gz) = 51a078f344611f6a41e44bab9a8640f363224c41a8a5432f55aeba3bb49fbdbf
SIZE (protracker-extras-1.tar.gz) = 1267

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-benchmark
PORTVERSION= 1.1.1
PORTREVISION= 22
PORTREVISION= 23
CATEGORIES= benchmarks math
MAINTAINER= stephen@FreeBSD.org

View file

@ -2,52 +2,46 @@
# $FreeBSD$
PORTNAME= openscad
PORTVERSION= 2015.03
PORTREVISION= 25
PORTVERSION= 2019.03.03
#PORTREVISION= 1
CATEGORIES= cad
MASTER_SITES= http://files.openscad.org/
DISTNAME= openscad-${PORTVERSION}.src
MAINTAINER= mr@FreeBSD.org
COMMENT= Programmer's solid 3D CAD modeller
COMMENT= Programmer's solid 3D CAD modeller #'
LICENSE= GPLv2+
LICENSE_FILE= ${WRKSRC}/COPYING
DEPRECATED= Qt4 has been EOL since december 2015
EXPIRATION_DATE= 2019-03-15
BUILD_DEPENDS= ${LOCALBASE}/bin/flex:textproc/flex \
${LOCALBASE}/include/boost/tuple/tuple.hpp:devel/boost-libs
LIB_DEPENDS= libgmp.so:math/gmp \
libmpfr.so:math/mpfr \
LIB_DEPENDS= libzip.so:archivers/libzip \
libhidapi.so:comms/hidapi \
libboost_regex.so:devel/boost-libs \
libqscintilla2_qt5.so:devel/qscintilla2-qt5 \
libopencsg.so:graphics/opencsg \
libCGAL.so:math/cgal \
libqscintilla2_qt4.so:devel/qscintilla2 \
libgmp.so:math/gmp \
libmpfr.so:math/mpfr \
libfreetype.so:print/freetype2 \
libharfbuzz.so:print/harfbuzz \
libopencsg.so:graphics/opencsg
libfontconfig.so:x11-fonts/fontconfig \
libdouble-conversion.so:devel/double-conversion
CONFLICTS= openscad-devel
CONFLICTS= openscad
USES= bison compiler:c++11-lang desktop-file-utils eigen:3 gettext-tools \
pkgconfig python:run qmake qt:4 shebangfix
SHEBANG_FILES= libraries/MCAD/get_submodules.py
USE_GL= glu glew
USE_QT= corelib gui opengl moc_build uic_build rcc_build
PLIST_SUB= PORTVERSION=${PORTVERSION}
QMAKE_ENV= EIGENDIR=${LOCALBASE}/include/eigen3
QMAKE_ARGS+= VERSION=${PORTVERSION} \
QMAKE_LEX=${LOCALBASE}/bin/flex \
QMAKE_YAC=${LOCALBASE}/bin/bison
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
USES= bison compiler:c++11-lib desktop-file-utils eigen:3 gettext \
pkgconfig qmake qt:5 shared-mime-info
USE_GITHUB= yes
USE_GL= gl glu glew
USE_GNOME= glib20 libxml2
USE_QT= buildtools_build core concurrent_build dbus gui multimedia widgets
USE_XORG= x11
GH_TAGNAME= 40379b3f5c1675c59714cebbbb6a8803d8d6460e
QMAKE_ARGS= CONFIG+="experimental" VERSION=${PORTVERSION}
# Avoid overlinking: kvm, procstat, boost(thread, system), Qt5(concurrent, network, printsupport)
LDFLAGS+= -Wl,--as-needed
post-patch:
@${REINPLACE_CMD} 's/-libusb//' ${WRKSRC}/features/hidapi.prf
@${REINPLACE_CMD} -e 's,share/man,man,' \
${WRKSRC}/openscad.pro
#.include <bsd.port.options.mk>
#
#.if ${ARCH} == i386
#USE_GCC= yes
#.endif
.include <bsd.port.mk>

View file

@ -1,2 +1,3 @@
SHA256 (openscad-2015.03.src.tar.gz) = 68ce08adc9e90c606ad948fe0f3405ce62b03b6bf34c45dd3dfc6b20c1846182
SIZE (openscad-2015.03.src.tar.gz) = 12748351
TIMESTAMP = 1552164393
SHA256 (openscad-openscad-2019.03.03-40379b3f5c1675c59714cebbbb6a8803d8d6460e_GH0.tar.gz) = 71f79838540dea191ae272a4b59dbfaa797a46f9ba6eeb22b6193cae51cfea41
SIZE (openscad-openscad-2019.03.03-40379b3f5c1675c59714cebbbb6a8803d8d6460e_GH0.tar.gz) = 14598920

View file

@ -1,13 +0,0 @@
https://github.com/openscad/openscad/commit/ce5646179848
--- src/CSGTermEvaluator.cc.orig 2015-03-09 05:03:30 UTC
+++ src/CSGTermEvaluator.cc
@@ -109,7 +109,7 @@ static shared_ptr<CSGTerm> evaluate_csg_term_from_geom
shared_ptr<const PolySet> ps = dynamic_pointer_cast<const PolySet>(geom);
// Since is_convex() doesn't handle non-planar faces, we need to tessellate
// also in the indeterminate state so we cannot just use a boolean comparison. See #1061
- bool convex = ps->convexValue();
+ bool convex(ps->convexValue());
if (ps && !convex) {
assert(ps->getDimension() == 3);
PolySet *ps_tri = new PolySet(3, ps->convexValue());

View file

@ -1,7 +1,7 @@
bin/openscad
man/man1/openscad.1.gz
share/appdata/openscad.appdata.xml
share/applications/openscad.desktop
share/metainfo/org.openscad.OpenSCAD.appdata.xml
share/mime/packages/openscad.xml
%%DATADIR%%/color-schemes/editor/dark-background.json
%%DATADIR%%/color-schemes/editor/light-background.json
@ -24,6 +24,7 @@ share/mime/packages/openscad.xml
%%DATADIR%%/color-schemes/render/tomorrow.json
%%DATADIR%%/examples/Advanced/GEB.scad
%%DATADIR%%/examples/Advanced/animation.scad
%%DATADIR%%/examples/Advanced/assert.scad
%%DATADIR%%/examples/Advanced/children.scad
%%DATADIR%%/examples/Advanced/children_indexed.scad
%%DATADIR%%/examples/Advanced/module_recursion.scad
@ -41,6 +42,7 @@ share/mime/packages/openscad.xml
%%DATADIR%%/examples/Basics/rotate_extrude.scad
%%DATADIR%%/examples/Basics/text_on_cube.scad
%%DATADIR%%/examples/COPYING-CC0.txt
%%DATADIR%%/examples/Functions/echo.scad
%%DATADIR%%/examples/Functions/functions.scad
%%DATADIR%%/examples/Functions/list_comprehensions.scad
%%DATADIR%%/examples/Functions/polygon_areas.scad
@ -76,6 +78,10 @@ share/mime/packages/openscad.xml
%%DATADIR%%/examples/Old/example022.scad
%%DATADIR%%/examples/Old/example023.scad
%%DATADIR%%/examples/Old/example024.scad
%%DATADIR%%/examples/Parametric/candleStand.json
%%DATADIR%%/examples/Parametric/candleStand.scad
%%DATADIR%%/examples/Parametric/sign.json
%%DATADIR%%/examples/Parametric/sign.scad
%%DATADIR%%/examples/examples.json
%%DATADIR%%/fonts/05-osx-fonts.conf
%%DATADIR%%/fonts/10-liberation.conf
@ -96,59 +102,12 @@ share/mime/packages/openscad.xml
%%DATADIR%%/fonts/Liberation-2.00.1/ttf/LiberationSerif-BoldItalic.ttf
%%DATADIR%%/fonts/Liberation-2.00.1/ttf/LiberationSerif-Italic.ttf
%%DATADIR%%/fonts/Liberation-2.00.1/ttf/LiberationSerif-Regular.ttf
%%DATADIR%%/libraries/MCAD/2Dshapes.scad
%%DATADIR%%/libraries/MCAD/3d_triangle.scad
%%DATADIR%%/libraries/MCAD/README.markdown
%%DATADIR%%/libraries/MCAD/TODO
%%DATADIR%%/libraries/MCAD/__init__.py
%%DATADIR%%/libraries/MCAD/bearing.scad
%%DATADIR%%/libraries/MCAD/bitmap/README
%%DATADIR%%/libraries/MCAD/bitmap/alphabet_block.scad
%%DATADIR%%/libraries/MCAD/bitmap/bitmap.scad
%%DATADIR%%/libraries/MCAD/bitmap/height_map.scad
%%DATADIR%%/libraries/MCAD/bitmap/letter_necklace.scad
%%DATADIR%%/libraries/MCAD/bitmap/name_tag.scad
%%DATADIR%%/libraries/MCAD/boxes.scad
%%DATADIR%%/libraries/MCAD/constants.scad
%%DATADIR%%/libraries/MCAD/curves.scad
%%DATADIR%%/libraries/MCAD/fonts.scad
%%DATADIR%%/libraries/MCAD/gears.scad
%%DATADIR%%/libraries/MCAD/get_submodules.py
%%DATADIR%%/libraries/MCAD/gridbeam.scad
%%DATADIR%%/libraries/MCAD/hardware.scad
%%DATADIR%%/libraries/MCAD/involute_gears.scad
%%DATADIR%%/libraries/MCAD/layouts.scad
%%DATADIR%%/libraries/MCAD/lego_compatibility.scad
%%DATADIR%%/libraries/MCAD/lgpl-2.1.txt
%%DATADIR%%/libraries/MCAD/libtriangles.scad
%%DATADIR%%/libraries/MCAD/materials.scad
%%DATADIR%%/libraries/MCAD/math.scad
%%DATADIR%%/libraries/MCAD/metric_fastners.scad
%%DATADIR%%/libraries/MCAD/motors.scad
%%DATADIR%%/libraries/MCAD/multiply.scad
%%DATADIR%%/libraries/MCAD/nuts_and_bolts.scad
%%DATADIR%%/libraries/MCAD/openscad_testing.py
%%DATADIR%%/libraries/MCAD/openscad_utils.py
%%DATADIR%%/libraries/MCAD/polyholes.scad
%%DATADIR%%/libraries/MCAD/regular_shapes.scad
%%DATADIR%%/libraries/MCAD/screw.scad
%%DATADIR%%/libraries/MCAD/servos.scad
%%DATADIR%%/libraries/MCAD/shapes.scad
%%DATADIR%%/libraries/MCAD/stepper.scad
%%DATADIR%%/libraries/MCAD/teardrop.scad
%%DATADIR%%/libraries/MCAD/test_docs.py
%%DATADIR%%/libraries/MCAD/test_mcad.py
%%DATADIR%%/libraries/MCAD/transformations.scad
%%DATADIR%%/libraries/MCAD/triangles.scad
%%DATADIR%%/libraries/MCAD/trochoids.scad
%%DATADIR%%/libraries/MCAD/units.scad
%%DATADIR%%/libraries/MCAD/unregular_shapes.scad
%%DATADIR%%/libraries/MCAD/utilities.scad
%%DATADIR%%/locale/cs/LC_MESSAGES/openscad.mo
%%DATADIR%%/locale/de/LC_MESSAGES/openscad.mo
%%DATADIR%%/locale/es/LC_MESSAGES/openscad.mo
%%DATADIR%%/locale/fr/LC_MESSAGES/openscad.mo
%%DATADIR%%/locale/pl/LC_MESSAGES/openscad.mo
%%DATADIR%%/locale/ru/LC_MESSAGES/openscad.mo
%%DATADIR%%/locale/uk/LC_MESSAGES/openscad.mo
share/pixmaps/openscad.png
@dir %%DATADIR%%/libraries/MCAD/SolidPython
@dir %%DATADIR%%/libraries/MCAD/ThingDoc
@dir %%DATADIR%%/libraries/MCAD

View file

@ -21,7 +21,7 @@ LIB_DEPENDS?= libgsm.so:audio/gsm \
librtlsdr.so:comms/rtl-sdr
BUILD_DEPENDS= ${LOCALBASE}/include/linux/input.h:devel/evdev-proto
USES+= cmake compiler:c++11-lang groff pkgconfig tcl
USES+= cmake:noninja compiler:c++11-lang groff pkgconfig tcl
USE_GITHUB= yes
GH_ACCOUNT= sm0svx
GH_PROJECT= svxlink

View file

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= pglast
PORTVERSION= 1.1
PORTVERSION= 1.2
CATEGORIES= databases python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@ -11,7 +11,9 @@ MAINTAINER= a.wolk@fudosecurity.com
COMMENT= PostgreSQL Languages AST and statements prettifier
LICENSE= GPLv3+
#LICENSE_FILE= ${WRKSRC}/
NOT_FOR_ARCHS= powerpc powerpc64 powerpcspe
NOT_FOR_ARCHS_REASON= port/atomics/arch-ppc.h: No such file or directory
USES= gmake python:3.4+
USE_PYTHON= autoplist distutils

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1547379267
SHA256 (pglast-1.1.tar.gz) = 3149c8b80c84f54fcdc56685e9e12625a7774e02352469d90ad9a30edcca759c
SIZE (pglast-1.1.tar.gz) = 1483748
TIMESTAMP = 1551904223
SHA256 (pglast-1.2.tar.gz) = e9d9026fc2ee86983a16679670bc85b6273d8266128185f90b7c84b3965bb1ee
SIZE (pglast-1.2.tar.gz) = 1486757

View file

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= calibre
PORTVERSION= 3.39.1
PORTVERSION= 3.40.1
CATEGORIES= deskutils python
MASTER_SITES= http://download.calibre-ebook.com/${PORTVERSION}/

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1549054100
SHA256 (calibre-3.39.1.tar.xz) = 50bb56ca9455464495c646688722cb07199ed74a3a2eb3dc4f3b3e609be68121
SIZE (calibre-3.39.1.tar.xz) = 38233800
TIMESTAMP = 1552033862
SHA256 (calibre-3.40.1.tar.xz) = 78015baefc8498a25d90ec22afe1ff3353abe6211cb7f39e3ab97ad715c233e8
SIZE (calibre-3.40.1.tar.xz) = 38365300

View file

@ -319,35 +319,6 @@ lib/calibre/calibre/ebooks/lrf/pylrs/pylrf.py
lib/calibre/calibre/ebooks/lrf/pylrs/pylrfopt.py
lib/calibre/calibre/ebooks/lrf/pylrs/pylrs.py
lib/calibre/calibre/ebooks/lrf/tags.py
lib/calibre/calibre/ebooks/markdown/__init__.py
lib/calibre/calibre/ebooks/markdown/__main__.py
lib/calibre/calibre/ebooks/markdown/__version__.py
lib/calibre/calibre/ebooks/markdown/blockparser.py
lib/calibre/calibre/ebooks/markdown/blockprocessors.py
lib/calibre/calibre/ebooks/markdown/extensions/__init__.py
lib/calibre/calibre/ebooks/markdown/extensions/abbr.py
lib/calibre/calibre/ebooks/markdown/extensions/admonition.py
lib/calibre/calibre/ebooks/markdown/extensions/attr_list.py
lib/calibre/calibre/ebooks/markdown/extensions/codehilite.py
lib/calibre/calibre/ebooks/markdown/extensions/def_list.py
lib/calibre/calibre/ebooks/markdown/extensions/extra.py
lib/calibre/calibre/ebooks/markdown/extensions/fenced_code.py
lib/calibre/calibre/ebooks/markdown/extensions/footnotes.py
lib/calibre/calibre/ebooks/markdown/extensions/headerid.py
lib/calibre/calibre/ebooks/markdown/extensions/meta.py
lib/calibre/calibre/ebooks/markdown/extensions/nl2br.py
lib/calibre/calibre/ebooks/markdown/extensions/sane_lists.py
lib/calibre/calibre/ebooks/markdown/extensions/smart_strong.py
lib/calibre/calibre/ebooks/markdown/extensions/tables.py
lib/calibre/calibre/ebooks/markdown/extensions/toc.py
lib/calibre/calibre/ebooks/markdown/extensions/wikilinks.py
lib/calibre/calibre/ebooks/markdown/inlinepatterns.py
lib/calibre/calibre/ebooks/markdown/odict.py
lib/calibre/calibre/ebooks/markdown/postprocessors.py
lib/calibre/calibre/ebooks/markdown/preprocessors.py
lib/calibre/calibre/ebooks/markdown/serializers.py
lib/calibre/calibre/ebooks/markdown/treeprocessors.py
lib/calibre/calibre/ebooks/markdown/util.py
lib/calibre/calibre/ebooks/metadata/__init__.py
lib/calibre/calibre/ebooks/metadata/archive.py
lib/calibre/calibre/ebooks/metadata/author_mapper.py
@ -1387,7 +1358,6 @@ lib/calibre/calibre/utils/Zeroconf.py
lib/calibre/calibre/utils/zipfile.py
lib/calibre/calibre/web/__init__.py
lib/calibre/calibre/web/feeds/__init__.py
lib/calibre/calibre/web/feeds/feedparser.py
lib/calibre/calibre/web/feeds/news.py
lib/calibre/calibre/web/feeds/recipes/__init__.py
lib/calibre/calibre/web/feeds/recipes/collection.py

View file

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= freeplane
DISTVERSION= 1.7.5
DISTVERSION= 1.7.6
CATEGORIES= deskutils editors java
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}%20stable/archive/${PORTVERSION}
DISTNAME= ${PORTNAME}_bin-${PORTVERSION}

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1550389806
SHA256 (freeplane_bin-1.7.5.zip) = 3e6d4cc279aa8840c4a54af5f5006d39ab6c11c824be954f7ffa2bd6a892332b
SIZE (freeplane_bin-1.7.5.zip) = 35849635
TIMESTAMP = 1551817022
SHA256 (freeplane_bin-1.7.6.zip) = 6b7d251492b244d82c464f2fa31258778e7ea60967a50d2d341ff73bbb8c3625
SIZE (freeplane_bin-1.7.6.zip) = 35865230

View file

@ -4,7 +4,7 @@ bin/freeplane
%%DATADIR%%/core/org.freeplane.core/lib/commons-codec-1.8.jar
%%DATADIR%%/core/org.freeplane.core/lib/commons-io-2.4.jar
%%DATADIR%%/core/org.freeplane.core/lib/commons-lang-2.6.jar
%%DATADIR%%/core/org.freeplane.core/lib/freeplane_mac-1.7.4.jar
%%DATADIR%%/core/org.freeplane.core/lib/freeplane_mac-%%PORTVERSION%%.jar
%%DATADIR%%/core/org.freeplane.core/lib/freeplaneeditor-%%PORTVERSION%%.jar
%%DATADIR%%/core/org.freeplane.core/lib/freeplaneosgi-%%PORTVERSION%%.jar
%%DATADIR%%/core/org.freeplane.core/lib/freeplaneviewer.jar

View file

@ -28,7 +28,7 @@ VTK6_CMAKE_ON= -DGDCM_USE_VTK:BOOL=ON \
# Change this when updating the port
GDCM_MAJOR= 2
GDCM_MINOR= 8
GDCM_PATCH= 8
GDCM_PATCH= 9
# Change this whenever VTK is updated
VTK6_VERSION= 6.2

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1542045904
SHA256 (gdcm-2.8.8.tar.bz2) = 2b090d5653368880f3c6cef2ef7eda8e0cdae3436fed18f2e442344dc0cc8ec7
SIZE (gdcm-2.8.8.tar.bz2) = 2886942
TIMESTAMP = 1552177037
SHA256 (gdcm-2.8.9.tar.bz2) = a76f1abfb8d1985ff11e3879a4fc06dd8b1b5e7e56ce854e036443169a2842fd
SIZE (gdcm-2.8.9.tar.bz2) = 2888670

View file

@ -14,450 +14,450 @@ bin/gdcmscu
bin/gdcmtar
%%VTK%%bin/gdcmviewer
bin/gdcmxml
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmAAbortPDU.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmAAssociateACPDU.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmAAssociateRJPDU.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmAAssociateRQPDU.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmARTIMTimer.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmAReleaseRPPDU.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmAReleaseRQPDU.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmASN1.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmAbstractSyntax.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmAnonymizeEvent.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmAnonymizer.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmApplicationContext.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmApplicationEntity.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmAsynchronousOperationsWindowSub.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmAttribute.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmAudioCodec.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmBase64.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmBaseCompositeMessage.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmBaseNormalizedMessage.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmBasePDU.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmBaseQuery.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmBaseRootQuery.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmBasicOffsetTable.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmBitmap.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmBitmapToBitmapFilter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmBoxRegion.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmByteBuffer.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmByteSwap.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmByteSwap.txx
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmByteSwapFilter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmByteValue.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmCAPICryptoFactory.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmCAPICryptographicMessageSyntax.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmCEchoMessages.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmCFindMessages.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmCMoveMessages.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmCP%%GDCM_MAJOR%%46ExplicitDataElement.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmCP%%GDCM_MAJOR%%46ExplicitDataElement.txx
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmCSAElement.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmCSAHeader.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmCSAHeader.txx
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmCSAHeaderDict.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmCSAHeaderDictEntry.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmCStoreMessages.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmCodeString.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmCodec.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmCoder.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmCommand.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmCommandDataSet.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmCompositeMessageFactory.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmCompositeNetworkFunctions.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmConfigure.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmConstCharWrapper.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmCryptoFactory.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmCryptographicMessageSyntax.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmCurve.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmDICOMDIR.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmDICOMDIRGenerator.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmDIMSE.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmDataElement.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmDataEvent.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmDataSet.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmDataSet.txx
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmDataSetEvent.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmDataSetHelper.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmDecoder.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmDefinedTerms.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmDeflateStream.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmDefs.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmDeltaEncodingCodec.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmDict.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmDictConverter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmDictEntry.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmDictPrinter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmDicts.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmDirectionCosines.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmDirectory.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmDirectoryHelper.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmDummyValueGenerator.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmDumper.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmElement.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmEmptyMaskGenerator.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmEncapsulatedDocument.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmEnumeratedValues.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmEvent.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmException.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmExplicitDataElement.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmExplicitDataElement.txx
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmExplicitImplicitDataElement.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmExplicitImplicitDataElement.txx
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmFiducials.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmFile.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmFileAnonymizer.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmFileChangeTransferSyntax.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmFileDecompressLookupTable.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmFileDerivation.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmFileExplicitFilter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmFileMetaInformation.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmFileNameEvent.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmFileSet.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmFileStreamer.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmFilename.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmFilenameGenerator.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmFindPatientRootQuery.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmFindStudyRootQuery.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmFragment.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmFragment.txx
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmGlobal.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmGroupDict.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmIOD.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmIODEntry.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmIODs.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmIPPSorter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmIconImage.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmIconImageFilter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmIconImageGenerator.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmImage.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmImageApplyLookupTable.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmImageChangePhotometricInterpretation.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmImageChangePlanarConfiguration.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmImageChangeTransferSyntax.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmImageCodec.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmImageConverter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmImageFragmentSplitter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmImageHelper.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmImageReader.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmImageRegionReader.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmImageToImageFilter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmImageWriter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmImplementationClassUIDSub.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmImplementationUIDSub.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmImplementationVersionNameSub.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmImplicitDataElement.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmImplicitDataElement.txx
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmItem.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmItem.txx
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmJPEG1%%GDCM_MAJOR%%Codec.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmJPEG16Codec.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmJPEG%%GDCM_MAJOR%%000Codec.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmJPEG%%GDCM_PATCH%%Codec.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmJPEGCodec.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmJPEGLSCodec.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmJSON.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmKAKADUCodec.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmLO.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmLegacyMacro.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmLookupTable.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmMD5.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmMacro.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmMacroEntry.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmMacros.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmMaximumLengthSub.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmMediaStorage.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmMeshPrimitive.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmModalityPerformedProcedureStepCreateQuery.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmModalityPerformedProcedureStepSetQuery.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmModule.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmModuleEntry.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmModules.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmMovePatientRootQuery.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmMoveStudyRootQuery.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmMrProtocol.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmNActionMessages.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmNCreateMessages.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmNDeleteMessages.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmNEventReportMessages.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmNGetMessages.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmNSetMessages.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmNestedModuleEntries.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmNetworkEvents.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmNetworkStateID.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmNormalizedMessageFactory.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmNormalizedNetworkFunctions.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmObject.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmOpenSSLCryptoFactory.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmOpenSSLCryptographicMessageSyntax.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmOpenSSLP7CryptoFactory.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmOpenSSLP7CryptographicMessageSyntax.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmOrientation.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmOverlay.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmPDBElement.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmPDBHeader.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmPDFCodec.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmPDUFactory.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmPDataTFPDU.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmPGXCodec.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmPNMCodec.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmPVRGCodec.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmParseException.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmParser.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmPatient.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmPersonName.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmPhotometricInterpretation.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmPixelFormat.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmPixmap.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmPixmapReader.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmPixmapToPixmapFilter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmPixmapWriter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmPreamble.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmPresentationContext.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmPresentationContextAC.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmPresentationContextGenerator.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmPresentationContextRQ.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmPresentationDataValue.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmPrinter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmPrivateTag.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmProgressEvent.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmQueryBase.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmQueryFactory.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmQueryImage.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmQueryPatient.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmQuerySeries.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmQueryStudy.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmRAWCodec.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmRLECodec.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmReader.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmRegion.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmRescaler.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmRoleSelectionSub.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmSHA1.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmSOPClassExtendedNegociationSub.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmSOPClassUIDToIOD.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmScanner.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmSegment.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmSegmentHelper.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmSegmentReader.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmSegmentWriter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmSegmentedPaletteColorLookupTable.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmSequenceOfFragments.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmSequenceOfFragments.txx
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmSequenceOfItems.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmSequenceOfItems.txx
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmSerieHelper.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmSeries.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmServiceClassApplicationInformation.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmServiceClassUser.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmSimpleSubjectWatcher.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmSmartPointer.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmSorter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmSpacing.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmSpectroscopy.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmSplitMosaicFilter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmStaticAssert.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmStreamImageReader.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmStreamImageWriter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmStrictScanner.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmString.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmStringFilter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmStudy.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmSubject.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmSurface.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmSurfaceHelper.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmSurfaceReader.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmSurfaceWriter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmSwapCode.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmSwapper.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmSwapper.txx
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmSystem.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmTable.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmTableEntry.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmTableReader.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmTag.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmTagKeywords.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmTagPath.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmTagToType.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmTagToVR.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmTerminal.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmTestDriver.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmTesting.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmTrace.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmTransferSyntax.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmTransferSyntaxSub.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmType.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmTypes.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmUIDGenerator.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmUIDs.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmULAction.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmULActionAA.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmULActionAE.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmULActionAR.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmULActionDT.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmULBasicCallback.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmULConnection.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmULConnectionCallback.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmULConnectionInfo.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmULConnectionManager.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmULEvent.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmULTransitionTable.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmULWritingCallback.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmUNExplicitDataElement.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmUNExplicitDataElement.txx
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmUNExplicitImplicitDataElement.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmUNExplicitImplicitDataElement.txx
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmUUIDGenerator.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmUnpacker1%%GDCM_MAJOR%%Bits.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmUsage.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmUserInformation.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmVL.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmVM.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmVR.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmVR16ExplicitDataElement.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmVR16ExplicitDataElement.txx
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmValidate.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmValue.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmValue.txx
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmValueIO.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmValueIO.txx
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmVersion.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmWLMFindQuery.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmWaveform.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmWin3%%GDCM_MAJOR%%.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmWriter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmXMLDictReader.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmXMLPrinter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmXMLPrivateDictReader.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcm_j%%GDCM_MAJOR%%k.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcm_jp%%GDCM_MAJOR%%.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmcharls/colortransform.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmcharls/config.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmcharls/context.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmcharls/contextrunmode.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmcharls/decoderstrategy.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmcharls/defaulttraits.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmcharls/encoderstrategy.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmcharls/header.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmcharls/interface.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmcharls/jpegimagedatasegment.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmcharls/jpegmarker.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmcharls/jpegmarkersegment.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmcharls/jpegsegment.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmcharls/jpegstreamwriter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmcharls/lookuptable.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmcharls/losslesstraits.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmcharls/processline.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmcharls/publictypes.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmcharls/scan.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmcharls/util.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmjpeg/1%%GDCM_MAJOR%%/jconfig.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmjpeg/1%%GDCM_MAJOR%%/jerror.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmjpeg/1%%GDCM_MAJOR%%/jinclude.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmjpeg/1%%GDCM_MAJOR%%/jmorecfg.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmjpeg/1%%GDCM_MAJOR%%/jpegcmake.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmjpeg/1%%GDCM_MAJOR%%/jpeglib.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmjpeg/1%%GDCM_MAJOR%%/mangle_jpeg1%%GDCM_MAJOR%%bits.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmjpeg/16/jconfig.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmjpeg/16/jerror.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmjpeg/16/jinclude.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmjpeg/16/jmorecfg.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmjpeg/16/jpegcmake.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmjpeg/16/jpeglib.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmjpeg/16/mangle_jpeg16bits.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmjpeg/%%GDCM_PATCH%%/jconfig.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmjpeg/%%GDCM_PATCH%%/jerror.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmjpeg/%%GDCM_PATCH%%/jinclude.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmjpeg/%%GDCM_PATCH%%/jmorecfg.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmjpeg/%%GDCM_PATCH%%/jpegcmake.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmjpeg/%%GDCM_PATCH%%/jpeglib.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmjpeg/%%GDCM_PATCH%%/mangle_jpeg%%GDCM_PATCH%%bits.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmjpeg/jchuff.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmjpeg/jconfig.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmjpeg/jdct.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmjpeg/jdhuff.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmjpeg/jerror.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmjpeg/jinclude.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmjpeg/jlossls.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmjpeg/jlossy.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmjpeg/jmemsys.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmjpeg/jmorecfg.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmjpeg/jpegint.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmjpeg/jpeglib.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/gdcmjpeg/jversion.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/socketxx/echo.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/socketxx/fork.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/socketxx/ftp.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/socketxx/local.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/socketxx/pipestream.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/socketxx/protocol.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/socketxx/sig.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/socketxx/smtp.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/socketxx/sockinet.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/socketxx/sockstream.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/socketxx/sockunix.h
%%VTK%%include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/vtkGDCMImageReader.h
%%VTK%%include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/vtkGDCMImageReader%%GDCM_MAJOR%%.h
%%VTK%%include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/vtkGDCMImageWriter.h
%%VTK%%include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/vtkGDCMMedicalImageProperties.h
%%VTK%%include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/vtkGDCMPolyDataReader.h
%%VTK%%include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/vtkGDCMPolyDataWriter.h
%%VTK%%include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/vtkGDCMTesting.h
%%VTK%%include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/vtkGDCMThreadedImageReader.h
%%VTK%%include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/vtkGDCMThreadedImageReader%%GDCM_MAJOR%%.h
%%VTK%%include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/vtkImageColorViewer.h
%%VTK%%include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/vtkImageMapToColors16.h
%%VTK%%include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/vtkImageMapToWindowLevelColors%%GDCM_MAJOR%%.h
%%VTK%%include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/vtkImagePlanarComponentsToComponents.h
%%VTK%%include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/vtkImageRGBToYBR.h
%%VTK%%include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/vtkImageYBRToRGB.h
%%VTK%%include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/vtkLookupTable16.h
%%VTK%%include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/vtkRTStructSetProperties.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/zipstreamimpl.h
lib/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/GDCMConfig.cmake
lib/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/GDCMConfigVersion.cmake
lib/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/GDCMTargets-%%CMAKE_BUILD_TYPE%%.cmake
lib/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/GDCMTargets.cmake
lib/gdcm-%%GDCM_MAJOR%%.%%GDCM_PATCH%%/UseGDCM.cmake
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmAAbortPDU.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmAAssociateACPDU.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmAAssociateRJPDU.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmAAssociateRQPDU.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmARTIMTimer.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmAReleaseRPPDU.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmAReleaseRQPDU.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmASN1.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmAbstractSyntax.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmAnonymizeEvent.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmAnonymizer.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmApplicationContext.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmApplicationEntity.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmAsynchronousOperationsWindowSub.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmAttribute.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmAudioCodec.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmBase64.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmBaseCompositeMessage.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmBaseNormalizedMessage.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmBasePDU.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmBaseQuery.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmBaseRootQuery.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmBasicOffsetTable.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmBitmap.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmBitmapToBitmapFilter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmBoxRegion.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmByteBuffer.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmByteSwap.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmByteSwap.txx
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmByteSwapFilter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmByteValue.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmCAPICryptoFactory.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmCAPICryptographicMessageSyntax.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmCEchoMessages.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmCFindMessages.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmCMoveMessages.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmCP%%GDCM_MAJOR%%46ExplicitDataElement.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmCP%%GDCM_MAJOR%%46ExplicitDataElement.txx
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmCSAElement.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmCSAHeader.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmCSAHeader.txx
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmCSAHeaderDict.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmCSAHeaderDictEntry.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmCStoreMessages.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmCodeString.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmCodec.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmCoder.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmCommand.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmCommandDataSet.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmCompositeMessageFactory.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmCompositeNetworkFunctions.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmConfigure.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmConstCharWrapper.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmCryptoFactory.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmCryptographicMessageSyntax.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmCurve.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmDICOMDIR.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmDICOMDIRGenerator.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmDIMSE.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmDataElement.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmDataEvent.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmDataSet.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmDataSet.txx
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmDataSetEvent.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmDataSetHelper.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmDecoder.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmDefinedTerms.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmDeflateStream.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmDefs.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmDeltaEncodingCodec.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmDict.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmDictConverter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmDictEntry.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmDictPrinter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmDicts.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmDirectionCosines.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmDirectory.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmDirectoryHelper.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmDummyValueGenerator.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmDumper.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmElement.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmEmptyMaskGenerator.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmEncapsulatedDocument.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmEnumeratedValues.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmEvent.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmException.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmExplicitDataElement.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmExplicitDataElement.txx
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmExplicitImplicitDataElement.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmExplicitImplicitDataElement.txx
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmFiducials.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmFile.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmFileAnonymizer.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmFileChangeTransferSyntax.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmFileDecompressLookupTable.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmFileDerivation.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmFileExplicitFilter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmFileMetaInformation.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmFileNameEvent.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmFileSet.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmFileStreamer.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmFilename.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmFilenameGenerator.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmFindPatientRootQuery.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmFindStudyRootQuery.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmFragment.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmFragment.txx
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmGlobal.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmGroupDict.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmIOD.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmIODEntry.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmIODs.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmIPPSorter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmIconImage.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmIconImageFilter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmIconImageGenerator.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmImage.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmImageApplyLookupTable.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmImageChangePhotometricInterpretation.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmImageChangePlanarConfiguration.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmImageChangeTransferSyntax.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmImageCodec.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmImageConverter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmImageFragmentSplitter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmImageHelper.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmImageReader.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmImageRegionReader.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmImageToImageFilter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmImageWriter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmImplementationClassUIDSub.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmImplementationUIDSub.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmImplementationVersionNameSub.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmImplicitDataElement.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmImplicitDataElement.txx
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmItem.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmItem.txx
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmJPEG1%%GDCM_MAJOR%%Codec.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmJPEG16Codec.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmJPEG%%GDCM_MAJOR%%000Codec.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmJPEG%%GDCM_MINOR%%Codec.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmJPEGCodec.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmJPEGLSCodec.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmJSON.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmKAKADUCodec.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmLO.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmLegacyMacro.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmLookupTable.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmMD5.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmMacro.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmMacroEntry.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmMacros.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmMaximumLengthSub.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmMediaStorage.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmMeshPrimitive.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmModalityPerformedProcedureStepCreateQuery.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmModalityPerformedProcedureStepSetQuery.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmModule.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmModuleEntry.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmModules.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmMovePatientRootQuery.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmMoveStudyRootQuery.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmMrProtocol.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmNActionMessages.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmNCreateMessages.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmNDeleteMessages.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmNEventReportMessages.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmNGetMessages.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmNSetMessages.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmNestedModuleEntries.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmNetworkEvents.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmNetworkStateID.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmNormalizedMessageFactory.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmNormalizedNetworkFunctions.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmObject.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmOpenSSLCryptoFactory.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmOpenSSLCryptographicMessageSyntax.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmOpenSSLP7CryptoFactory.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmOpenSSLP7CryptographicMessageSyntax.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmOrientation.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmOverlay.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmPDBElement.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmPDBHeader.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmPDFCodec.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmPDUFactory.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmPDataTFPDU.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmPGXCodec.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmPNMCodec.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmPVRGCodec.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmParseException.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmParser.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmPatient.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmPersonName.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmPhotometricInterpretation.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmPixelFormat.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmPixmap.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmPixmapReader.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmPixmapToPixmapFilter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmPixmapWriter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmPreamble.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmPresentationContext.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmPresentationContextAC.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmPresentationContextGenerator.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmPresentationContextRQ.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmPresentationDataValue.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmPrinter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmPrivateTag.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmProgressEvent.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmQueryBase.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmQueryFactory.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmQueryImage.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmQueryPatient.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmQuerySeries.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmQueryStudy.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmRAWCodec.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmRLECodec.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmReader.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmRegion.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmRescaler.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmRoleSelectionSub.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmSHA1.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmSOPClassExtendedNegociationSub.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmSOPClassUIDToIOD.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmScanner.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmSegment.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmSegmentHelper.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmSegmentReader.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmSegmentWriter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmSegmentedPaletteColorLookupTable.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmSequenceOfFragments.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmSequenceOfFragments.txx
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmSequenceOfItems.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmSequenceOfItems.txx
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmSerieHelper.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmSeries.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmServiceClassApplicationInformation.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmServiceClassUser.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmSimpleSubjectWatcher.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmSmartPointer.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmSorter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmSpacing.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmSpectroscopy.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmSplitMosaicFilter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmStaticAssert.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmStreamImageReader.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmStreamImageWriter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmStrictScanner.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmString.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmStringFilter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmStudy.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmSubject.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmSurface.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmSurfaceHelper.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmSurfaceReader.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmSurfaceWriter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmSwapCode.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmSwapper.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmSwapper.txx
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmSystem.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmTable.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmTableEntry.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmTableReader.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmTag.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmTagKeywords.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmTagPath.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmTagToType.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmTagToVR.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmTerminal.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmTestDriver.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmTesting.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmTrace.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmTransferSyntax.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmTransferSyntaxSub.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmType.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmTypes.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmUIDGenerator.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmUIDs.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmULAction.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmULActionAA.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmULActionAE.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmULActionAR.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmULActionDT.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmULBasicCallback.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmULConnection.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmULConnectionCallback.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmULConnectionInfo.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmULConnectionManager.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmULEvent.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmULTransitionTable.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmULWritingCallback.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmUNExplicitDataElement.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmUNExplicitDataElement.txx
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmUNExplicitImplicitDataElement.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmUNExplicitImplicitDataElement.txx
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmUUIDGenerator.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmUnpacker1%%GDCM_MAJOR%%Bits.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmUsage.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmUserInformation.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmVL.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmVM.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmVR.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmVR16ExplicitDataElement.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmVR16ExplicitDataElement.txx
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmValidate.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmValue.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmValue.txx
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmValueIO.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmValueIO.txx
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmVersion.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmWLMFindQuery.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmWaveform.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmWin3%%GDCM_MAJOR%%.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmWriter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmXMLDictReader.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmXMLPrinter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmXMLPrivateDictReader.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcm_j%%GDCM_MAJOR%%k.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcm_jp%%GDCM_MAJOR%%.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmcharls/colortransform.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmcharls/config.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmcharls/context.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmcharls/contextrunmode.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmcharls/decoderstrategy.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmcharls/defaulttraits.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmcharls/encoderstrategy.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmcharls/header.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmcharls/interface.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmcharls/jpegimagedatasegment.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmcharls/jpegmarker.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmcharls/jpegmarkersegment.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmcharls/jpegsegment.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmcharls/jpegstreamwriter.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmcharls/lookuptable.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmcharls/losslesstraits.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmcharls/processline.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmcharls/publictypes.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmcharls/scan.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmcharls/util.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmjpeg/1%%GDCM_MAJOR%%/jconfig.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmjpeg/1%%GDCM_MAJOR%%/jerror.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmjpeg/1%%GDCM_MAJOR%%/jinclude.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmjpeg/1%%GDCM_MAJOR%%/jmorecfg.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmjpeg/1%%GDCM_MAJOR%%/jpegcmake.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmjpeg/1%%GDCM_MAJOR%%/jpeglib.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmjpeg/1%%GDCM_MAJOR%%/mangle_jpeg1%%GDCM_MAJOR%%bits.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmjpeg/16/jconfig.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmjpeg/16/jerror.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmjpeg/16/jinclude.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmjpeg/16/jmorecfg.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmjpeg/16/jpegcmake.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmjpeg/16/jpeglib.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmjpeg/16/mangle_jpeg16bits.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmjpeg/8/jconfig.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmjpeg/8/jerror.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmjpeg/8/jinclude.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmjpeg/8/jmorecfg.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmjpeg/8/jpegcmake.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmjpeg/8/jpeglib.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmjpeg/8/mangle_jpeg%%GDCM_MINOR%%bits.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmjpeg/jchuff.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmjpeg/jconfig.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmjpeg/jdct.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmjpeg/jdhuff.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmjpeg/jerror.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmjpeg/jinclude.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmjpeg/jlossls.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmjpeg/jlossy.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmjpeg/jmemsys.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmjpeg/jmorecfg.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmjpeg/jpegint.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmjpeg/jpeglib.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmjpeg/jversion.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/socketxx/echo.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/socketxx/fork.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/socketxx/ftp.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/socketxx/local.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/socketxx/pipestream.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/socketxx/protocol.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/socketxx/sig.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/socketxx/smtp.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/socketxx/sockinet.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/socketxx/sockstream.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/socketxx/sockunix.h
%%VTK%%include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/vtkGDCMImageReader.h
%%VTK%%include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/vtkGDCMImageReader%%GDCM_MAJOR%%.h
%%VTK%%include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/vtkGDCMImageWriter.h
%%VTK%%include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/vtkGDCMMedicalImageProperties.h
%%VTK%%include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/vtkGDCMPolyDataReader.h
%%VTK%%include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/vtkGDCMPolyDataWriter.h
%%VTK%%include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/vtkGDCMTesting.h
%%VTK%%include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/vtkGDCMThreadedImageReader.h
%%VTK%%include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/vtkGDCMThreadedImageReader%%GDCM_MAJOR%%.h
%%VTK%%include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/vtkImageColorViewer.h
%%VTK%%include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/vtkImageMapToColors16.h
%%VTK%%include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/vtkImageMapToWindowLevelColors%%GDCM_MAJOR%%.h
%%VTK%%include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/vtkImagePlanarComponentsToComponents.h
%%VTK%%include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/vtkImageRGBToYBR.h
%%VTK%%include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/vtkImageYBRToRGB.h
%%VTK%%include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/vtkLookupTable16.h
%%VTK%%include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/vtkRTStructSetProperties.h
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/zipstreamimpl.h
lib/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/GDCMConfig.cmake
lib/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/GDCMConfigVersion.cmake
lib/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/GDCMTargets-%%CMAKE_BUILD_TYPE%%.cmake
lib/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/GDCMTargets.cmake
lib/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/UseGDCM.cmake
lib/libgdcmCommon.so
lib/libgdcmCommon.so.%%GDCM_MAJOR%%
lib/libgdcmCommon.so.%%GDCM_MAJOR%%.%%GDCM_PATCH%%.%%GDCM_PATCH%%
lib/libgdcmCommon.so.%%GDCM_MAJOR%%.%%GDCM_MINOR%%.%%GDCM_PATCH%%
lib/libgdcmDICT.so
lib/libgdcmDICT.so.%%GDCM_MAJOR%%
lib/libgdcmDICT.so.%%GDCM_MAJOR%%.%%GDCM_PATCH%%.%%GDCM_PATCH%%
lib/libgdcmDICT.so.%%GDCM_MAJOR%%.%%GDCM_MINOR%%.%%GDCM_PATCH%%
lib/libgdcmDSED.so
lib/libgdcmDSED.so.%%GDCM_MAJOR%%
lib/libgdcmDSED.so.%%GDCM_MAJOR%%.%%GDCM_PATCH%%.%%GDCM_PATCH%%
lib/libgdcmDSED.so.%%GDCM_MAJOR%%.%%GDCM_MINOR%%.%%GDCM_PATCH%%
lib/libgdcmIOD.so
lib/libgdcmIOD.so.%%GDCM_MAJOR%%
lib/libgdcmIOD.so.%%GDCM_MAJOR%%.%%GDCM_PATCH%%.%%GDCM_PATCH%%
lib/libgdcmIOD.so.%%GDCM_MAJOR%%.%%GDCM_MINOR%%.%%GDCM_PATCH%%
lib/libgdcmMEXD.so
lib/libgdcmMEXD.so.%%GDCM_MAJOR%%
lib/libgdcmMEXD.so.%%GDCM_MAJOR%%.%%GDCM_PATCH%%.%%GDCM_PATCH%%
lib/libgdcmMEXD.so.%%GDCM_MAJOR%%.%%GDCM_MINOR%%.%%GDCM_PATCH%%
lib/libgdcmMSFF.so
lib/libgdcmMSFF.so.%%GDCM_MAJOR%%
lib/libgdcmMSFF.so.%%GDCM_MAJOR%%.%%GDCM_PATCH%%.%%GDCM_PATCH%%
lib/libgdcmMSFF.so.%%GDCM_MAJOR%%.%%GDCM_MINOR%%.%%GDCM_PATCH%%
lib/libgdcmcharls.so
lib/libgdcmcharls.so.1
lib/libgdcmcharls.so.1.1
lib/libgdcmjpeg1%%GDCM_MAJOR%%.so
lib/libgdcmjpeg1%%GDCM_MAJOR%%.so.%%GDCM_MAJOR%%
lib/libgdcmjpeg1%%GDCM_MAJOR%%.so.%%GDCM_MAJOR%%.%%GDCM_PATCH%%.%%GDCM_PATCH%%
lib/libgdcmjpeg1%%GDCM_MAJOR%%.so.%%GDCM_MAJOR%%.%%GDCM_MINOR%%.%%GDCM_PATCH%%
lib/libgdcmjpeg16.so
lib/libgdcmjpeg16.so.%%GDCM_MAJOR%%
lib/libgdcmjpeg16.so.%%GDCM_MAJOR%%.%%GDCM_PATCH%%.%%GDCM_PATCH%%
lib/libgdcmjpeg%%GDCM_PATCH%%.so
lib/libgdcmjpeg%%GDCM_PATCH%%.so.%%GDCM_MAJOR%%
lib/libgdcmjpeg%%GDCM_PATCH%%.so.%%GDCM_MAJOR%%.%%GDCM_PATCH%%.%%GDCM_PATCH%%
lib/libgdcmjpeg16.so.%%GDCM_MAJOR%%.%%GDCM_MINOR%%.%%GDCM_PATCH%%
lib/libgdcmjpeg%%GDCM_MINOR%%.so
lib/libgdcmjpeg%%GDCM_MINOR%%.so.%%GDCM_MAJOR%%
lib/libgdcmjpeg%%GDCM_MINOR%%.so.%%GDCM_MAJOR%%.%%GDCM_MINOR%%.%%GDCM_PATCH%%
lib/libgdcmuuid.so
lib/libgdcmuuid.so.%%GDCM_MAJOR%%
lib/libgdcmuuid.so.%%GDCM_MAJOR%%.%%GDCM_PATCH%%.%%GDCM_PATCH%%
lib/libgdcmuuid.so.%%GDCM_MAJOR%%.%%GDCM_MINOR%%.%%GDCM_PATCH%%
lib/libsocketxx.so
lib/libsocketxx.so.1.%%GDCM_MAJOR%%
lib/libsocketxx.so.1.%%GDCM_MAJOR%%.0
%%VTK%%lib/libvtkgdcm.so
%%VTK%%lib/libvtkgdcm.so.%%GDCM_MAJOR%%
%%VTK%%lib/libvtkgdcm.so.%%GDCM_MAJOR%%.%%GDCM_PATCH%%.%%GDCM_PATCH%%
%%VTK%%lib/libvtkgdcm.so.%%GDCM_MAJOR%%.%%GDCM_MINOR%%.%%GDCM_PATCH%%
%%DATADIR%%/XML/CSAHeader.xml
%%DATADIR%%/XML/Part3.xml
%%DATADIR%%/XML/Part4.xml

View file

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= radian
DISTVERSION= 0.3.2
DISTVERSION= 0.3.3
CATEGORIES= devel math python
MASTER_SITES= CHEESESHOP
@ -10,9 +10,10 @@ COMMENT= 21st century R console
LICENSE= MIT
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest-runner>=0:devel/py-pytest-runner@${PY_FLAVOR}
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}lineedit>=0.1.1:devel/py-lineedit@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}rapi>=0.1.2:math/py-rapi@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}rchitect>=0.2.3,<0.3.0:devel/py-rchitect@${PY_FLAVOR}
${PYTHON_PKGNAMEPREFIX}rchitect>=0.2.3,<0.3.0:devel/py-rchitect@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}six>=1.9.0:devel/py-six@${PY_FLAVOR}
USES= python
USE_PYTHON= distutils noflavors autoplist

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1551233580
SHA256 (radian-0.3.2.tar.gz) = b392445d28c68581e0df0cb43f7f6dc88a89eb732dbaaa8088aa67af39819b6c
SIZE (radian-0.3.2.tar.gz) = 20816
TIMESTAMP = 1552167288
SHA256 (radian-0.3.3.tar.gz) = 606de0c7f54329c3a4f637da644c9db1a64b3820e65ee4adcffee0081891f90b
SIZE (radian-0.3.3.tar.gz) = 21470

View file

@ -3,8 +3,7 @@
PORTNAME= focuswriter
DISTVERSIONPREFIX= v
DISTVERSION= 1.7.1
PORTREVISION= 2
DISTVERSION= 1.7.2
CATEGORIES= editors
MAINTAINER= lightside@gmx.com

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1545048068
SHA256 (gottcode-focuswriter-v1.7.1_GH0.tar.gz) = 172c4dd264caba05121e9db3ca6eb3d4f2c41e6d956670792e213a243d5ddab6
SIZE (gottcode-focuswriter-v1.7.1_GH0.tar.gz) = 10501634
TIMESTAMP = 1551985880
SHA256 (gottcode-focuswriter-v1.7.2_GH0.tar.gz) = 0d6c2795445f2d124ba2e7e1a12db20a4a25731215935f228794ae79f0cc553c
SIZE (gottcode-focuswriter-v1.7.2_GH0.tar.gz) = 10511183

View file

@ -27,7 +27,8 @@ RUN_DEPENDS= ${LOCALBASE}/lib/libplibsl.a:x11-toolkits/plib \
${LOCALBASE}/lib/libSimGearCore.a:devel/simgear \
${LOCALBASE}/share/flightgear/version:games/flightgear-data
USES= alias cmake compiler cpe dos2unix gl jpeg openal:al,alut \
# Disable ninja, see https://sourceforge.net/p/flightgear/codetickets/2118/
USES= alias cmake:noninja compiler cpe dos2unix gl jpeg openal:al,alut \
sqlite tar:bzip2
USE_XORG= ice sm x11 xext xft xi xinerama xmu xt
USE_GL= gl glew glu glut

View file

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= Drawpile
DISTVERSION= 2.1.1
DISTVERSION= 2.1.2
CATEGORIES= graphics python
MAINTAINER= yuri@FreeBSD.org

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1550484552
SHA256 (drawpile-Drawpile-2.1.1_GH0.tar.gz) = 69768c72f834904af7d39d662aba9953710327bcabaf1422551ef636b60d83b6
SIZE (drawpile-Drawpile-2.1.1_GH0.tar.gz) = 2380321
TIMESTAMP = 1552195043
SHA256 (drawpile-Drawpile-2.1.2_GH0.tar.gz) = 2a8f3e2f882ead664939cfc53fdae2b52ba5a324e2bfaa3e354e9d3e18c0a7d2
SIZE (drawpile-Drawpile-2.1.2_GH0.tar.gz) = 2404560

View file

@ -8,6 +8,7 @@ share/drawpile/drawpile/i18n/drawpile_de.qm
share/drawpile/drawpile/i18n/drawpile_fi.qm
share/drawpile/drawpile/i18n/drawpile_ja.qm
share/drawpile/drawpile/i18n/drawpile_ru.qm
share/drawpile/drawpile/i18n/drawpile_vi.qm
share/drawpile/drawpile/i18n/drawpile_zh.qm
share/drawpile/drawpile/palettes/Breeze.gpl
share/drawpile/drawpile/palettes/DB32.gpl
@ -84,8 +85,11 @@ share/drawpile/drawpile/theme/dark/object-flip-vertical.svg
share/drawpile/drawpile/theme/dark/object-locked.svg
share/drawpile/drawpile/theme/dark/object-rotate-left.svg
share/drawpile/drawpile/theme/dark/object-rotate-right.svg
share/drawpile/drawpile/theme/dark/security-high.svg
share/drawpile/drawpile/theme/dark/security-medium.svg
share/drawpile/drawpile/theme/dark/select-rectangular.svg
share/drawpile/drawpile/theme/dark/transform-rotate.svg
share/drawpile/drawpile/theme/dark/window-pin.svg
share/drawpile/drawpile/theme/dark/zoom-in.svg
share/drawpile/drawpile/theme/dark/zoom-original.svg
share/drawpile/drawpile/theme/dark/zoom-out.svg
@ -153,8 +157,11 @@ share/drawpile/drawpile/theme/light/object-flip-vertical.svg
share/drawpile/drawpile/theme/light/object-locked.svg
share/drawpile/drawpile/theme/light/object-rotate-left.svg
share/drawpile/drawpile/theme/light/object-rotate-right.svg
share/drawpile/drawpile/theme/light/security-high.svg
share/drawpile/drawpile/theme/light/security-medium.svg
share/drawpile/drawpile/theme/light/select-rectangular.svg
share/drawpile/drawpile/theme/light/transform-rotate.svg
share/drawpile/drawpile/theme/light/window-pin.svg
share/drawpile/drawpile/theme/light/zoom-in.svg
share/drawpile/drawpile/theme/light/zoom-original.svg
share/drawpile/drawpile/theme/light/zoom-out.svg

View file

@ -30,7 +30,8 @@ LIB_DEPENDS= libImath.so:graphics/ilmbase \
libxcb.so:x11/libxcb \
libxcb-util.so:x11/xcb-util
USES= cmake compiler:c++11-lib desktop-file-utils \
# Disable ninja generator for now (with gmake), until the duplicate test targets are resolved upstream.
USES= cmake:noninja gmake compiler:c++11-lib desktop-file-utils \
eigen:3 gettext jpeg kde:5 pkgconfig python:3.4+ qt:5 \
shared-mime-info
USE_KDE= archive completion config coreaddons crash guiaddons i18n \

View file

@ -2,10 +2,10 @@
# $FreeBSD$
PORTNAME= netpbm
DISTVERSION= 10.85.03
DISTVERSION= 10.85.04
CATEGORIES= graphics
MASTER_SITES= https://github.com/t6/netpbm/releases/download/v${DISTVERSION}/ \
https://gitlab.com/tobiask/netpbm/uploads/b3d36b002ae7b3dc7ef42449bb612e12/ \
https://gitlab.com/tobiask/netpbm/uploads/fcb7f739c80416c8b3a05dba6626455e/ \
LOCAL/tobik
MAINTAINER= tobik@FreeBSD.org

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1551439741
SHA256 (netpbm-10.85.03.tar.gz) = 910c9f5168ff36aebca0ae6765741070a99c8d4db8e20edd8d10560cbd4676d2
SIZE (netpbm-10.85.03.tar.gz) = 3303404
TIMESTAMP = 1552191086
SHA256 (netpbm-10.85.04.tar.gz) = 3066a9b3f9c0622f758d1ba9ac23666fa3c69a02357e21658481def9deef8aa5
SIZE (netpbm-10.85.04.tar.gz) = 3303647

View file

@ -3,7 +3,7 @@
PORTNAME= opencv
PORTVERSION= 3.4.1
PORTREVISION= 13
PORTREVISION= 14
CATEGORIES= graphics
MAINTAINER= ports@FreeBSD.org

View file

@ -4,7 +4,7 @@ PORTNAME= vv
DISTVERSIONPREFIX= v
DISTVERSION= 1.4.0-271
DISTVERSIONSUFFIX= -g24b75af3
PORTREVISION= 4
PORTREVISION= 5
CATEGORIES= graphics
MAINTAINER= yuri@FreeBSD.org

View file

@ -62,9 +62,7 @@ CONFIGURE_TARGET= x86_64-portbld-${OPSYS:tl}${OSREL}
.elif ${ARCH} == powerpc64
CONFIGURE_ENV+= UNAME_m="powerpc64"
USE_GCC= 5 # This port requires at least GCC 4.9, and we need
# to ensure not to cause a dependency on itself (so
# USE_GCC=yes or USE_GCC=X+ are not an option).
MAKE_ARGS+= CFLAGS_FOR_TARGET="-O1" CXXFLAGS_FOR_TARGET="-O1" BOOT_CFLAGS="-O1" # PR235975
.elif ${ARCH} == powerpcspe
CONFIGURE_ARGS+= --with-cpu=8548 --enable-e500_double --without-fp
@ -143,8 +141,8 @@ post-stage:
${RM} ${WRKDIR}/PLIST.lib
.if ${ARCH} == powerpc64 && ${PORT_OPTIONS:MMULTILIB}
${MKDIR} ${STAGEDIR}${TARGLIB32}/gcc${SUFFIX}
${MV} ${STAGEDIR}${PREFIX}/lib/lib32/* ${STAGEDIR}${TARGLIB32}/gcc${SUFFIX}
${MKDIR} ${STAGEDIR}${TARGLIB32}
${MV} ${STAGEDIR}${PREFIX}/lib/lib32 ${STAGEDIR}${TARGLIB32}/gcc${SUFFIX}
.endif
.for d in ${TARGLIB:S/^${PREFIX}\///} ${TARGLIB32:S/^${PREFIX}\///} ${LIBEXEC:S/^${PREFIX}\///}

View file

@ -13,6 +13,9 @@ COMMENT= Simple command line calculator
LICENSE= BSD2CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
NOT_FOR_ARCHS= powerpc powerpc64 powerpcspe
NOT_FOR_ARCHS_REASON= Must define endianness
USES= gmake
USE_LDCONFIG= ${PREFIX}/lib/${PORTNAME}
HAS_CONFIGURE= yes

View file

@ -2,6 +2,7 @@
PORTNAME= dynare
DISTVERSION= 4.5.7
PORTREVISION= 1
CATEGORIES= math
MASTER_SITES= http://www.dynare.org/release/source/

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-actuarial
PORTVERSION= 1.1.0
PORTREVISION= 19
PORTREVISION= 20
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-bim
PORTVERSION= 1.1.5
PORTREVISION= 11
PORTREVISION= 12
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-bioinfo
PORTVERSION= 0.1.2
PORTREVISION= 22
PORTREVISION= 23
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-bsltl
PORTVERSION= 1.1.1
PORTREVISION= 8
PORTREVISION= 9
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-cgi
PORTVERSION= 0.1.2
PORTREVISION= 10
PORTREVISION= 11
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-civil-engineering
PORTVERSION= 1.0.7
PORTREVISION= 22
PORTREVISION= 23
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-control
PORTVERSION= 3.1.0
PORTREVISION= 5
PORTREVISION= 6
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-data-smoothing
PORTVERSION= 1.3.0
PORTREVISION= 16
PORTREVISION= 17
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -12,6 +12,8 @@ COMMENT= Octave-forge package ${OCTAVE_PKGNAME}
LICENSE= GPLv3
LICENSE_FILE= ${WRKDIR}/${OCTSRC}/COPYING
BROKEN= requires octave-forge-database which is broken
RUN_DEPENDS+= ${TARBALLS_DIR}/struct.tar.gz:math/octave-forge-struct
# OCTSRC is the name of the directory of the package.

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-dataframe
PORTVERSION= 1.2.0
PORTREVISION= 8
PORTREVISION= 9
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-dicom
PORTVERSION= 0.2.1
PORTREVISION= 6
PORTREVISION= 7
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org
@ -12,6 +12,8 @@ COMMENT= Octave-forge package ${OCTAVE_PKGNAME}
LICENSE= GPLv3
LICENSE_FILE= ${WRKDIR}/${OCTSRC}/COPYING
BROKEN= does not build with octave>=5.1.0
LIB_DEPENDS+= libgdcmCommon.so:devel/gdcm
# OCTSRC is the name of the directory of the package.

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-divand
PORTVERSION= 1.1.2
PORTREVISION= 12
PORTREVISION= 13
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-doctest
PORTVERSION= 0.6.1
PORTREVISION= 6
PORTREVISION= 7
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -12,6 +12,8 @@ COMMENT= Octave-forge package ${OCTAVE_PKGNAME}
LICENSE= GPLv3
LICENSE_FILE= ${WRKDIR}/${OCTSRC}/COPYING
BROKEN= depends upon octave-forge-optim which is broken
# OCTSRC is the name of the directory of the package.
# It is usually ${OCTAVE_PKGNAME} or ${DISTNAME}.
OCTSRC= ${OCTAVE_PKGNAME}

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-fenv
PORTVERSION= 0.1.0
PORTREVISION= 19
PORTREVISION= 20
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-financial
PORTVERSION= 0.5.3
PORTREVISION= 2
PORTREVISION= 3
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-fits
PORTVERSION= 1.0.7
PORTREVISION= 8
PORTREVISION= 9
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org
@ -12,6 +12,8 @@ COMMENT= Octave-forge package ${OCTAVE_PKGNAME}
LICENSE= GPLv3
LICENSE_FILE= ${WRKDIR}/${OCTSRC}/COPYING
BROKEN= does not build with octave>=5.1.0
# OCTSRC is the name of the directory of the package.
# It is usually ${OCTAVE_PKGNAME} or ${DISTNAME}.
OCTSRC= ${DISTNAME}

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-fpl
PORTVERSION= 1.3.5
PORTREVISION= 11
PORTREVISION= 12
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-fuzzy-logic-toolkit
PORTVERSION= 0.4.5
PORTREVISION= 12
PORTREVISION= 13
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-ga
PORTVERSION= 0.10.0
PORTREVISION= 16
PORTREVISION= 17
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-general
PORTVERSION= 2.1.0
PORTREVISION= 4
PORTREVISION= 5
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-generate_html
PORTVERSION= 0.3.1
PORTREVISION= 8
PORTREVISION= 9
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-geometry
PORTVERSION= 3.0.0
PORTREVISION= 8
PORTREVISION= 9
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-gnuplot
PORTVERSION= 1.0.1
PORTREVISION= 19
PORTREVISION= 20
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-gsl
PORTVERSION= 2.1.1
PORTREVISION= 4
PORTREVISION= 5
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-ident
PORTVERSION= 1.0.7
PORTREVISION= 22
PORTREVISION= 23
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-image
PORTVERSION= 2.10.0
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-informationtheory
PORTVERSION= 0.1.8
PORTREVISION= 22
PORTREVISION= 23
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-integration
PORTVERSION= 1.0.7
PORTREVISION= 22
PORTREVISION= 23
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-interval
PORTVERSION= 3.2.0
PORTREVISION= 4
PORTREVISION= 5
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-io
PORTVERSION= 2.4.12
PORTREVISION= 2
PORTREVISION= 3
PORTEPOCH= 1
CATEGORIES= math

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-irsa
PORTVERSION= 1.0.7
PORTREVISION= 22
PORTREVISION= 23
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-level-set
PORTVERSION= 0.3.0
PORTREVISION= 11
PORTREVISION= 12
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -10,6 +10,8 @@ CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org
COMMENT= Octave-forge package ${OCTAVE_PKGNAME}
BROKEN= does not build with octave>=5.1.0
# OCTSRC is the name of the directory of the package.
# It is usually ${OCTAVE_PKGNAME} or ${DISTNAME}.
OCTSRC= ${OCTAVE_PKGNAME}

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-lssa
PORTVERSION= 0.1.3
PORTREVISION= 4
PORTREVISION= 5
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-ltfat
PORTVERSION= 2.3.1
PORTREVISION= 4
PORTREVISION= 5
PORTEPOCH= 1
CATEGORIES= math

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-mapping
PORTVERSION= 1.2.1
PORTREVISION= 10
PORTREVISION= 11
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -12,6 +12,8 @@ COMMENT= Octave-forge package ${OCTAVE_PKGNAME}
LICENSE= GPLv3
LICENSE_FILE= ${WRKDIR}/${OCTSRC}/COPYING
BROKEN= depends upon octave-forge-linear-algebra which is broken
RUN_DEPENDS+= ${TARBALLS_DIR}/general.tar.gz:math/octave-forge-general
RUN_DEPENDS+= ${TARBALLS_DIR}/geometry.tar.gz:math/octave-forge-geometry
RUN_DEPENDS+= ${TARBALLS_DIR}/linear-algebra.tar.gz:math/octave-forge-linear-algebra

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-miscellaneous
PORTVERSION= 1.2.1
PORTREVISION= 12
PORTREVISION= 13
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-missing-functions
PORTVERSION= 1.0.2
PORTREVISION= 22
PORTREVISION= 23
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-msh
PORTVERSION= 1.0.10
PORTREVISION= 13
PORTREVISION= 14
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-multicore
PORTVERSION= 0.2.15
PORTREVISION= 22
PORTREVISION= 23
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-mvn
PORTVERSION= 1.1.0
PORTREVISION= 14
PORTREVISION= 15
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-nan
PORTVERSION= 3.1.4
PORTREVISION= 8
PORTREVISION= 9
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-ncarray
PORTVERSION= 1.0.4
PORTREVISION= 8
PORTREVISION= 9
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-netcdf
PORTVERSION= 1.0.12
PORTREVISION= 6
PORTREVISION= 7
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-nlwing2
PORTVERSION= 1.2.0
PORTREVISION= 19
PORTREVISION= 20
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-nnet
PORTVERSION= 0.1.13
PORTREVISION= 19
PORTREVISION= 20
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-nurbs
PORTVERSION= 1.3.13
PORTREVISION= 8
PORTREVISION= 9
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-oct2mat
PORTVERSION= 1.0.7
PORTREVISION= 22
PORTREVISION= 23
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-octclip
PORTVERSION= 1.0.8
PORTREVISION= 12
PORTREVISION= 13
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-octproj
PORTVERSION= 1.1.5
PORTREVISION= 12
PORTREVISION= 13
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-odebvp
PORTVERSION= 1.0.6
PORTREVISION= 22
PORTREVISION= 23
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

View file

@ -3,7 +3,7 @@
PORTNAME= octave-forge-optics
PORTVERSION= 0.1.3
PORTREVISION= 11
PORTREVISION= 12
CATEGORIES= math
MAINTAINER= stephen@FreeBSD.org

Some files were not shown because too many files have changed in this diff Show more