Skip to content
Commits on Source (4)
insighttoolkit4 (4.12.2-dfsg1-4) unstable; urgency=medium
* d/rules: Remove build dir right after installation
-- Gert Wollny <gewo@debian.org> Tue, 28 Aug 2018 16:27:47 +0200
insighttoolkit4 (4.12.2-dfsg1-3) unstable; urgency=medium
* d/control*, d/rules: Fix python dependencies, Closes: #906230
-- Gert Wollny <gewo@debian.org> Mon, 27 Aug 2018 20:18:54 +0200
insighttoolkit4 (4.12.2-dfsg1-2) unstable; urgency=medium
* d/p/remove_gcc_version_test.patch Closes: #897899
......
......@@ -21,6 +21,7 @@ Build-Depends: debhelper (>= 9),
libminc-dev,
libnifti-dev,
libhdf5-dev,
dh-python,
python-all-dev
# libvtk6-dev -- only needed if we enable one of the following modules:
# VtkGlue, LevelSetsv4Visualization
......@@ -90,7 +91,7 @@ Description: Image processing toolkit for registration and segmentation - exampl
Package: insighttoolkit4-python
Section: python
Architecture: amd64 i386
Depends: ${misc:Depends}, ${shlibs:Depends}
Depends: ${misc:Depends}, ${shlibs:Depends}, ${python:Depends}
Conflicts: insighttoolkit-python
Replaces: insighttoolkit-python
Description: Image processing toolkit for registration and segmentation - Python bindings
......
......@@ -21,6 +21,7 @@ Build-Depends: debhelper (>= 9),
libminc-dev,
libnifti-dev,
libhdf5-dev,
dh-python,
python-all-dev
# libvtk6-dev -- only needed if we enable one of the following modules:
# VtkGlue, LevelSetsv4Visualization
......@@ -90,7 +91,7 @@ Description: Image processing toolkit for registration and segmentation - exampl
Package: insighttoolkit@VER_MAJOR@-python
Section: python
Architecture: amd64 i386
Depends: ${misc:Depends}, ${shlibs:Depends}
Depends: ${misc:Depends}, ${shlibs:Depends}, ${python:Depends}
Conflicts: insighttoolkit-python
Replaces: insighttoolkit-python
Description: Image processing toolkit for registration and segmentation - Python bindings
......
......@@ -81,7 +81,7 @@ pkg_python = insighttoolkit$(VER_MAJOR)-python
%:
dh $@ --builddir=BUILD --parallel
dh $@ --builddir=BUILD --parallel --with python2
override_dh_auto_configure-indep:
......@@ -110,6 +110,7 @@ override_dh_makeshlibs:
override_dh_install-indep:
override_dh_install-arch:
rm -rf BUILD
# pkg_lib
dh_install -p$(pkg_lib) -XJava -XPython -XTcl debian/tmp/usr/lib/lib*.so.* usr/lib
cp CMake/InsightValgrind.supp Insight$(SOVERSION)Valgrind.supp
......@@ -135,7 +136,7 @@ ifeq ($(ENABLE_PYTHON),1)
dh_install -p$(pkg_python) debian/tmp/usr/lib/python2.7/* usr/lib/python2.7/
endif
# remove build directory to save space
rm -rf BUILD debian/tmp
rm -rf debian/tmp
override_dh_installexamples:
# pkg_examples
......