0) SONAME

1.0.0              release
1.0.20090522       SONAME
1.0.20090522.0     SONAME + some version number
libkwwidgets1      1 represents SONAME here
libkwwidgets1-dev  1 represents SONAME here
-------------------------------------------
this doesn't fit 100% the Debian Library Packaging guide
http://www.netfort.gr.jp/~dancer/column/libpkg-guide/libpkg-guide.html


1) create a symbol file
dpkg-gensymbols -v1.0.0~cvs20080526 -plibkwwidgets1 -Pdebian/libkwwidgets1  -Odebian/libkwwidgets1.symbols



-------------------------------------------------------------------------------------------------------------
The vtk-5.0 package in Debian depends on python-dev
And python-dev depends on python2.5-dev

But the variable VTK_INCLUDE_DIR contains a wrong path. It contains 
/usr/include/python2.4; instead of /usr/include/python2.5;

$ less /usr/lib/vtk-5.0/VTKConfig.cmake
...
# The VTK include file directories.
SET(VTK_INCLUDE_DIRS
"${VTK_INSTALL_PREFIX}/include/vtk-5.0;/usr/include/tcl8.4;/usr/include/python2.4;/usr/include/freetype2")
...


In my case, this leads to a compiler error
because /usr/include/python2.4 is not present on my computer and the
compiler doesnt know where to find python2.5 which is required for kwwidgets.

As a workaround i am using a compiler flag
   -DCMAKE_CXX_FLAGS="-I/usr/inlude/python2.5"

-------------------------------------------------------------------------------------------------------------
