1. Summary
  2. Files
  3. Support
  4. Report Spam
  5. Create account
  6. Log in

KileForKDE4

From kile

(Difference between revisions)
Jump to: navigation, search
(Current Status)
m (Small corrections.)
 
(4 intermediate revisions not shown)
Line 9: Line 9:
! Component !! Status !! Remarks
! Component !! Status !! Remarks
|-
|-
-
| Code Completion || Is being rewritten || Not yet contained in the SVN repository; will require KDE libraries 4.2
+
| Code Completion || Completely Rewritten || Requires lots of testing. Please report any change in behaviour from Kile 2.0 to the developers.
|-
|-
-
| LaTeX-related Build System || Code ported from Kile 2.0 || Requires lots of testing
+
| LaTeX-related Build System || Code ported from Kile 2.0 || Requires lots of testing.
|}
|}
-
==Building Kile for KDE4==
+
==Compiling Kile for KDE4 on Linux/BSD==
-
Currently, KDE libraries 4.1, or higher, are required to build Kile. Additionally, your system needs to be able to compile KDE4 programs; more details can be found [http://techbase.kde.org/Getting_Started/Build/KDE4 here].
+
Currently, KDE libraries 4.2 are required to build Kile. KDE libraries 4.4 are recommended to enable additional functionality in Kile. Additionally, your system needs to be able to compile KDE4 programs; more details can be found [http://techbase.kde.org/Getting_Started/Build/KDE4 here].
-
It is recommended to create a special directory which will contain KDE4 related files and also Kile 2.1. We assume in the following that the directory $HOME/.kde4 will be used for KDE4. We also assume that the environment variables $KDEHOME and $KDEDIRS are set up correctly.
+
It is recommended to create a special directory which will contain the Kile executable and related files. In that way it is easier to upgrade Kile. We assume in the following that the directory $HOME/kile-install is used for that purpose. If you do not want to use a separate directory, you can also install Kile into the local KDE directory for your user, which is named $HOME/.kde usually.
<pre>
<pre>
First of all, we create a new directory and download the source code:
First of all, we create a new directory and download the source code:
$ cd
$ cd
-
$ mkdir kile-new
+
$ mkdir kile-build
-
$ cd kile-new
+
$ cd kile-build
$ svn co svn://anonsvn.kde.org/home/kde/trunk/extragear/office/kile
$ svn co svn://anonsvn.kde.org/home/kde/trunk/extragear/office/kile
Line 30: Line 30:
$ mkdir build
$ mkdir build
$ cd build
$ cd build
-
$ cmake ../kile -DCMAKE_INSTALL_PREFIX=$HOME/.kde4 -DCMAKE_BUILD_TYPE="Debug"
+
$ cmake ../kile -DCMAKE_INSTALL_PREFIX=$HOME/kile-install -DCMAKE_BUILD_TYPE="Debug"
-
We can now build Kile and install it into $HOME/.kde4
+
We can now build Kile and install it into $HOME/kile-install
$ make -j 2
$ make -j 2
$ make install -j 2
$ make install -j 2
Finally, we start Kile with:
Finally, we start Kile with:
-
$ $HOME/.kde4/bin/kile
+
$ KDEDIRS=$HOME/kile-install:$KDEDIRS $HOME/kile-install/bin/kile
</pre>
</pre>

Current revision as of 15:30, 31 December 2009

On this page we describe the development progress of Kile 2.1, which will be based on KDE4.

Current Status

A general overview of some components is given in the table below.

Component Status Remarks
Code Completion Completely Rewritten Requires lots of testing. Please report any change in behaviour from Kile 2.0 to the developers.
LaTeX-related Build System Code ported from Kile 2.0 Requires lots of testing.

Compiling Kile for KDE4 on Linux/BSD

Currently, KDE libraries 4.2 are required to build Kile. KDE libraries 4.4 are recommended to enable additional functionality in Kile. Additionally, your system needs to be able to compile KDE4 programs; more details can be found here.

It is recommended to create a special directory which will contain the Kile executable and related files. In that way it is easier to upgrade Kile. We assume in the following that the directory $HOME/kile-install is used for that purpose. If you do not want to use a separate directory, you can also install Kile into the local KDE directory for your user, which is named $HOME/.kde usually.

First of all, we create a new directory and download the source code:
$ cd
$ mkdir kile-build
$ cd kile-build
$ svn co svn://anonsvn.kde.org/home/kde/trunk/extragear/office/kile

We then create a build directory and configure the build system:
$ mkdir build
$ cd build
$ cmake ../kile -DCMAKE_INSTALL_PREFIX=$HOME/kile-install -DCMAKE_BUILD_TYPE="Debug"

We can now build Kile and install it into $HOME/kile-install
$ make -j 2
$ make install -j 2

Finally, we start Kile with:
$ KDEDIRS=$HOME/kile-install:$KDEDIRS $HOME/kile-install/bin/kile
Personal tools