Project

General

Profile

Installing Wt on Ubuntu » History » Version 45

Wim Dumon, 03/10/2014 05:01 PM

1 1 Pieter Libin
h1. Installing Wt on Ubuntu
2
3
{{toc}}
4
5
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.
6
7 24 Charles Brockman
h2. Installing from the Official Package
8 1 Pieter Libin
9
Since Ubuntu Intrepid (8.10), official packages for Ubuntu are available. To install Wt, run:
10
11
<pre>
12
 $ sudo aptitude install witty witty-dbg witty-dev witty-doc
13
</pre>
14
15 10 Pau Garcia i Quiles
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.
16 1 Pieter Libin
17
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.
18
19 24 Charles Brockman
h2. Installing from Prebuilt Packages
20 1 Pieter Libin
21 10 Pau Garcia i Quiles
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:
22 1 Pieter Libin
23
<pre>
24
 $ sudo apt-get update
25
 $ sudo aptitude install libwt*
26
</pre>
27
28 21 Jake Petroules
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.
29 1 Pieter Libin
30
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.
31
32
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*.
33 4 Pau Garcia i Quiles
34 24 Charles Brockman
h2. Installing from Sources
35 1 Pieter Libin
36
h3. Installing System Dependencies
37
38 36 Wim Dumon
Minimal dependencies:
39 1 Pieter Libin
<pre>
40 40 Wim Dumon
sudo apt-get install gcc g++ libboost-all-dev cmake make
41 1 Pieter Libin
</pre>
42
43 43 Wim Dumon
Optional dependencies (this list changes sometimes):
44 1 Pieter Libin
<pre>
45 42 Wim Dumon
# general features
46
sudo apt-get install libssl-dev libfcgi-dev
47
# more database backends
48
sudo apt-get install libpq-dev libmysqlclient-dev firebird-dev
49
# graphics, pdf, font, server-side OpenGL, ...
50
sudo apt-get install libpng12-dev libgraphicsmagick1-dev libhpdf-dev libpng12-dev libpango1.0-dev mesa-common-dev
51
# used by some examples
52
sudo apt-get install asciidoc libqt4-dev
53
# for building documentation
54
sudo apt-get install doxygen graphviz
55 1 Pieter Libin
</pre>
56
57 45 Wim Dumon
If an optional dependency is not found, you can still compile and use Wt. Some features may not be available in that Wt (e.g. no pdf rendering, or no server-side 2D image rendering, ...)
58
59 36 Wim Dumon
Get Wt:
60 1 Pieter Libin
61 36 Wim Dumon
Go to http://www.webtoolkit.eu/wt/download or download using wget:
62 1 Pieter Libin
63
<pre>
64 36 Wim Dumon
 wget -c http://kent.dl.sourceforge.net/sourceforge/witty/wt-x.y.z.tar.gz
65
 tar xvxf wt-x.y.z.tar.gz
66 24 Charles Brockman
</pre>
67 1 Pieter Libin
68 36 Wim Dumon
h3. Build Wt from sources
69 1 Pieter Libin
70 36 Wim Dumon
See also http://www.webtoolkit.eu/wt/doc/reference/html/InstallationUnix.html
71 1 Pieter Libin
72
<pre>
73 36 Wim Dumon
cd wt-x.y.z
74 44 Wim Dumon
mkdir build
75
cd build
76
# cmake options:
77
# if cmake complains about not finding boost_random, add -DWT_NO_BOOST_RANDOM=ON
78
# if you installed graphicsmagick, add -DWT_WRASTERIMAGE_IMPLEMENTATION=GraphicsMagick
79
cmake .. 
80 36 Wim Dumon
make
81
make -C examples
82 1 Pieter Libin
</pre>
83 36 Wim Dumon
To install wt in /usr/local:
84 1 Pieter Libin
<pre>
85
 sudo make install
86
 sudo ldconfig
87
</pre>
88
89 36 Wim Dumon
h2. Try the Examples
90 1 Pieter Libin
91 24 Charles Brockman
h4. From the Prebuilt Packages
92 1 Pieter Libin
93 24 Charles Brockman
* To build the examples, call CMake this way:
94 1 Pieter Libin
95
<pre>
96
  cmake -DWT_SOURCE_DIR=/usr/share/doc/witty-doc/ -DEXAMPLES_CONNECTOR="wt;wthttp" /usr/share/doc/witty-doc/examples
97
</pre>
98
99
* Then go to */usr/share/doc/witty-doc/examples* and enter the directory of the example you want to run. 
100
101
* When running the example, set the docroot to "."   
102
103 9 Koen Deforche
* For instance, if you compiled the examples in /home/user/dev/wtexamples, you would do:
104 1 Pieter Libin
105
<pre>
106
  $ mkdir /home/user/dev/wtexamples
107
  $ cd /home/user/dev/wtexamples
108
  $ cmake -DWT_SOURCE_DIR=/usr/share/doc/witty-doc/ -DEXAMPLES_CONNECTOR="wt;wthttp" /usr/share/doc/witty-doc/examples
109
  $ make
110
  $ cd /usr/share/doc/witty-doc/examples/charts
111
  $ /home/user/dev/wtexamples/charts/charts.wt --http-port 10000 --http-addr 0.0.0.0 --docroot .
112
</pre>
113 33 Anonymous
114
h4. From the Sources
115 34 Anonymous
116 33 Anonymous
* 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.
117
118
h4. Special Cases
119
120 36 Wim Dumon
* Please note the widget gallery example will not run properly unless you download tinymce and extract it the proper place.
121 35 Anonymous
122
* Please note the wtwithqt example needs Qt 4.x to run
123 33 Anonymous
124 39 Koen Deforche
h2. Using 'ccmake' to Edit Build Options
125 33 Anonymous
This is an easy, graphical way to edit the build options
126
127
<pre>
128 24 Charles Brockman
 cd build
129 18 darren sy
 ccmake .
130
</pre>