Difference between revisions of "Hugin Compiling OpenSuse"

From PanoTools.org Wiki
Jump to navigation Jump to search
m
(Change compiling category)
 
(11 intermediate revisions by 6 users not shown)
Line 1: Line 1:
* Confirmed working on OpenSuSE 10.3 and x86_64 architecture.
+
To build enblend, enfuse, libpano and hugin, follow the instructions below.
* to build enblend, enfuse, libpano and hugin, follow the instructions below
 
  
# Dependencies needed for OpenSuSE 10.3
+
== Dependencies and prerequisites needed for OpenSuSE 10.3 ==
#:<pre>
+
 
#:gettext
+
gettext
#:libjpeg-devel
+
libjpeg-devel
#:boost-devel
+
boost-devel
#:boost
+
boost
#:wxGTK-devel
+
wxGTK-devel
#:wxGTK
+
wxGTK
#:OpenEXR-devel
+
OpenEXR-devel
#:openEXR
+
openEXR
#:libexiv2-devel
+
libexiv2-devel
#:</pre>
+
libtiff-devel
#Enblend and Enfuse (cvs):
+
liblcms-devel
#:<pre>
+
cmake
#:cvs -d:pserver:anonymous@enblend.cvs.sourceforge.net:/cvsroot/enblend login
+
 
#:cvs -z3 -d:pserver:anonymous@enblend.cvs.sourceforge.net:/cvsroot/enblend co -P enblend
+
== Enblend and Enfuse (cvs) ==
#:cd enblend
+
 
#:make -f Makefile.cvs
+
cvs -d:pserver:anonymous@enblend.cvs.sourceforge.net:/cvsroot/enblend login
#:./configure
+
cvs -z3 -d:pserver:anonymous@enblend.cvs.sourceforge.net:/cvsroot/enblend co -P enblend
#:make
+
cd enblend
#:sudo make install
+
make -f Makefile.cvs
#:</pre>
+
./configure
#compile and install pano13
+
make
#:<pre>
+
sudo make install
#:mkdir -p /usr/src/panotools/trunk
+
 
#:cd /usr/src/panotools/trunk
+
== libpano13 ==
#:svn co https://panotools.svn.sourceforge.net/svnroot/panotools/trunk/libpano libpano13
+
 
#:cd libpano13
+
mkdir -p /usr/src/panotools/trunk
#:sh ./bootstrap
+
cd /usr/src/panotools/trunk
#:make
+
svn co https://panotools.svn.sourceforge.net/svnroot/panotools/trunk/libpano libpano13
#:sudo make install
+
cd libpano13
#:</pre>
+
sh ./bootstrap
# Install cmake
+
make
# create the svn-source-directory /usr/src/hugin
+
sudo make install install-data-am
#:<pre>
+
 
#:mkdir /usr/src/hugin
+
== Hugin ==
#:cd  /usr/src/hugin
+
=== Checkout Hugin ===
#:svn co https://hugin.svn.sourceforge.net/svnroot/hugin/hugin/trunk hugin
+
 
#:</pre>
+
  mkdir /usr/src/hugin
# create build-directory
+
cd /usr/src/hugin
#:<pre>mkdir /usr/src/hugin/BuildHugin
+
svn co https://hugin.svn.sourceforge.net/svnroot/hugin/hugin/trunk hugin
#:</pre>
+
 
# configure
+
* if you need to build a specific SVN revision, e.g. 2765, you can slightly change the svn command to get it. e.g.:
#:<pre>cd /usr/src/hugin/BuildHugin
+
 
#:ccmake /usr/src/hugin/hugin
+
svn co -r 2765 https://hugin.svn.sourceforge.net/svnroot/hugin/hugin/trunk/ hugin
#:cmake /usr/src/hugin/hugin
+
 
#:</pre>
+
=== Compile Hugin ===
# make and install
+
 
#:<pre>make
+
mkdir /usr/src/hugin/BuildHugin
#:sudo make install
+
cd /usr/src/hugin/BuildHugin
#:</pre>
+
ccmake /usr/src/hugin/hugin
#compile and install autopano-sift-C<br>Needed for automatic control point generation, restricted by software patents in some countries
+
cmake /usr/src/hugin/hugin
#:<pre>
+
make && sudo make install
#:cd /usr/src
+
 
#:svn co https://hugin.svn.sourceforge.net/svnroot/hugin/autopano-sift-C/trunk/ autopano-sift-C
+
== autopano-sift-C ==
#:cd autopano-sift-C
+
Needed for automatic control point generation, restricted by software patents in some countries.
#:mkdir build && cd build
+
 
#:cmake -DCMAKE_INSTALL_PREFIX=/usr/local ..
+
cd /usr/src
#:make
+
svn co https://hugin.svn.sourceforge.net/svnroot/hugin/autopano-sift-C/trunk/ autopano-sift-C
#:sudo make install
+
cd autopano-sift-C
#:</pre>
+
mkdir build && cd build
 +
cmake -DCMAKE_INSTALL_PREFIX=/usr/local ..
 +
make
 +
sudo make install
 +
 
 +
== Status reports ==
  
 
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)
* followed the instructions in INSTALL_cmake.
+
* followed the instructions in '''INSTALL_cmake'''.
 
* The only non-standard thing is libpano13, (2.9.12 was used)
 
* 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).
 
* All other dependencies have been resolved using the standard (smart) repositories for OpenSuSE (wxGTK is 2.6.3.3).
 +
 +
Success Report: Confirmed working on OpenSuSE 10.3 and x86_64 architecture.
 +
 +
Success Report: On OpenSuSE 11.0 x86_64.
 +
* you will need to make sure you have all of the build tools. (examples: gcc+ automake)
 +
* Also had to install libXML2 for autopano
 +
 +
For OpenSuSE 11.1:
 +
* On x86_64 systems with libraries in /usr/lib64 or /usr/local/lib64 such as OpenSuSE, redhat or fedora you need to pass LIB_SUFFIX=64 to cmake
  
 
[[Category:Software:Platform:Linux]]
 
[[Category:Software:Platform:Linux]]
 
[[Category:Software:Hugin]]
 
[[Category:Software:Hugin]]
 +
[[Category:Software:Hugin:Compiling]]

Latest revision as of 22:44, 14 July 2011

To build enblend, enfuse, libpano and hugin, follow the instructions below.

Dependencies and prerequisites needed for OpenSuSE 10.3

gettext
libjpeg-devel
boost-devel
boost	
wxGTK-devel
wxGTK
OpenEXR-devel
openEXR
libexiv2-devel
libtiff-devel
liblcms-devel
cmake

Enblend and Enfuse (cvs)

cvs -d:pserver:anonymous@enblend.cvs.sourceforge.net:/cvsroot/enblend login
cvs -z3 -d:pserver:anonymous@enblend.cvs.sourceforge.net:/cvsroot/enblend co -P enblend
cd enblend
make -f Makefile.cvs
./configure
make
sudo make install

libpano13

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 install-data-am

Hugin

Checkout Hugin

mkdir /usr/src/hugin
cd /usr/src/hugin
svn co https://hugin.svn.sourceforge.net/svnroot/hugin/hugin/trunk hugin
  • if you need to build a specific SVN revision, e.g. 2765, you can slightly change the svn command to get it. e.g.:
svn co -r 2765 https://hugin.svn.sourceforge.net/svnroot/hugin/hugin/trunk/ hugin

Compile Hugin

mkdir /usr/src/hugin/BuildHugin
cd /usr/src/hugin/BuildHugin
ccmake /usr/src/hugin/hugin
cmake /usr/src/hugin/hugin
make && sudo make install

autopano-sift-C

Needed for automatic control point generation, restricted by software patents in some countries.

cd /usr/src
svn co https://hugin.svn.sourceforge.net/svnroot/hugin/autopano-sift-C/trunk/ autopano-sift-C
cd autopano-sift-C
mkdir build && cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr/local ..
make
sudo make install

Status reports

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).

Success Report: Confirmed working on OpenSuSE 10.3 and x86_64 architecture.

Success Report: On OpenSuSE 11.0 x86_64.

  • you will need to make sure you have all of the build tools. (examples: gcc+ automake)
  • Also had to install libXML2 for autopano

For OpenSuSE 11.1:

  • On x86_64 systems with libraries in /usr/lib64 or /usr/local/lib64 such as OpenSuSE, redhat or fedora you need to pass LIB_SUFFIX=64 to cmake