diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-07 18:51:56 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-07 18:51:56 -0600 |
commit | dcb42b10c669803011474197cf0a1a6662c91982 (patch) | |
tree | f079181e4c77498244c0090b15476492d99a482d /INSTALL | |
parent | 3f2efc0d9676e785587c9dd262dccfffa3b8ca61 (diff) | |
download | krusader-dcb42b10c669803011474197cf0a1a6662c91982.tar.gz krusader-dcb42b10c669803011474197cf0a1a6662c91982.zip |
Rename KDEHOME and KDEDIR
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL | 28 |
1 files changed, 14 insertions, 14 deletions
@@ -250,7 +250,7 @@ If you are looking for older releases we recommend the Sourceforge_mirrors, available from our project page. Compiling and Installing Compiling Krusader. What now? -Check the environment variables KDEDIR_-_QTDIR. +Check the environment variables TDEDIR_-_QTDIR. To compile and install Krusader on your system, type the following in the base directory of the Krusader package: $ ./configure @@ -269,8 +269,8 @@ These instructions should work as well on Debian® based distributions like: Ubuntu®, Kubuntu®, Linspire®, Kanotix®, ... Add the next lines in the ~/.bashrc configuration file export QTDIR=/usr -export KDEDIR=/usr -export export KDEDIRS=/opt/krusader:/usr +export TDEDIR=/usr +export export TDEDIRS=/opt/krusader:/usr Install the build_dependencies for Krusader # apt-get build-dep krusader Download the Krusader sourcecode, unpack and enter the krusader_trinity directory. @@ -347,15 +347,15 @@ the FAQ. If the problem persists, use the help_request to ask for help. $ rm krusader-x.xx.tar.gz 6. Change to the directory containing the sources. $ cd krusader-x.xx - 7. Check the environment variables QTDIRand KDEDIR. Krusader's ./configure + 7. Check the environment variables QTDIRand TDEDIR. Krusader's ./configure script needs to know where the Qt™ and KDE directories are. QTDIR: <path to your Qt installation> e.g. /usr/lib/qt3 or /usr/qt3 - KDEDIR: <path to your KDE installation> e.g. /usr or /opt/trinity + TDEDIR: <path to your KDE installation> e.g. /usr or /opt/trinity Normally your distribution will set them for you, but experience has shown that some do not. You can easily check the values with the echo command. $ echo $QTDIR/usr/lib/qt3 - $ echo $KDEDIR/usr + $ echo $TDEDIR/usr If both commands give an output, the enviroment variables are set (the above example are the settings of Mandriva®-Linux®). In case you receive empty lines, the variables are not set and you have to set them manually. @@ -366,18 +366,18 @@ the FAQ. If the problem persists, use the help_request to ask for help. /usr/lib/qt3/bin/qtconfig $ find /usr /opt -name tdeinit -type f 2>/dev/null /usr/bin/tdeinit - In this case /usr/lib/qt3 is your QTDIR and /usr is your KDEDIR. The + In this case /usr/lib/qt3 is your QTDIR and /usr is your TDEDIR. The installed binaries will go to /usr/bin. Now we will set the enviroment variables with the export command. $ export QTDIR=<replace with your QTDIR> - $ export KDEDIR=<replace with your KDEDIR> + $ export TDEDIR=<replace with your TDEDIR> **** Note **** These enviroment variables are only set for the lifetime of your current shell. When you close your terminal and open a new one they will be gone. Assuming Krusader is not the only Qt™/KDE program you want to compile, we recommend to make these settings permanent (e.g. append both export commands to your /etc/profile) file. - If you can notdetermine your KDEDIR, kde-config --prefix might help you. + If you can notdetermine your TDEDIR, kde-config --prefix might help you. 8. If you have downloaded a stable version "krusader-x.xx.tar.gz" or a beta version "krusader-x.xx-betax.tar.gz", you can skip this step. In this case the ./configure script is provided. @@ -410,7 +410,7 @@ the FAQ. If the problem persists, use the help_request to ask for help. two nightly builds (snapshots) one with a ./configure script and one without. 9. Your Linux® distro Krusader RPM or DEB package will normally install - Krusader in the KDEDIR/bin directory. According to the Filesystem + Krusader in the TDEDIR/bin directory. According to the Filesystem Hierarchy_Standard_(FHS), any user installed files go to the /usr/local directory. If you wish Krusader to be installed in another directory, it can be determed with the prefix option. If you do not have root access, / @@ -433,7 +433,7 @@ the FAQ. If the problem persists, use the help_request to ask for help. kde_locale: /usr/share/locale qt_libraries: /usr/lib/qt3/lib qt_includes: /usr/lib/qt3/include - KDEDIR: /usr + TDEDIR: /usr QTDIR: /usr/lib/qt3 Install path: /usr/local/bin krusader version: 1.80.0 @@ -448,7 +448,7 @@ the FAQ. If the problem persists, use the help_request to ask for help. At the end of the ./configure script you will find a summary of the most important settings, e.g. where the Krusader binary will be installed (after the 'make install' command). This part will also display a warning - if the environment variables KDEDIR_-_QTDIR are empty. + if the environment variables TDEDIR_-_QTDIR are empty. Since Krusader-1.70.0 ./configure has two specific Krusader options: * ./configure --without-konqueror: build Krusader without support Konqueror's servicemenus, default=with. This means that Konqueror's @@ -463,13 +463,13 @@ the FAQ. If the problem persists, use the help_request to ask for help. found, now you have the choice. Use ./configure --helpto see more options or read the INSTALL file in the Krusader sources. - If you used another --prefix= than $KDEDIR or /usr/local, it is + If you used another --prefix= than $TDEDIR or /usr/local, it is recommended to do an extra check: $ kde-config --path exe /home/frank/.kde/bin/:/usr/bin/:/usr/local/bin/ $ If the <prefix_dir/bin> directory is not shown, you need to use e.g. - export KDEDIRS=/usr/local:/usr. To make these settings permanent you can + export TDEDIRS=/usr/local:/usr. To make these settings permanent you can e.g. append this export command to your /etc/profile file. After that you need to restart KDE. **** Note **** |