View | Details | Raw Unified | Return to bug 203479 | Differences between
and this patch

Collapse All | Expand All

(-)devel/gdcm/Makefile (-42 / +41 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	gdcm
4
PORTNAME=	gdcm
5
PORTVERSION=	${GDCM_MAJOR}.${GDCM_MINOR}.${GDCM_PATCH}
5
PORTVERSION=	${GDCM_MAJOR}.${GDCM_MINOR}.${GDCM_PATCH}
6
PORTREVISION=	2
7
CATEGORIES=	devel
6
CATEGORIES=	devel
8
MASTER_SITES=	SF/gdcm/gdcm%202.x/GDCM%20${PORTVERSION}
7
MASTER_SITES=	SF/gdcm/gdcm%202.x/GDCM%20${PORTVERSION}
9
8
Lines 15-85 Link Here
15
LIB_DEPENDS=	libopenjpeg.so:${PORTSDIR}/graphics/openjpeg15 \
14
LIB_DEPENDS=	libopenjpeg.so:${PORTSDIR}/graphics/openjpeg15 \
16
   		libexpat.so:${PORTSDIR}/textproc/expat2
15
   		libexpat.so:${PORTSDIR}/textproc/expat2
17
16
18
OPTIONS_DEFINE=		DOCS
17
USES=		alias cmake:outsource tar:bzip2
19
OPTIONS_UNSET=		DOCS
18
USE_OPENSSL=	yes
19
CMAKE_ARGS=	-DGDCM_USE_SYSTEM_OPENSSL:BOOL=ON \
20
		-DGDCM_USE_SYSTEM_EXPAT:BOOL=ON \
21
		-DGDCM_USE_SYSTEM_OPENJPEG:BOOL=ON \
22
		-DGDCM_USE_SYSTEM_ZLIB:BOOL=ON \
23
		-DGDCM_BUILD_APPLICATIONS:BOOL=ON \
24
    		-DGDCM_BUILD_SHARED_LIBS:BOOL=ON \
25
		-DGDCM_BUILD_EXAMPLES:BOOL=OFF \
26
		-DGDCM_INSTALL_DATA_DIR:PATH=${DATADIR_REL}
27
USE_LDCONFIG=	yes
28
29
CFLAGS+=	-I${LOCALBASE}/include
30
31
PLIST_SUB=	GDCM_MAJOR="${GDCM_MAJOR}" \
32
		GDCM_MINOR="${GDCM_MINOR}" \
33
		GDCM_PATCH="${GDCM_PATCH}"
34
35
OPTIONS_DEFINE=		DOXYGEN
20
OPTIONS_RADIO=		VTK
36
OPTIONS_RADIO=		VTK
21
OPTIONS_RADIO_VTK=	VTK5 VTK6
37
OPTIONS_RADIO_VTK=	VTK5 VTK6
38
OPTIONS_SUB=		yes
22
39
40
DOXYGEN_BUILD_DEPENDS=	doxygen:${PORTSDIR}/devel/doxygen \
41
			docbook-xsl-ns>0:${PORTSDIR}/textproc/docbook-xsl-ns
42
DOXYGEN_USES=		ghostscript
43
DOXYGEN_USE=		gnome=libxslt:build tex=latex:build
44
DOXYGEN_CMAKE_ON=	-DGDCM_DOCUMENTATION:BOOL=ON \
45
			-DGDCM_PDF_DOCUMENTATION:BOOL=OFF \
46
			-DGDCM_INSTALL_MAN_DIR:PATH=man \
47
			-DGDCM_INSTALL_DOC_DIR:PATH=${DOCSDIR_REL}
48
DOXYGEN_CMAKE_OFF=	-DGDCM_DOCUMENTATION:BOOL=OFF
23
VTK5_DESC=		Build VTK 5 integration classes
49
VTK5_DESC=		Build VTK 5 integration classes
24
VTK5_LIB_DEPENDS=	libvtkHybrid.so:${PORTSDIR}/math/vtk5
50
VTK5_LIB_DEPENDS=	libvtkHybrid.so:${PORTSDIR}/math/vtk5
25
VTK5_CMAKE_ON=		-DGDCM_USE_VTK:BOOL=YES \
51
VTK5_CMAKE_ON=		-DGDCM_USE_VTK:BOOL=ON \
26
			-DVTK_DIR:PATH=${LOCALBASE}/lib/vtk-${VTK5_VERSION}
52
			-DVTK_DIR:PATH=${LOCALBASE}/lib/vtk-${VTK5_VERSION}
27
28
VTK6_DESC=		Build VTK 6 integration classes
53
VTK6_DESC=		Build VTK 6 integration classes
29
VTK6_LIB_DEPENDS=	libvtkCommonCore-${VTK6_VERSION}.so:${PORTSDIR}/math/vtk6
54
VTK6_LIB_DEPENDS=	libvtkCommonCore-${VTK6_VERSION}.so:${PORTSDIR}/math/vtk6
30
VTK6_CMAKE_ON=		-DGDCM_USE_VTK:BOOL=YES \
55
VTK6_CMAKE_ON=		-DGDCM_USE_VTK:BOOL=ON \
31
			-DVTK_DIR:PATH=${LOCALBASE}/lib/vtk-${VTK6_VERSION}
56
			-DVTK_DIR:PATH=${LOCALBASE}/lib/vtk-${VTK6_VERSION}
32
57
33
# Change this when updating the port
58
# Change this when updating the port
34
GDCM_MAJOR=	2
59
GDCM_MAJOR=	2
35
GDCM_MINOR=	4
60
GDCM_MINOR=	6
36
GDCM_PATCH=	4
61
GDCM_PATCH=	3
37
62
38
# Change this whenever VTK is updated
63
# Change this whenever VTK is updated
39
VTK5_VERSION=	5.10
64
VTK5_VERSION=	5.10
40
VTK6_VERSION=	6.2
65
VTK6_VERSION=	6.2
41
66
42
USES=		alias cmake:outsource tar:bzip2
43
USE_OPENSSL=	yes
44
USE_LDCONFIG=	${PREFIX}/lib
45
CFLAGS+=	-I${LOCALBASE}/include
46
CMAKE_ARGS+=	-DGDCM_PDF_DOCUMENTATION:BOOL=NO \
47
   		-DGDCM_USE_SYSTEM_OPENSSL:BOOL=YES \
48
		-DGDCM_USE_SYSTEM_EXPAT:BOOL=YES \
49
		-DGDCM_USE_SYSTEM_OPENJPEG:BOOL=YES \
50
		-DGDCM_USE_SYSTEM_ZLIB:BOOL=YES \
51
		-DGDCM_BUILD_APPLICATIONS:BOOL=YES \
52
    		-DGDCM_BUILD_SHARED_LIBS:BOOL=YES \
53
		-DGDCM_BUILD_EXAMPLES:BOOL=NO \
54
		-DGDCM_INSTALL_DATA_DIR:STRING=${DATADIR}
55
56
.include <bsd.port.options.mk>
67
.include <bsd.port.options.mk>
57
68
58
.if ${PORT_OPTIONS:MVTK5} || ${PORT_OPTIONS:MVTK6}
69
.if ${PORT_OPTIONS:MVTK5} || ${PORT_OPTIONS:MVTK6}
70
DESKTOP_ENTRIES="Gdcmviewer" "Simple DICOM Viewer" "" "gdcmviewer" "" ""
59
PLIST_SUB+=	VTK=""
71
PLIST_SUB+=	VTK=""
60
.else
72
.else
61
PLIST_SUB+=	VTK="@comment "
73
PLIST_SUB+=	VTK="@comment "
62
.endif
74
.endif
63
75
64
PLIST_SUB+=	GDCM_MAJOR="${GDCM_MAJOR}" \
76
pre-build-DOXYGEN-on:
65
		GDCM_MINOR="${GDCM_MINOR}" \
77
	(cd ${WRKSRC}/Utilities/doxygen \
66
		GDCM_PATCH="${GDCM_PATCH}"
78
		&& ${LOCALBASE}/bin/doxygen -u doxyfile.in)
67
79
68
.if ${PORT_OPTIONS:MDOCS}
80
post-install-DOXYGEN-on:
69
USE_TEX=	latex:build
81
	@(${FIND} ${STAGEDIR}${DOCSDIR} -type f | ${SED} -e \
70
USES+=		ghostscript
82
		"s|^${STAGEDIR}${PREFIX}/||" >> ${TMPPLIST})
71
BUILD_DEPENDS+=	doxygen:${PORTSDIR}/devel/doxygen
72
CMAKE_ARGS+=	-DGDCM_DOCUMENTATION:BOOL=YES \
73
		-DGDCM_INSTALL_MAN_DIR:STRING=man \
74
		-DGDCM_INSTALL_DOC_DIR:STRING=${DOCSDIR}
75
PORTDOCS=	*
76
.else
77
CMAKE_ARGS+=	-DGDCM_DOCUMENTATION:BOOL=NO
78
.endif
79
80
post-build:
81
.if ${PORT_OPTIONS:MDOCS}
82
	cd ${WRKSRC}/Utilities/doxygen && ${LOCALBASE}/bin/doxygen -u doxyfile.in
83
.endif
84
83
85
.include <bsd.port.mk>
84
.include <bsd.port.mk>
(-)devel/gdcm/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (gdcm-2.4.4.tar.bz2) = c5cd2f43a16180f5a9ecd5211bf214971b0620e9d9e027c2e11a89c4ce7d5b1f
1
SHA256 (gdcm-2.6.3.tar.bz2) = 7882e880b8b60efc66a492ae3c1c161799340ad62a90d690823b76eb400c0a8f
2
SIZE (gdcm-2.4.4.tar.bz2) = 4397720
2
SIZE (gdcm-2.6.3.tar.bz2) = 3680016
(-)devel/gdcm/files/patch-CMakeLists.txt (-6 / +6 lines)
Lines 1-11 Link Here
1
--- CMakeLists.txt.orig	2012-01-02 12:11:48.000000000 +0100
1
--- CMakeLists.txt.orig	2015-08-22 14:09:50 UTC
2
+++ CMakeLists.txt	2012-01-02 12:13:50.000000000 +0100
2
+++ CMakeLists.txt
3
@@ -45,7 +45,7 @@
3
@@ -53,7 +53,7 @@ if(NOT DEFINED GDCM_API_VERSION)
4
   "${GDCM_MAJOR_VERSION}.${GDCM_MINOR_VERSION}")
4
 endif()
5
 SET(GDCM_LIBRARY_PROPERTIES ${GDCM_LIBRARY_PROPERTIES}
5
 set(GDCM_LIBRARY_PROPERTIES ${GDCM_LIBRARY_PROPERTIES}
6
   VERSION "${GDCM_VERSION}"
6
   VERSION "${GDCM_VERSION}"
7
-  SOVERSION "${GDCM_API_VERSION}"
7
-  SOVERSION "${GDCM_API_VERSION}"
8
+  SOVERSION "${GDCM_MAJOR_VERSION}"
8
+  SOVERSION "${GDCM_MAJOR_VERSION}"
9
 )
9
 )
10
 #SET(GDCM_EXECUTABLE_PROPERTIES ${GDCM_EXECUTABLE_PROPERTIES}
10
 #set(GDCM_EXECUTABLE_PROPERTIES ${GDCM_EXECUTABLE_PROPERTIES}
11
 #  VERSION "${GDCM_MAJOR_VERSION}.${GDCM_MINOR_VERSION}"
11
 #  VERSION "${GDCM_MAJOR_VERSION}.${GDCM_MINOR_VERSION}"
(-)devel/gdcm/files/patch-CMake_FindOpenJPEG.cmake (-3 / +3 lines)
Lines 1-5 Link Here
1
--- CMake/FindOpenJPEG.cmake.orig	2014-04-03 09:33:49.000000000 +0200
1
--- CMake/FindOpenJPEG.cmake.orig	2015-08-22 14:09:50 UTC
2
+++ CMake/FindOpenJPEG.cmake	2014-06-10 09:34:13.000000000 +0200
2
+++ CMake/FindOpenJPEG.cmake
3
@@ -18,7 +18,15 @@
3
@@ -18,7 +18,15 @@
4
 # (To distribute this file outside of CMake, substitute the full
4
 # (To distribute this file outside of CMake, substitute the full
5
 #  License text for the above reference.)
5
 #  License text for the above reference.)
Lines 17-23 Link Here
17
 find_package(OpenJPEG QUIET NO_MODULE)
17
 find_package(OpenJPEG QUIET NO_MODULE)
18
 
18
 
19
 if( NOT OpenJPEG_DIR )
19
 if( NOT OpenJPEG_DIR )
20
@@ -51,3 +59,4 @@
20
@@ -51,3 +59,4 @@ mark_as_advanced(
21
   OPENJPEG_INCLUDE_DIR
21
   OPENJPEG_INCLUDE_DIR
22
   )
22
   )
23
 endif()
23
 endif()
(-)devel/gdcm/files/patch-Source-DataDictionary_gdcmGlobal.cxx (-11 lines)
Lines 1-11 Link Here
1
--- Source/DataDictionary/gdcmGlobal.cxx.orig	2011-07-07 09:11:27.000000000 +0200
2
+++ Source/DataDictionary/gdcmGlobal.cxx	2011-07-07 09:11:56.000000000 +0200
3
@@ -45,7 +45,7 @@
4
   void LoadDefaultPaths()
5
     {
6
     assert( RessourcePaths.empty() );
7
-    const char filename2[] = GDCM_CMAKE_INSTALL_PREFIX "/" GDCM_INSTALL_DATA_DIR "/XML/";
8
+    const char filename2[] = GDCM_INSTALL_DATA_DIR "/XML/";
9
     RessourcePaths.push_back( filename2 );
10
     const char *curprocfn = System::GetCurrentProcessFileName();
11
     if( curprocfn )
(-)devel/gdcm/files/patch-Source-InformationObjectDefinition_CMakeLists.txt (-10 lines)
Lines 1-10 Link Here
1
--- Source/InformationObjectDefinition/CMakeLists.txt.orig	2012-09-21 12:05:25.000000000 +0200
2
+++ Source/InformationObjectDefinition/CMakeLists.txt	2012-09-21 12:05:39.000000000 +0200
3
@@ -37,6 +37,7 @@
4
   "${GDCM_SOURCE_DIR}/Source/DataStructureAndEncodingDefinition"
5
   "${GDCM_SOURCE_DIR}/Source/DataDictionary"
6
   "${GDCM_SOURCE_DIR}/Utilities"
7
+  "${EXPAT_INCLUDE_DIR}"
8
   )
9
 
10
 ADD_LIBRARY(gdcmIOD ${IOD_SRCS})
(-)devel/gdcm/files/patch-Utilities-gdcmjpeg_CMakeLists.txt (-5 / +5 lines)
Lines 1-8 Link Here
1
--- Utilities/gdcmjpeg/CMakeLists.txt.orig	2012-09-19 15:48:46.000000000 +0200
1
--- Utilities/gdcmjpeg/CMakeLists.txt.orig	2015-08-22 14:09:50 UTC
2
+++ Utilities/gdcmjpeg/CMakeLists.txt	2012-09-19 15:49:31.000000000 +0200
2
+++ Utilities/gdcmjpeg/CMakeLists.txt
3
@@ -23,7 +23,7 @@
3
@@ -24,7 +24,7 @@ if(NOT DEFINED JPEG_API_VERSION)
4
 ENDIF(NOT DEFINED JPEG_API_VERSION)
4
 endif()
5
 SET(JPEG_LIBRARY_PROPERTIES ${JPEG_LIBRARY_PROPERTIES}
5
 set(JPEG_LIBRARY_PROPERTIES ${JPEG_LIBRARY_PROPERTIES}
6
   VERSION "${GDCM_VERSION}"
6
   VERSION "${GDCM_VERSION}"
7
-  SOVERSION "${JPEG_API_VERSION}"
7
-  SOVERSION "${JPEG_API_VERSION}"
8
+  SOVERSION "${GDCM_MAJOR_VERSION}"
8
+  SOVERSION "${GDCM_MAJOR_VERSION}"
(-)devel/gdcm/pkg-descr (-4 / +5 lines)
Lines 1-6 Link Here
1
GDCM is an open source DICOM library. It is meant to deal with DICOM files
1
GDCM is an open source DICOM library. It is meant to deal with DICOM
2
(as specified in part 10 of the DICOM standard). It offers some compatibility
2
files (as specified in part 10 of the DICOM standard). It offers some
3
with ACR-NEMA 1.0 & 2.0 files (raw files). It is written in C++ and offers
3
compatibility with ACR-NEMA 1.0 & 2.0 files (raw files). It is written
4
wrapping to other target languages such as Python, C#, Java and PHP.
4
in C++ and offers wrapping to other target languages such as Python, C#,
5
Java and PHP.
5
6
6
WWW: http://gdcm.sourceforge.net/
7
WWW: http://gdcm.sourceforge.net/
(-)devel/gdcm/pkg-plist (-24 / +39 lines)
Lines 1-3 Link Here
1
%%VTK%%bin/gdcm2pnm
2
%%VTK%%bin/gdcm2vtk
1
bin/gdcmanon
3
bin/gdcmanon
2
bin/gdcmconv
4
bin/gdcmconv
3
bin/gdcmdiff
5
bin/gdcmdiff
Lines 10-36 Link Here
10
bin/gdcmscanner
12
bin/gdcmscanner
11
bin/gdcmscu
13
bin/gdcmscu
12
bin/gdcmtar
14
bin/gdcmtar
13
bin/gdcmxml
14
%%PORTDOCS%%man/man1/gdcm2pnm.1.gz
15
%%PORTDOCS%%man/man1/gdcm2vtk.1.gz
16
%%PORTDOCS%%man/man1/gdcmanon.1.gz
17
%%PORTDOCS%%man/man1/gdcmconv.1.gz
18
%%PORTDOCS%%man/man1/gdcmdiff.1.gz
19
%%PORTDOCS%%man/man1/gdcmdump.1.gz
20
%%PORTDOCS%%man/man1/gdcmgendir.1.gz
21
%%PORTDOCS%%man/man1/gdcmimg.1.gz
22
%%PORTDOCS%%man/man1/gdcminfo.1.gz
23
%%PORTDOCS%%man/man1/gdcmpap3.1.gz
24
%%PORTDOCS%%man/man1/gdcmpdf.1.gz
25
%%PORTDOCS%%man/man1/gdcmraw.1.gz
26
%%PORTDOCS%%man/man1/gdcmscanner.1.gz
27
%%PORTDOCS%%man/man1/gdcmscu.1.gz
28
%%PORTDOCS%%man/man1/gdcmtar.1.gz
29
%%PORTDOCS%%man/man1/gdcmviewer.1.gz
30
%%PORTDOCS%%man/man1/gdcmxml.1.gz
31
%%VTK%%bin/gdcmviewer
15
%%VTK%%bin/gdcmviewer
32
%%VTK%%bin/gdcm2pnm
16
bin/gdcmxml
33
%%VTK%%bin/gdcm2vtk
17
%%DOXYGEN%%man/man1/gdcm2pnm.1.gz
18
%%DOXYGEN%%man/man1/gdcm2vtk.1.gz
19
%%DOXYGEN%%man/man1/gdcmanon.1.gz
20
%%DOXYGEN%%man/man1/gdcmconv.1.gz
21
%%DOXYGEN%%man/man1/gdcmdiff.1.gz
22
%%DOXYGEN%%man/man1/gdcmdump.1.gz
23
%%DOXYGEN%%man/man1/gdcmgendir.1.gz
24
%%DOXYGEN%%man/man1/gdcmimg.1.gz
25
%%DOXYGEN%%man/man1/gdcminfo.1.gz
26
%%DOXYGEN%%man/man1/gdcmpap3.1.gz
27
%%DOXYGEN%%man/man1/gdcmpdf.1.gz
28
%%DOXYGEN%%man/man1/gdcmraw.1.gz
29
%%DOXYGEN%%man/man1/gdcmscanner.1.gz
30
%%DOXYGEN%%man/man1/gdcmscu.1.gz
31
%%DOXYGEN%%man/man1/gdcmtar.1.gz
32
%%DOXYGEN%%man/man1/gdcmviewer.1.gz
33
%%DOXYGEN%%man/man1/gdcmxml.1.gz
34
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmAAbortPDU.h
34
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmAAbortPDU.h
35
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmAAssociateACPDU.h
35
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmAAssociateACPDU.h
36
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmAAssociateRJPDU.h
36
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmAAssociateRJPDU.h
Lines 49-55 Link Here
49
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmAudioCodec.h
49
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmAudioCodec.h
50
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmBase64.h
50
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmBase64.h
51
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmBaseCompositeMessage.h
51
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmBaseCompositeMessage.h
52
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmBaseNormalizedMessage.h
52
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmBasePDU.h
53
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmBasePDU.h
54
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmBaseQuery.h
53
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmBaseRootQuery.h
55
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmBaseRootQuery.h
54
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmBasicOffsetTable.h
56
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmBasicOffsetTable.h
55
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmBitmap.h
57
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmBitmap.h
Lines 122-127 Link Here
122
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmFile.h
124
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmFile.h
123
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmFileAnonymizer.h
125
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmFileAnonymizer.h
124
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmFileChangeTransferSyntax.h
126
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmFileChangeTransferSyntax.h
127
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmFileDecompressLookupTable.h
125
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmFileDerivation.h
128
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmFileDerivation.h
126
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmFileExplicitFilter.h
129
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmFileExplicitFilter.h
127
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmFileMetaInformation.h
130
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmFileMetaInformation.h
Lines 181-194 Link Here
181
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmMaximumLengthSub.h
184
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmMaximumLengthSub.h
182
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmMediaStorage.h
185
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmMediaStorage.h
183
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmMeshPrimitive.h
186
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmMeshPrimitive.h
187
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmModalityPerformedProcedureStepCreateQuery.h
188
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmModalityPerformedProcedureStepSetQuery.h
184
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmModule.h
189
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmModule.h
185
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmModuleEntry.h
190
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmModuleEntry.h
186
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmModules.h
191
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmModules.h
187
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmMovePatientRootQuery.h
192
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmMovePatientRootQuery.h
188
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmMoveStudyRootQuery.h
193
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmMoveStudyRootQuery.h
194
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmNActionMessages.h
195
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmNCreateMessages.h
196
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmNDeleteMessages.h
197
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmNEventReportMessages.h
198
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmNGetMessages.h
199
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmNSetMessages.h
189
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmNestedModuleEntries.h
200
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmNestedModuleEntries.h
190
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmNetworkEvents.h
201
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmNetworkEvents.h
191
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmNetworkStateID.h
202
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmNetworkStateID.h
203
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmNormalizedMessageFactory.h
204
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmNormalizedNetworkFunctions.h
192
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmObject.h
205
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmObject.h
193
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmOpenSSLCryptoFactory.h
206
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmOpenSSLCryptoFactory.h
194
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmOpenSSLCryptographicMessageSyntax.h
207
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmOpenSSLCryptographicMessageSyntax.h
Lines 261-266 Link Here
261
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmStaticAssert.h
274
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmStaticAssert.h
262
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmStreamImageReader.h
275
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmStreamImageReader.h
263
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmStreamImageWriter.h
276
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmStreamImageWriter.h
277
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmStrictScanner.h
264
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmString.h
278
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmString.h
265
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmStringFilter.h
279
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmStringFilter.h
266
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmStudy.h
280
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmStudy.h
Lines 323-328 Link Here
323
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmValueIO.h
337
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmValueIO.h
324
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmValueIO.txx
338
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmValueIO.txx
325
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmVersion.h
339
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmVersion.h
340
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmWLMFindQuery.h
326
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmWaveform.h
341
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmWaveform.h
327
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmWin32.h
342
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmWin32.h
328
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmWriter.h
343
include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/gdcmWriter.h
Lines 410-422 Link Here
410
%%VTK%%include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/vtkImageYBRToRGB.h
425
%%VTK%%include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/vtkImageYBRToRGB.h
411
%%VTK%%include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/vtkLookupTable16.h
426
%%VTK%%include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/vtkLookupTable16.h
412
%%VTK%%include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/vtkRTStructSetProperties.h
427
%%VTK%%include/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/vtkRTStructSetProperties.h
413
lib/libsocketxx.so.1.2.0
414
lib/libsocketxx.so.1.2
415
lib/libsocketxx.so
416
lib/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/GDCMConfig.cmake
428
lib/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/GDCMConfig.cmake
417
lib/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/GDCMConfigVersion.cmake
429
lib/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/GDCMConfigVersion.cmake
418
lib/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/GDCMTargets.cmake
430
lib/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/GDCMTargets.cmake
419
lib/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/GDCMTargets-%%CMAKE_BUILD_TYPE%%.cmake
431
lib/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/GDCMTargets-release.cmake
420
lib/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/UseGDCM.cmake
432
lib/gdcm-%%GDCM_MAJOR%%.%%GDCM_MINOR%%/UseGDCM.cmake
421
lib/libgdcmCommon.so
433
lib/libgdcmCommon.so
422
lib/libgdcmCommon.so.%%GDCM_MAJOR%%
434
lib/libgdcmCommon.so.%%GDCM_MAJOR%%
Lines 451-456 Link Here
451
lib/libgdcmuuid.so
463
lib/libgdcmuuid.so
452
lib/libgdcmuuid.so.%%GDCM_MAJOR%%
464
lib/libgdcmuuid.so.%%GDCM_MAJOR%%
453
lib/libgdcmuuid.so.%%GDCM_MAJOR%%.%%GDCM_MINOR%%.%%GDCM_PATCH%%
465
lib/libgdcmuuid.so.%%GDCM_MAJOR%%.%%GDCM_MINOR%%.%%GDCM_PATCH%%
466
lib/libsocketxx.so
467
lib/libsocketxx.so.1.2
468
lib/libsocketxx.so.1.2.0
454
%%VTK%%lib/libvtkgdcm.so
469
%%VTK%%lib/libvtkgdcm.so
455
%%VTK%%lib/libvtkgdcm.so.%%GDCM_MAJOR%%
470
%%VTK%%lib/libvtkgdcm.so.%%GDCM_MAJOR%%
456
%%VTK%%lib/libvtkgdcm.so.%%GDCM_MAJOR%%.%%GDCM_MINOR%%.%%GDCM_PATCH%%
471
%%VTK%%lib/libvtkgdcm.so.%%GDCM_MAJOR%%.%%GDCM_MINOR%%.%%GDCM_PATCH%%

Return to bug 203479