[med-svn] r15487 - trunk/packages/igstk/trunk/debian

Andreas Tille tille at moszumanska.debian.org
Wed Dec 11 07:46:14 UTC 2013


Author: tille
Date: 2013-12-11 07:46:14 +0000 (Wed, 11 Dec 2013)
New Revision: 15487

Added:
   trunk/packages/igstk/trunk/debian/FindOpenCV.cmake
Modified:
   trunk/packages/igstk/trunk/debian/changelog
   trunk/packages/igstk/trunk/debian/control
Log:
Commit what was uploaded as 4.4.0-2


Added: trunk/packages/igstk/trunk/debian/FindOpenCV.cmake
===================================================================
--- trunk/packages/igstk/trunk/debian/FindOpenCV.cmake	                        (rev 0)
+++ trunk/packages/igstk/trunk/debian/FindOpenCV.cmake	2013-12-11 07:46:14 UTC (rev 15487)
@@ -0,0 +1,67 @@
+# - try to find glut library and include files
+#  GLUT_INCLUDE_DIR, where to find GL/glut.h, etc.
+#  GLUT_LIBRARIES, the libraries to link against
+#  GLUT_FOUND, If false, do not try to use GLUT.
+# Also defined, but not for general use are:
+#  GLUT_glut_LIBRARY = the full path to the glut library.
+#  GLUT_Xmu_LIBRARY  = the full path to the Xmu library.
+#  GLUT_Xi_LIBRARY   = the full path to the Xi Library.
+
+
+    FIND_PATH( OpenCV_INCLUDE_DIR cv.h
+      /usr/include
+      /usr/include/opencv
+      /usr/local/include
+      /usr/openwin/share/include
+      /usr/openwin/include
+      /usr/X11R6/include
+      /usr/include/X11
+    )
+
+    FIND_LIBRARY( OpenCV_cv_LIBRARY cv
+      /usr/lib
+      /usr/local/lib
+    )
+
+    FIND_LIBRARY( OpenCV_cvaux_LIBRARY cvaux
+      /usr/lib
+      /usr/local/lib
+    )
+
+    FIND_LIBRARY( OpenCV_highgui_LIBRARY highgui
+      /usr/lib
+      /usr/local/lib
+    )
+
+
+SET( OpenCV_FOUND "NO" )
+IF(OpenCV_INCLUDE_DIR)
+  IF(OpenCV_cv_LIBRARY)
+    SET( OpenCV_LIBRARIES
+      ${OpenCV_cv_LIBRARY}
+      ${OpenCV_cvaux_LIBRARY}
+      ${OpenCV_highgui_LIBRARY}
+    )
+    SET( OpenCV_FOUND "YES" )
+
+#The following deprecated settings are for backwards compatibility with CMake1.4
+    SET (OpenCV_LIBRARY ${OpenCV_LIBRARIES})
+    SET (OpenCV_INCLUDE_PATH ${OpenCV_INCLUDE_DIR})
+
+  ENDIF(OpenCV_cv_LIBRARY)
+ENDIF(OpenCV_INCLUDE_DIR)
+
+MARK_AS_ADVANCED(
+#  OpenCV_INCLUDE_DIR
+#  OpenCV_cv_LIBRARY
+  OpenCV_cvaux_LIBRARY
+  OpenCV_highgui_LIBRARY
+)
+
+
+#MESSAGE(${OpenCV_INCLUDE_DIR})
+#MESSAGE(${OpenCV_cv_LIBRARY})
+#MESSAGE(${OpenCV_cvaux_LIBRARY})
+#MESSAGE(${OpenCV_highgui_LIBRARY})
+#MESSAGE(${OpenCV_LIBRARIES})
+

Modified: trunk/packages/igstk/trunk/debian/changelog
===================================================================
--- trunk/packages/igstk/trunk/debian/changelog	2013-12-11 07:43:52 UTC (rev 15486)
+++ trunk/packages/igstk/trunk/debian/changelog	2013-12-11 07:46:14 UTC (rev 15487)
@@ -1,3 +1,10 @@
+igstk (4.4.0-2) unstable; urgency=low
+
+  * remove unnecessary dependencies (Closes: #640558)
+  * upload to unstable
+
+ -- Dominique Belhachemi <domibel at debian.org>  Wed, 28 Sep 2011 22:42:34 -0400
+
 igstk (4.4.0-1) experimental; urgency=low
 
   * new upstream release

Modified: trunk/packages/igstk/trunk/debian/control
===================================================================
--- trunk/packages/igstk/trunk/debian/control	2013-12-11 07:43:52 UTC (rev 15486)
+++ trunk/packages/igstk/trunk/debian/control	2013-12-11 07:46:14 UTC (rev 15487)
@@ -4,16 +4,12 @@
 DM-Upload-Allowed: yes
 Uploaders: Dominique Belhachemi <domibel at debian.org>, Steve M. Robbins <smr at debian.org>,
  Andreas Tille <tille at debian.org>
-Build-Depends: debhelper (>= 8), quilt, cmake, libinsighttoolkit3-dev (>= 3.16), libvtk5-dev,
- zlib1g-dev, libfreetype6-dev, libxext-dev, libpng-dev, libjpeg-dev, libtiff-dev,
- libexpat1-dev, libqt4-dev, libvtk5-qt4-dev, libfltk1.1-dev, fluid, uuid-dev,
- libxss-dev, libxft-dev, libopenigtlink1-dev, libgdcm2-dev, libssl-dev, libopenjpeg-dev,
- libavcodec-dev, libavformat-dev, libswscale-dev, libgl2ps-dev, mpi-default-dev,
- libmysqlclient-dev, xvfb, xauth, cdbs
+Build-Depends: debhelper (>= 8), cdbs, quilt, cmake, libinsighttoolkit3-dev (>= 3.20), libvtk5-dev,
+ libgdcm2-dev, libqt4-dev, libvtk5-qt4-dev, libfltk1.1-dev, libopenigtlink1-dev
 Build-Depends-Indep: doxygen, graphviz
-Standards-Version: 3.9.1
-Vcs-Browser: http://anonscm.debian.org/viewvc/debian-med/trunk/packages/igstk/trunk/
-Vcs-Svn: svn://svn.debian.org/debian-med/trunk/packages/igstk/trunk/
+Standards-Version: 3.9.2
+Vcs-Browser: http://svn.debian.org/wsvn/debian-med/trunk/packages/igstk/trunk/?rev=0&sc=0
+Vcs-Svn: svn://svn.debian.org/svn/debian-med/trunk/packages/igstk/trunk/
 Section: libs
 Homepage: http://www.igstk.org
 




More information about the debian-med-commit mailing list