Project

General

Profile

Installing Wt on Ubuntu » History » Revision 24

Revision 23 (Jake Petroules, 07/13/2012 02:01 PM) → Revision 24/61 (Charles Brockman, 07/15/2012 03:38 AM)

h1. Installing Wt on Ubuntu 

 {{toc}} 

 For installation of Wt on Ubuntu, you have the choice between the official package available in Ubuntu, prebuilt packages by Pau Garcia i Quiles (always updated to the newest Wt version) or installation from source. 

 


 h2. Installing from the Official Package 

 official package  

 Since Ubuntu Intrepid (8.10), official packages for Ubuntu are available. To install Wt, run: 

 <pre> 
  $ sudo aptitude install witty witty-dbg witty-dev witty-doc 
 </pre> 

 This will automatically install all the required dependencies. If you only want the runtime library, you only need to install the witty package. The witty-dbg package contains the debug versions of the libraries. Make sure you install witty-dev (or libwtwhatever-dev) if you want to develop Wt applications. 

 


 The official package is usually a bit outdated due to the stabilization periods Debian and Ubuntu need prior to release. If you want to use the newest version of Wt and not build from source, read on. 

 


 h2. Installing from Prebuilt Packages 

 prebuilt packages  

 Since Wt 2.0.3, unofficial packages for Ubuntu are being built by "Pau Garcia i Quiles":http://www.elpauer.org/. To install Wt, add the "Wt PPA":http://launchpad.net/~pgquiles/+archive/wt to your repositories (check "Adding this PPA to your system" in the Wt PPA page). After adding the repository to your system, run: 

 <pre> 
  $ sudo apt-get update 
  $ sudo aptitude install libwt* 
 </pre> 

 This will automatically install all the required dependencies. If you only want the runtime library, you only need to install the libwt24, libwthttp24, libwtext24, etc packages (no -dev, -doc or -dbg packages). The libwt-dbg package contains the debug versions of the libraries. 

 These packages are built by the maintainer of the official Debian and Ubuntu packages and are always updated to the latest version of Wt. If you want to use the newest version of Wt and not build from source, this is the preferred method. 

 Please note in the past packages were named witty, witty-dev, witty-doc and witty-dbg. These package still exist but only as transitional packages and will be removed in the future. It is recommended that you install libwt*. 

 h2. Installing from Sources 

 sources  


 h3. Howto for wthttpd on gutsy 

  

 I made this for a freshly installed ubuntu 7.10 (gutsy gibbon). 
 It's without unicode,mysql and extjs support. 
 Should work similar for debian 4.0 etch. 
 As I wrote this down after installation, I hope all steps are correct. If you encounter problems, please let me know. 

 


 h3. Installing System Dependencies 

 installing system dependencies  

 Note : this information is partially out of date. Instead of installing the 1.34 versions of the boost projects, use the 1.35 ones (also in ubuntu with sudo apt-get install libboost1.35-dev) 

 Open a terminal and enter the following commands: 

 <pre> 
  sudo apt-get install gcc 
  sudo apt-get install g++ 
  sudo apt-get install zlib1g 
  sudo apt-get install zlib1g-dev 
  sudo apt-get install cmake 
  sudo apt-get install libboost-date-time-dev libboost-date-time1.34.1 
  sudo apt-get install libboost-program-options-dev libboost-program-options1.34.1 
  sudo apt-get install libboost-regex-dev libboost-regex1.34.1 
  sudo apt-get install libboost-signals-dev libboost-signals1.34.1 
  sudo apt-get install libboost-thread-dev libboost-thread1.34.1 
  sudo apt-get remove libgd-noxpm-dev (as libgd therein seems to be to old for examples - see link below) 
  sudo apt-get install libgd2-xpm libgd2-xpm-dev 
  sudo apt-get install libssl-dev 
  sudo apt-get install libboost-filesystem-dev libboost-filesystem1.34.1 
  sudo apt-get install libboost-test-dev libboost-test1.34.1 
 </pre> 

 If you also want support for deploying applications using FastCGI, you'll need the following library, and set FCGI to true when configuring Wt: 

 <pre> 
  sudo apt-get install libfcgi-dev 
 </pre> 

 


 h3. Getting External Sources 

 getting external sources  


 h4. Get get asio (http://sourceforge.net/projects/asio/) 

 (http://asio.sourceforge.net)  

 <pre> 
  wget -c http://kent.dl.sourceforge.net/sourceforge/asio/asio-0.3.9.tar.bz2 
  tar xvfj asio-0.3.9.tar.bz2 
 </pre> 

 


 h4. Get get Wt (http://www.webtoolkit.eu/wt) 

  

 <pre> 
  wget -c http://kent.dl.sourceforge.net/sourceforge/witty/wt-2.1.0.tar.gz 
  tar xvfz wt-2.1.0.tar.gz 
 </pre> 

 


 h3. Buidling buidling and Installing Sources 

 installing sources  


 h4. asio 

  

 <pre> 
  cd asio-0.3.9 
  ./configure 
  sudo make install 
  sudo ldconfig 
 </pre> 

 


 h4. Wt 

  

 <pre> 
  cd wt-2.1.0 
  mkdir build; cd build 
  cmake .. 
  make 
  sudo make install 
  sudo ldconfig 
 </pre> 

 


 h3. Try the Examples 

 examples  


 h4. From the Prebuilt Packages 

 prebuilt packages:  

 * To build the examples, call CMake this way: 

 <pre> 
   cmake -DWT_SOURCE_DIR=/usr/share/doc/witty-doc/ -DEXAMPLES_CONNECTOR="wt;wthttp" /usr/share/doc/witty-doc/examples 
 </pre> 

 * Then go to */usr/share/doc/witty-doc/examples* and enter the directory of the example you want to run.  

 * When running the example, set the docroot to "."    

 * For instance, if you compiled the examples in /home/user/dev/wtexamples, you would do: 

 <pre> 
   $ mkdir /home/user/dev/wtexamples 
   $ cd /home/user/dev/wtexamples 
   $ cmake -DWT_SOURCE_DIR=/usr/share/doc/witty-doc/ -DEXAMPLES_CONNECTOR="wt;wthttp" /usr/share/doc/witty-doc/examples 
   $ make 
   $ cd /usr/share/doc/witty-doc/examples/charts 
   $ /home/user/dev/wtexamples/charts/charts.wt --http-port 10000 --http-addr 0.0.0.0 --docroot . 
 </pre> 

 


 h4. From the Sources 

 sources:  

 * If you installed Wt using the source packages (http://sourceforge.net/projects/witty/files/), then you can find instructions on how to run the examples in the file *INSTALL.html* that is included in the main directory of the respective source package. 

 



 h4. Special Cases 

 cases:  

 * Please note the wt-homepage example will not run properly unless you download ExtJS (http://extjs.com) and extract it the proper place. 

 * Please note the wtwithqt example needs Qt 4.x to run 

 h3. Using 'ccmake' to Edit Build Options 

 edit build options  

 This is an easy, graphical way to edit the build options 

 <pre> 
  cd build 
  ccmake . 
 </pre> 

 


 h3. If It Fails if it fails with SSL Problem 

 problem (as mine did)  

 Edit the HTTP_WITH_SSL to OFF, and try again (or you could install openssl-dev and try again) 

 <pre> 
  CMake Error: This project requires some variables to be set, 
  and cmake can not find them. 
  Please set the following variables: 
  OPENSSL_INCLUDE 
 </pre> 
  OPENSSL_LIB 

 


 h2. Ubuntu's Official Documentation official documentation 

 You can find it "here":https://help.ubuntu.com/community/BuildingWtFromSource 


 "candy gift baskets":http://www.sweetrexies.com/