Difference between revisions of "Hugin Compiling OpenSuse"

From PanoTools.org Wiki
Jump to navigation Jump to search
(New page: Success Report: On OpenSuSE 10.2 ist's really straightforward. * clean SVN chechout (version as of 20070204) * followed the instructions in INSTALL_cmake. * The only non-standard thing is ...)
 
Line 1: Line 1:
 +
# Dependencies needed for OpenSuSE 10.3
 +
#:<pre>
 +
#:gettext
 +
#:libjpeg-devel
 +
#:boost-devel
 +
#:boost
 +
#:wxGTK-devel
 +
#:wxGTK
 +
#:OpenEXR-devel
 +
#:openEXR
 +
#:</pre>
 +
#compile and install pano13
 +
#:<pre>
 +
#:mkdir -p /usr/src/panotools/trunk
 +
#:cd /usr/src/panotools/trunk
 +
#:svn co https://panotools.svn.sourceforge.net/svnroot/panotools/trunk/libpano libpano13
 +
#:cd libpano13
 +
#:sh ./bootstrap
 +
#:make
 +
#:sudo make install
 +
#:</pre>
 +
# Install cmake
 +
# create the svn-source-directory  /usr/src/hugin
 +
#:<pre>
 +
#:mkdir /usr/src/hugin
 +
#:cd  /usr/src/hugin
 +
#:svn co https://hugin.svn.sourceforge.net/svnroot/hugin/hugin/trunk hugin
 +
#:</pre>
 +
# create build-directory
 +
#:<pre>mkdir /usr/src/hugin/BuildHugin
 +
#:</pre>
 +
# configure
 +
#:<pre>cd /usr/src/hugin/BuildHugin
 +
#:ccmake /usr/src/hugin/hugin
 +
#:cmake /usr/src/hugin/hugin
 +
#:</pre>
 +
# make and install
 +
#:<pre>make
 +
#:sudo make install
 +
#:</pre>
 +
 +
 
Success Report: On OpenSuSE 10.2 ist's really straightforward.
 
Success Report: On OpenSuSE 10.2 ist's really straightforward.
 
* clean SVN chechout (version as of 20070204)
 
* clean SVN chechout (version as of 20070204)

Revision as of 18:25, 16 November 2007

  1. Dependencies needed for OpenSuSE 10.3
    gettext
    libjpeg-devel
    boost-devel
    boost
    wxGTK-devel
    wxGTK
    OpenEXR-devel
    openEXR
  2. compile and install pano13
    mkdir -p /usr/src/panotools/trunk
    cd /usr/src/panotools/trunk
    svn co https://panotools.svn.sourceforge.net/svnroot/panotools/trunk/libpano libpano13
    cd libpano13
    sh ./bootstrap
    make
    sudo make install
  3. Install cmake
  4. create the svn-source-directory /usr/src/hugin
    mkdir /usr/src/hugin
    cd /usr/src/hugin
    svn co https://hugin.svn.sourceforge.net/svnroot/hugin/hugin/trunk hugin
  5. create build-directory
    mkdir /usr/src/hugin/BuildHugin
  6. configure
    cd /usr/src/hugin/BuildHugin
    ccmake /usr/src/hugin/hugin
    cmake /usr/src/hugin/hugin
  7. make and install
    make
    sudo make install


Success Report: On OpenSuSE 10.2 ist's really straightforward.

  • clean SVN chechout (version as of 20070204)
  • followed the instructions in INSTALL_cmake.
  • The only non-standard thing is libpano13, (2.9.12 was used)
  • All other dependencies have been resolved using the standard (smart) repositories for OpenSuSE (wxGTK is 2.6.3.3).