Kdevelop-3.3.2

Introduction to Kdevelop

Kdevelop provides an Integrated Development Environment (IDE) to be used for a wide variety of programming tasks.

Package Information

Kdevelop Dependencies

Required

kdebase-3.5.2

Recommended

Optional

Python-2.4.4, DocBase, Graphviz-2.8, and Doxygen-1.4.6

User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/kdevelop

Installation of Kdevelop

Install kdevelop with:

./configure --prefix=$KDE_PREFIX --disable-debug \
    --disable-dependency-tracking &&
make
[Note]

Note

If you wish to create the API documentation and you have Doxygen and Graphviz installed, make apidox must be done before make install.

Now, as the root user:

make install &&
chown -v -R root:root $KDE_PREFIX/kdevbdb

If you created the API documentation, install it with:

make install-apidox

Command Explanations

chown -v -R root:root $KDE_PREFIX/kdevbdb: If kdevelop is built by any user other than root the installed Berkeley-DB files will have incorrect ownership. This command changes the ownership to root:root.

Contents

Installed Programs: kdevelop and supporting programs
Installed Libraries: Supporting kdevelop libraries
Installed Directories: $KDE_PREFIX/kdevbdb and supporting subdirectoies in $KDE_PREFIX/{include,share}

Short Descriptions

kdevelop

is an Integrated Development Environment to be used for a wide variety of programming tasks in many programming languages.

Last updated on 2006-06-21 11:26:07 -0500