Changes between Version 4 and Version 5 of BuildingQtOnLinux


Ignore:
Timestamp:
Jun 4, 2007 3:43:09 AM (17 years ago)
Author:
bero@arklinux.org
Comment:

Add Ark Linux build instructions where they differ from *ubuntu's (different dependency package names, different QTDIR)

Legend:

Unmodified
Added
Removed
Modified
  • BuildingQtOnLinux

    v4 v5  
    99The code should be easily built on any Linux distribution which has development packages for Qt installed.
    1010
    11 The Qt port requires Qt version 4, and 4.2 is recommended. To install required dependencies on Ubuntu edgy, do
     11The Qt port requires Qt version 4, and 4.2 is recommended.
     12
     13=== Installing dependencies on Ubuntu Edgy ===
     14To install required dependencies on Ubuntu edgy, do
    1215
    1316{{{
     
    2225}}}
    2326
     27=== Installing dependencies on Ark Linux ===
     28On Ark Linux, install the required dependencies using
     29{{{
     30apt-get install devel-core qt4-devel gperf libxslt-devel bison sqlite-devel
     31}}}
     32
     33Alternatively, install the needed packages (see list above) through Mission Control -> Install Software.
     34
     35== Build WebKit ==
    2436You'll then need to [http://webkit.org/building/checkout.html check out the source code from Subversion]. The Qt port is part of the WebKit source tree, so you don't need anything extra.
    2537
    26 Finally, build WebKit and the Qt test browser with
     38Finally, set the QTDIR environment variable to Qt 4.x's installation path (`/usr/lib/qt4` on Ark Linux, `/usr/share/qt4` on *Ubuntu), and build WebKit and the Qt test browser with
    2739
    2840{{{
    29 QTDIR=/usr/share/qt4/ WebKit/WebKitTools/Scripts/build-webkit
     41WebKit/WebKitTools/Scripts/build-webkit
    3042}}}
    3143