Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (5)
Set DATDIC in CMakeLists.txt
· c9ffaf88
Gert Wollny
authored
Aug 08, 2018
c9ffaf88
d/p/03: Update DIC install destination
· aaf898ea
Gert Wollny
authored
Aug 09, 2018
aaf898ea
d/rules: Remove install of /etc files that are gone
· a3156448
Gert Wollny
authored
Aug 09, 2018
a3156448
d/ Update SO version to 13
· 04fbfb7f
Gert Wollny
authored
Aug 09, 2018
04fbfb7f
Update changelog
· ba592c93
Gert Wollny
authored
Aug 09, 2018
ba592c93
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
ba592c93
...
...
@@ -4,8 +4,13 @@ dcmtk (3.6.3-1) UNRELEASED; urgency=medium
* d/watch: update link (thanks Pedro Fernando Arizpe Gómez)
* New upstream version 3.6.3
* d/patches: Update patches to apply to new version
* d/ .gitlab-ci.yml: Add this CI file
* Set DATDIC in CMakeLists.txt
* d/p/03: Update DIC install destination
* d/rules: Remove install of /etc files that are gone
* d/ Update SO version to 13
-- Gert Wollny <gewo@debian.org>
Mon
, 0
6
Aug 2018
14:03
:3
0
+0200
-- Gert Wollny <gewo@debian.org>
Thu
, 0
9
Aug 2018
21:32
:3
1
+0200
dcmtk (3.6.2-3) unstable; urgency=medium
...
...
debian/control
View file @
ba592c93
...
...
@@ -38,7 +38,7 @@ Description: OFFIS DICOM toolkit command line utilities
.
Note: This version was compiled with libssl support.
Package: libdcmtk1
2
Package: libdcmtk1
3
Architecture: any
Section: libs
Depends: ${misc:Depends},
...
...
@@ -67,7 +67,7 @@ Depends: libxml2-dev,
libwrap0-dev,
libcharls-dev,
libtiff-dev,
libdcmtk1
2
(= ${binary:Version}),
libdcmtk1
3
(= ${binary:Version}),
${misc:Depends}
Suggests: dcmtk-doc
Breaks: libinsighttoolkit4-dev (<< 4.9.0)
...
...
debian/libdcmtk1
2
.install
→
debian/libdcmtk1
3
.install
View file @
ba592c93
usr
/
lib
/*.
so
.
*
usr
/
share
/
libdcmtk1
2
/*.
dic
usr
/
share
/
libdcmtk1
3
/*.
dic
debian/libdcmtk1
2
.lintian-overrides
→
debian/libdcmtk1
3
.lintian-overrides
View file @
ba592c93
# There is more than one library in one package bundles which makes perfectly
# sense in this application but does not enable naming the library package apropriately
libdcmtk1
2
: package-name-doesnt-match-sonames
libdcmtk1
2
: embedded-library
libdcmtk1
2
: no-symbols-control-file
libdcmtk1
3
: package-name-doesnt-match-sonames
libdcmtk1
3
: embedded-library
libdcmtk1
3
: no-symbols-control-file
debian/patches/03_datadic_install.patch
View file @
ba592c93
...
...
@@ -32,9 +32,11 @@ Author: Mathieu Malaterre <malat@debian.org>
SET(DCM_DICT_DEFAULT_PATH "")
--- a/dcmdata/data/CMakeLists.txt
+++ b/dcmdata/data/CMakeLists.txt
@@ -1,5 +1,
6
@@
@@ -1,5 +1,
8
@@
# declare installation files
-INSTALL(FILES dicom.dic acrnema.dic private.dic diconde.dic dcm2xml.dtd dumppat.txt SC.dump VLP.dump DESTINATION "${CMAKE_INSTALL_DATADIR}/dcmtk" COMPONENT data)
+SET(DCMTK_INSTALL_DATDIR "share/dcmtk${DCMTK_ABI_VERSION}")
+
+INSTALL(FILES dcm2xml.dtd dumppat.txt SC.dump VLP.dump DESTINATION ${DCMTK_INSTALL_DATDIR} COMPONENT data)
+INSTALL(FILES dicom.dic acrnema.dic private.dic diconde.dic DESTINATION ${DCMTK_INSTALL_DATDIC} COMPONENT data)
...
...
debian/rules
View file @
ba592c93
...
...
@@ -38,7 +38,7 @@ CMAKE_EXTRA_FLAGS += -DCMAKE_BUILD_TYPE:STRING=None \
-DDCMTK_WITH_ICONV:BOOL=ON \
-DUSE_COMPILER_HIDDEN_VISIBILITY:BOOL=ON \
-DCMAKE_VERBOSE_MAKEFILE=ON \
-DDCMTK_INSTALL_DATDIC:STRING=share/libdcmtk1
2
\
-DDCMTK_INSTALL_DATDIC:STRING=share/libdcmtk1
3
\
-DCMAKE_SKIP_RPATH:BOOL=OFF \
-DDCMTK_USE_CXX11_STL:BOOL=ON \
-DDCMTK_ENABLE_CXX11:BOOL=ON
...
...
@@ -59,12 +59,6 @@ override_dh_auto_build-indep:
# No tests needed for docs
override_dh_auto_test-indep:
override_dh_auto_install-arch:
dh_auto_install
# ??
mv debian/tmp/usr/etc debian/tmp/
override_dh_auto_install-indep:
DESTDIR=$(CURDIR)/debian/tmp $(MAKE) -C obj-*/doxygen install
DESTDIR=$(CURDIR)/debian/tmp $(MAKE) -C obj-*/dcmwlm/data install
...
...