debian/0000755000000000000000000000000011754427617007204 5ustar debian/source/0000755000000000000000000000000011754427617010504 5ustar debian/source/format0000644000000000000000000000001411540072207011672 0ustar 3.0 (quilt) debian/control0000644000000000000000000000467511754416514010615 0ustar Source: vtkedge Homepage: http://www.vtkedge.org/ Section: science Priority: optional Maintainer: Debian Med Packaging Team DM-Upload-Allowed: yes Uploaders: Mathieu Malaterre Build-Depends: debhelper (>= 8), cmake (>= 2.8.1), libvtk5-dev (>= 5.6), libinsighttoolkit3-dev, qt4-dev-tools, qt4-qmake, libqt4-dev, libqtwebkit-dev | libqt4-dev (<< 4.7) Standards-Version: 3.9.3 Vcs-Browser: http://anonscm.debian.org/viewvc/debian-med/trunk/packages/vtkedge/trunk/ Vcs-Svn: svn://svn.debian.org/debian-med/trunk/packages/vtkedge/trunk/ Package: libvtkedge Section: libs Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: Library of advanced visualization and data processing techniques - runtime VTKEdge is a library of advanced visualization and data processing techniques that complement the Visualization Toolkit (VTK), as well as custom modules to allow the use of these techniques within ParaView. VTKEdge does not replace VTK, but rather is built alongside VTK to provide additional functionality. VTKEdge is available as open source under the BSD licensing terms. This new toolkit was created by Kitware in order to provide the open source visualization community with access to some of our latest technology, while still meeting the commercialization requirements of the government contracts that funded the research and development effort. . This package contains the libraries needed to run VTKEdge applications. Package: libvtkedge-dev Section: libdevel Architecture: any Depends: ${misc:Depends}, libvtkedge (= ${binary:Version}) Description: Library of advanced visualization and data processing techniques - development VTKEdge is a library of advanced visualization and data processing techniques that complement the Visualization Toolkit (VTK), as well as custom modules to allow the use of these techniques within ParaView. VTKEdge does not replace VTK, but rather is built alongside VTK to provide additional functionality. VTKEdge is available as open source under the BSD licensing terms. This new toolkit was created by Kitware in order to provide the open source visualization community with access to some of our latest technology, while still meeting the commercialization requirements of the government contracts that funded the research and development effort. . This package contains the development files needed to build your own VTKEdge applications. debian/libvtkedge-dev.install0000644000000000000000000000020211623477054013455 0ustar usr/lib/VTKEdge/*.cmake usr/CMake/*.cmake usr/lib/VTKEdge/CMake usr/include/VTKEdge/*.h usr/include/VTKEdge/*.txx usr/lib/lib*.so debian/compat0000644000000000000000000000000211540072207010362 0ustar 8 debian/libvtkedge.install0000644000000000000000000000002211347644511012676 0ustar usr/lib/lib*.so.* debian/patches/0000755000000000000000000000000011754427617010633 5ustar debian/patches/private_libs.patch0000644000000000000000000000062011347644511014325 0ustar --- vtkedge-0.1.0.old/CMakeLists.txt 2010-02-26 15:55:47.000000000 +0100 +++ vtkedge-0.1.0/CMakeLists.txt 2010-02-26 15:55:55.000000000 +0100 @@ -109,7 +109,7 @@ endif(NOT VTKEdge_INSTALL_BIN_DIR) if(NOT VTKEdge_INSTALL_LIB_DIR) - set(VTKEdge_INSTALL_LIB_DIR "/lib/${PROJECT_NAME}") + set(VTKEdge_INSTALL_LIB_DIR "/lib/") endif(NOT VTKEdge_INSTALL_LIB_DIR) if(NOT VTKEdge_INSTALL_DATA_DIR) debian/patches/sharedlibs_version.patch0000644000000000000000000001613011546150316015526 0ustar Index: vtkedge-0.1.0~20110403/CMakeLists.txt =================================================================== --- vtkedge-0.1.0~20110403.orig/CMakeLists.txt 2010-04-20 22:41:44.000000000 +0200 +++ vtkedge-0.1.0~20110403/CMakeLists.txt 2011-04-03 21:53:01.000000000 +0200 @@ -44,6 +44,14 @@ set(VTKEdge_VERSION_BUILD 0) set(VTKEdge_VERSION "${VTKEdge_VERSION_MAJOR}.${VTKEdge_VERSION_MINOR}.${VTKEdge_VERSION_BUILD}") +set(VTKEdge_API_VERSION + # This is ITK/VTK/GDCM style where SOVERSION is two numbers... + "${VTKEdge_VERSION_MAJOR}.${VTKEdge_VERSION_MINOR}" + ) +SET(VTKEdge_LIBRARY_PROPERTIES ${VTKEdge_LIBRARY_PROPERTIES} + VERSION "${VTKEdge_VERSION}" + SOVERSION "${VTKEdge_API_VERSION}" +) # ----------------------------------------------------------------------------- # Setup the output paths Index: vtkedge-0.1.0~20110403/Common/CMakeLists.txt =================================================================== --- vtkedge-0.1.0~20110403.orig/Common/CMakeLists.txt 2010-05-17 21:03:25.000000000 +0200 +++ vtkedge-0.1.0~20110403/Common/CMakeLists.txt 2011-04-03 21:53:01.000000000 +0200 @@ -123,6 +123,7 @@ # ----------------------------------------------------------------------------- add_library(vtkKWECommon ${KIT_SRCS}) target_link_libraries(vtkKWECommon ${KIT_LIBS}) +set_target_properties(vtkKWECommon PROPERTIES ${VTKEdge_LIBRARY_PROPERTIES} LINK_INTERFACE_LIBRARIES "") # ----------------------------------------------------------------------------- # Testing Index: vtkedge-0.1.0~20110403/Filtering/CMakeLists.txt =================================================================== --- vtkedge-0.1.0~20110403.orig/Filtering/CMakeLists.txt 2010-04-20 22:41:44.000000000 +0200 +++ vtkedge-0.1.0~20110403/Filtering/CMakeLists.txt 2011-04-03 21:53:01.000000000 +0200 @@ -73,6 +73,7 @@ # ----------------------------------------------------------------------------- add_library(vtkKWEFiltering ${KIT_SRCS} ${KIT_EXTRA_SRCS} ${FilteringInstantiatorFiles}) target_link_libraries(vtkKWEFiltering ${KIT_LIBS}) +set_target_properties(vtkKWEFiltering PROPERTIES ${VTKEdge_LIBRARY_PROPERTIES} LINK_INTERFACE_LIBRARIES "") # ----------------------------------------------------------------------------- Index: vtkedge-0.1.0~20110403/Graphics/CMakeLists.txt =================================================================== --- vtkedge-0.1.0~20110403.orig/Graphics/CMakeLists.txt 2010-04-20 22:41:44.000000000 +0200 +++ vtkedge-0.1.0~20110403/Graphics/CMakeLists.txt 2011-04-03 21:53:01.000000000 +0200 @@ -37,6 +37,7 @@ # ----------------------------------------------------------------------------- add_library(vtkKWEGraphics ${KIT_SRCS}) target_link_libraries(vtkKWEGraphics ${KIT_LIBS}) +set_target_properties(vtkKWEGraphics PROPERTIES ${VTKEdge_LIBRARY_PROPERTIES} LINK_INTERFACE_LIBRARIES "") # ----------------------------------------------------------------------------- # Testing Index: vtkedge-0.1.0~20110403/Hybrid/CMakeLists.txt =================================================================== --- vtkedge-0.1.0~20110403.orig/Hybrid/CMakeLists.txt 2010-05-05 18:12:17.000000000 +0200 +++ vtkedge-0.1.0~20110403/Hybrid/CMakeLists.txt 2011-04-03 21:53:01.000000000 +0200 @@ -75,6 +75,7 @@ # ----------------------------------------------------------------------------- add_library(vtkKWEHybrid ${KIT_SRCS} ${KIT_EXTRA_SRCS}) target_link_libraries(vtkKWEHybrid ${KIT_LIBS}) +set_target_properties(vtkKWEHybrid PROPERTIES ${VTKEdge_LIBRARY_PROPERTIES} LINK_INTERFACE_LIBRARIES "") # ----------------------------------------------------------------------------- # Testing Index: vtkedge-0.1.0~20110403/Imaging/CMakeLists.txt =================================================================== --- vtkedge-0.1.0~20110403.orig/Imaging/CMakeLists.txt 2010-04-20 22:41:44.000000000 +0200 +++ vtkedge-0.1.0~20110403/Imaging/CMakeLists.txt 2011-04-03 21:53:01.000000000 +0200 @@ -61,6 +61,7 @@ if(KIT_CUDA_C_SOURCES OR KIT_SRCS OR KIT_CUDA_DEPENDANT_SRCS) add_library(vtkKWEImaging ${KIT_CUDA_C_SOURCES} ${KIT_SRCS} ${KIT_CUDA_DEPENDANT_SRCS}) target_link_libraries(vtkKWEImaging ${KIT_LIBS} ${CUDA_LIBRARIES} ${CUDA_CUTIL_LIBRARY}) + set_target_properties(vtkKWEImaging PROPERTIES ${VTKEdge_LIBRARY_PROPERTIES} LINK_INTERFACE_LIBRARIES "") endif(KIT_CUDA_C_SOURCES OR KIT_SRCS OR KIT_CUDA_DEPENDANT_SRCS) # ----------------------------------------------------------------------------- Index: vtkedge-0.1.0~20110403/IO/CMakeLists.txt =================================================================== --- vtkedge-0.1.0~20110403.orig/IO/CMakeLists.txt 2010-04-20 22:41:44.000000000 +0200 +++ vtkedge-0.1.0~20110403/IO/CMakeLists.txt 2011-04-03 21:53:01.000000000 +0200 @@ -73,6 +73,7 @@ # ----------------------------------------------------------------------------- add_library(vtkKWEIO ${KIT_SRCS} ${KIT_EXTRA_SRCS}) target_link_libraries(vtkKWEIO ${KIT_LIBS}) +set_target_properties(vtkKWEIO PROPERTIES ${VTKEdge_LIBRARY_PROPERTIES} LINK_INTERFACE_LIBRARIES "") # ----------------------------------------------------------------------------- # Testing Index: vtkedge-0.1.0~20110403/Rendering/CMakeLists.txt =================================================================== --- vtkedge-0.1.0~20110403.orig/Rendering/CMakeLists.txt 2010-06-30 21:57:03.000000000 +0200 +++ vtkedge-0.1.0~20110403/Rendering/CMakeLists.txt 2011-04-03 21:53:01.000000000 +0200 @@ -70,6 +70,7 @@ # ----------------------------------------------------------------------------- add_library(vtkKWERendering ${KIT_SRCS} ${KIT_EXTRA_SRCS}) target_link_libraries(vtkKWERendering ${KIT_LIBS}) +set_target_properties(vtkKWERendering PROPERTIES ${VTKEdge_LIBRARY_PROPERTIES} LINK_INTERFACE_LIBRARIES "") # ----------------------------------------------------------------------------- # Testing Index: vtkedge-0.1.0~20110403/VolumeRendering/CMakeLists.txt =================================================================== --- vtkedge-0.1.0~20110403.orig/VolumeRendering/CMakeLists.txt 2010-05-17 21:03:25.000000000 +0200 +++ vtkedge-0.1.0~20110403/VolumeRendering/CMakeLists.txt 2011-04-03 21:53:01.000000000 +0200 @@ -68,6 +68,7 @@ # ----------------------------------------------------------------------------- add_library(vtkKWEVolumeRendering ${KIT_SRCS} ${KIT_OpenGL_SRCS} ${KIT_EXTRA_SRCS}) target_link_libraries(vtkKWEVolumeRendering ${KIT_LIBS}) +set_target_properties(vtkKWEVolumeRendering PROPERTIES ${VTKEdge_LIBRARY_PROPERTIES} LINK_INTERFACE_LIBRARIES "") # ----------------------------------------------------------------------------- # Testing Index: vtkedge-0.1.0~20110403/Widgets/CMakeLists.txt =================================================================== --- vtkedge-0.1.0~20110403.orig/Widgets/CMakeLists.txt 2010-12-14 19:44:17.000000000 +0100 +++ vtkedge-0.1.0~20110403/Widgets/CMakeLists.txt 2011-04-03 21:53:01.000000000 +0200 @@ -138,6 +138,7 @@ ENDIF(VTKEdge_USE_ITK) add_library(vtkKWEWidgets ${KIT_SRCS}) target_link_libraries(vtkKWEWidgets ${KIT_LIBS}) +set_target_properties(vtkKWEWidgets PROPERTIES ${VTKEdge_LIBRARY_PROPERTIES} LINK_INTERFACE_LIBRARIES "") # -------------------------------------------------------------------------- # Testing debian/patches/missinglink.patch0000644000000000000000000000534311754416363014204 0ustar Index: vtkedge-0.2.0~20110819/Filtering/CMakeLists.txt =================================================================== --- vtkedge-0.2.0~20110819.orig/Filtering/CMakeLists.txt 2012-05-15 10:55:16.215111036 +0200 +++ vtkedge-0.2.0~20110819/Filtering/CMakeLists.txt 2012-05-15 10:56:29.419108394 +0200 @@ -73,6 +73,7 @@ # ----------------------------------------------------------------------------- add_library(vtkKWEFiltering ${KIT_SRCS} ${KIT_EXTRA_SRCS} ${FilteringInstantiatorFiles}) target_link_libraries(vtkKWEFiltering ${KIT_LIBS}) +target_link_libraries(vtkKWEFiltering vtkCommon vtkKWECommon) set_target_properties(vtkKWEFiltering PROPERTIES ${VTKEdge_LIBRARY_PROPERTIES} LINK_INTERFACE_LIBRARIES "") Index: vtkedge-0.2.0~20110819/Rendering/CMakeLists.txt =================================================================== --- vtkedge-0.2.0~20110819.orig/Rendering/CMakeLists.txt 2012-05-15 10:56:54.851107475 +0200 +++ vtkedge-0.2.0~20110819/Rendering/CMakeLists.txt 2012-05-15 11:01:08.291098326 +0200 @@ -70,6 +70,7 @@ # ----------------------------------------------------------------------------- add_library(vtkKWERendering ${KIT_SRCS} ${KIT_EXTRA_SRCS}) target_link_libraries(vtkKWERendering ${KIT_LIBS}) +target_link_libraries(vtkKWERendering ${OPENGL_LIBRARIES}) set_target_properties(vtkKWERendering PROPERTIES ${VTKEdge_LIBRARY_PROPERTIES} LINK_INTERFACE_LIBRARIES "") # ----------------------------------------------------------------------------- Index: vtkedge-0.2.0~20110819/CMakeLists.txt =================================================================== --- vtkedge-0.2.0~20110819.orig/CMakeLists.txt 2012-05-15 11:00:24.543099906 +0200 +++ vtkedge-0.2.0~20110819/CMakeLists.txt 2012-05-15 11:01:05.047098444 +0200 @@ -233,6 +233,7 @@ # ----------------------------------------------------------------------------- # Enable kits # ----------------------------------------------------------------------------- +find_package(OpenGL REQUIRED) set(VTKEdge_AVAILABLE_KITS Common Filtering Index: vtkedge-0.2.0~20110819/Hybrid/CMakeLists.txt =================================================================== --- vtkedge-0.2.0~20110819.orig/Hybrid/CMakeLists.txt 2012-05-15 11:01:18.727097950 +0200 +++ vtkedge-0.2.0~20110819/Hybrid/CMakeLists.txt 2012-05-15 11:01:41.095097143 +0200 @@ -75,6 +75,7 @@ # ----------------------------------------------------------------------------- add_library(vtkKWEHybrid ${KIT_SRCS} ${KIT_EXTRA_SRCS}) target_link_libraries(vtkKWEHybrid ${KIT_LIBS}) +target_link_libraries(vtkKWEHybrid ${OPENGL_LIBRARIES}) set_target_properties(vtkKWEHybrid PROPERTIES ${VTKEdge_LIBRARY_PROPERTIES} LINK_INTERFACE_LIBRARIES "") # ----------------------------------------------------------------------------- debian/patches/move_cmakes.patch0000644000000000000000000000111511433162264014127 0ustar Index: vtkedge/CMakeLists.txt =================================================================== --- vtkedge.orig/CMakeLists.txt 2010-07-28 16:38:02.000000000 -0400 +++ vtkedge/CMakeLists.txt 2010-07-29 07:44:33.000000000 -0400 @@ -121,7 +121,7 @@ endif(NOT VTKEdge_INSTALL_INCLUDE_DIR) if(NOT VTKEdge_INSTALL_PACKAGE_DIR) - set(VTKEdge_INSTALL_PACKAGE_DIR ${VTKEdge_INSTALL_LIB_DIR} CACHE INTERNAL "") + set(VTKEdge_INSTALL_PACKAGE_DIR ${VTKEdge_INSTALL_LIB_DIR}/${PROJECT_NAME} CACHE INTERNAL "") endif(NOT VTKEdge_INSTALL_PACKAGE_DIR) if(NOT VTKEdge_VTK_INSTALL_PACKAGE_DIR) debian/patches/bumpsoversion.patch0000644000000000000000000000123511546314215014554 0ustar Index: vtkedge-0.1.0~20110403/CMakeLists.txt =================================================================== --- vtkedge-0.1.0~20110403.orig/CMakeLists.txt 2011-04-04 12:06:07.000000000 +0200 +++ vtkedge-0.1.0~20110403/CMakeLists.txt 2011-04-04 12:06:23.000000000 +0200 @@ -40,7 +40,7 @@ # VTKEdge version number. An even minor number corresponds to a release # ----------------------------------------------------------------------------- set(VTKEdge_VERSION_MAJOR 0) -set(VTKEdge_VERSION_MINOR 1) +set(VTKEdge_VERSION_MINOR 2) set(VTKEdge_VERSION_BUILD 0) set(VTKEdge_VERSION "${VTKEdge_VERSION_MAJOR}.${VTKEdge_VERSION_MINOR}.${VTKEdge_VERSION_BUILD}") debian/patches/series0000644000000000000000000000014411754416363012043 0ustar sharedlibs_version.patch private_libs.patch move_cmakes.patch bumpsoversion.patch missinglink.patch debian/changelog0000644000000000000000000000423011754416514011047 0ustar vtkedge (0.2.0~20110819-2) unstable; urgency=low * Use my @d.o alias * Bump Std-Vers to 3.9.3, no changes needed * Update VCS urls * Remove explicit B-D to libgdcm2-dev, not required anymore * Reduce overlinking, fix underlinking -- Mathieu Malaterre Tue, 15 May 2012 11:04:49 +0200 vtkedge (0.2.0~20110819-1) unstable; urgency=low * Build upstream from newer svn (20110819) * Remove references to old GPL license. Closes: #634739 * Install *.txx file. Closes: #632861 * Bump Standard Revision to 3.9.2, no changes needed * use hardening compilation flags -- Mathieu Malaterre Fri, 19 Aug 2011 17:12:42 +0200 vtkedge (0.2.0~20110403-1) unstable; urgency=low [ Andreas Tille ] * debian/source/format: 3.0 (quilt) * Debhelper 8 (control+compat) [ Mathieu Malaterre ] * Use vtkedge from svn trunk to build against VTK 5.6. Closes: #618183 * Copyright change from GPL to BSD * Manually change the cmake version to reflect ABI change -- Mathieu Malaterre Sun, 03 Apr 2011 22:16:29 +0200 vtkedge (0.1.0-3) unstable; urgency=low [ Charles Plessy ] * Pass --no-name to gzip in order to generate stable MD5 sums (debian/get-orig-source). [ Mathieu Malaterre ] * Fix VTKEdgeConfig.cmake points to wrong location for UseVTKEdge.cmake (Closes: #590843) * Update Standards-Version to 3.9.1 (no change needed) * Remove paraview plugin since not compatible with ParaView 3.8 -- Mathieu Malaterre Thu, 19 Aug 2010 10:00:01 +0200 vtkedge (0.1.0-2) unstable; urgency=low * Team upload. [ Mathieu Malaterre ] * Fix lintian error : missing-build-dependency. No change required * Add paraview and ITK plugins [ Charles Plessy ] * debian/control: - Allow Mathieu to upload, by setting DM-Upload-Allowed to ‘yes’. - Tighten the build-dependancy on cmake >= 2.8.1. -- Charles Plessy Mon, 24 May 2010 13:17:07 +0900 vtkedge (0.1.0-1) unstable; urgency=low * Initial release (Closes: #551978) -- Mathieu Malaterre (malat) Fri, 26 Feb 2010 15:29:32 +0100 debian/copyright0000644000000000000000000001274411754417261011141 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: VTKEdge Upstream-Contact: Kitware, Inc. Source: https://www.kitware.com/svn/KWPublic/trunk/VTKEdge Files: * Copyright: © 2010 Kitware, Inc. License: BSD License Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. . * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. . * Neither name of Kitware nor the names of any contributors may be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Files: Common/vtkKWEUUID.h, Common/VTKEdgeUUIDConfigure.h.in, Common/vtkKWEUUID.cxx Copyright: © 2010 Kitware, Inc. © CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image) License: BSD License Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. . * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. . * Neither name of Kitware nor the names of any contributors may be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. . =========================================================================== . Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details. . This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notices for more information. Files: debian/* Copyright: © 2011-2012; Mathieu Malaterre License: Same-As-Upstream The license of the packaging is the same as the upstream work itself. License: Gdcm Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. . * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. . * Neither name of Mathieu Malaterre, or CREATIS, nor the names of any contributors (CNRS, INSERM, UCB, Universite Lyon I), may be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. debian/rules0000755000000000000000000000124511754416363010262 0ustar #!/usr/bin/make -f # export DH_VERBOSE=1 export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed DPKG_EXPORT_BUILDFLAGS = 1 -include /usr/share/dpkg/buildflags.mk %: dh $@ --parallel # testing does not work as we deactivate rpath during conf time CMAKE_EXTRA_FLAGS += -DCMAKE_SKIP_RPATH=ON \ -DVTK_DATA_ROOT:PATH=/usr/share/VTKData \ -DCMAKE_SKIP_RPATH:BOOL=YES \ -DBUILD_TESTING:BOOL=OFF \ -DVTKEdge_BUILD_PARAVIEW_PLUGINS:BOOL=OFF \ -DVTKEdge_USE_ITK:BOOL=ON # if anyone has an nvidia card... # -DVTKEdge_USE_CUDA:BOOL=ON -DVTKEdge_USE_NVCONTROL:BOOL=ON override_dh_auto_configure: dh_auto_configure -- $(CMAKE_EXTRA_FLAGS) get-orig-source: ./debian/get-orig-source debian/get-orig-source0000755000000000000000000000105511623503772012136 0ustar #!/bin/sh set -e PACKAGE=vtkedge VERSION=${VERSION:-$2} TARFILE=${TARFILE:-$3} if [ -z ${VERSION}]; then VERSION=`dpkg-parsechangelog | sed -n -e 's/^Version: \(.*\)-[^-]*$/\1/p'` fi REVISION=`echo $VERSION | sed -e 's/^.*~//g'` #REVISION=3565 / 20110819 FOLDER=${PACKAGE}-${VERSION} if [ -z ${TARFILE}]; then TARFILE=${PACKAGE}_${VERSION}.orig.tar.gz fi svn export --quiet -r "{$REVISION}" https://www.kitware.com:8443/svn/KWPublic/trunk/VTKEdge ${FOLDER} rm -rf ${FOLDER}/Data GZIP="--best --no-name" tar czf ${TARFILE} ${FOLDER} rm -rf ${FOLDER} debian/libvtkedge.lintian-overrides0000644000000000000000000000044211347644511014674 0ustar # W: libvtkedge: package-name-doesnt-match-sonames libvtkKWECommon0.1 libvtkKWEFiltering0.1 libvtkKWEGraphics0.1 libvtkKWEHybrid0.1 libvtkKWEIO0.1 libvtkKWEImaging0.1 libvtkKWERendering0.1 libvtkKWEVolumeRendering0.1 libvtkKWEWidgets0.1 libvtkedge binary: package-name-doesnt-match-sonames