Package: enblend
Version: 3.0+dfsg-2
Followup-For: Bug #491370

apt-get source enblend
cvs -z3 -d:pserver:[EMAIL PROTECTED]:/cvsroot/enblend co -P enblend

cp -R enblend-3.0+dfsg/debian/ to the enblend/ directory
replace debian/type_mismatch.dpatch with attached one
add  libopenexr-dev to Build-Depends in debian/control

aclocal -I m4/
autoheader
automake --add-missing
autoconf

dch -n
dpkg-buildpackage -b -uc -us

In case it may be of use or if there is still one year before release .

Still need to test at usage but the package compile and run basic commands.

Best regards
Alban


-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.25-rc7-00025-gacaef06-dirty (SMP w/1 CPU core)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages enblend depends on:
ii  freeglut3                   2.4.0-6.1    OpenGL Utility Toolkit
ii  libc6                       2.7-12       GNU C Library: Shared libraries
ii  libgcc1                     1:4.3.1-6    GCC support library
ii  libgl1-mesa-glx [libgl1]    7.0.3-5      A free implementation of the OpenG
ii  libglew1.5                  1.5.0dfsg1-3 The OpenGL Extension Wrangler - ru
ii  libglu1-mesa [libglu1]      7.0.3-5      The OpenGL utility library (GLU)
ii  liblcms1                    1.17-1       Color management library
ii  libplot2c2                  2.5-2+b1     The GNU plotutils libraries
ii  libstdc++6                  4.3.1-6      The GNU Standard C++ Library v3
ii  libtiff4                    3.8.2-10     Tag Image File Format (TIFF) libra

Versions of packages enblend recommends:
ii  hugin                    0.7.0~svn3191-1 GUI tools for Hugin

enblend suggests no packages.

-- no debconf information
#! /bin/sh /usr/share/dpatch/dpatch-run
## type_mismatch.dpatch by Sebastian Harl <[EMAIL PROTECTED]>
##
## DP: Fixed a type mismatch when trying to instantiate std::max.

@DPATCH@

--- a/src/anneal.h
+++ b/src/anneal.h
@@ -694,7 +694,7 @@
 
             localK = stateSpace->size();
             if (localK < 2) convergedPoints[index] = true;
-            kMax = std::max((size_t)kMax, stateProbabilities->size());
+            kMax = std::max((size_t)kMax, (unsigned int)stateProbabilities->size());
 
         }
 

Reply via email to