KDE-BUILD(1) User Contributed Perl Documentation KDE-BUILD(1)NAME
kde-build - Updates and recompiles a tree of KDE CVS modules
SYNOPSIS
kde-build
DESCRIPTION
kde-build has been designed to keep a local copy of several KDE CVS modules up to date and recompile them. Those modules have to be saved
in a common directory, e.g. something like
~/kde-src/
|
+-> kdelibs/
|
+-> kdebase/
|
-> kdenetwork/
In this case, the KDE source directory would be ~/kde-src/. The script will take care of compiling them in the correct order, checks for
dependencies and resolves them as far as possible.
Please not that, prior to first invokation of the script, the configuration file 'kde-buildrc' has to be modified to reflect the local
environment, such as paths etc.
RETURN VALUE
The following error codes are returned by the script.
0 - No error seems to have occured.
1 - The script could not change into the directory of a module.
2 - The script could not open the file 'Makefile.in' of a module.
3 - The configuration of a module failed.
4 - The compilation of a module failed.
5 - The installation of a module failed.
6 - An invalid source directory was specified.
7 - An invalid Qt directory was specified.
8 - An invalid CVS client was specified.
9 - No cvsup server was specified.
10 - The temporary CVSUP configuration file couldn't be created.
11 - The configuration file kde-buildrc couldn't be loaded.
EXAMPLES
cd ~/scripts/; vi ./kde-buildrc; ./kde-build
BUGS
Lots, mostly that the script wasn't written with portability in mind and therefore won't run very nice on platforms other than Linux.
TODO
Add a DIAGNOSIS section to this man page.
AUTHOR
Frerich Raabe <raabe@kde.org>
3rd Berkeley Distribution perl v5.6.1 KDE-BUILD(1)
Check Out this Related Man Page
KBUILDSYCOCA(8)KBUILDSYCOCA(8)NAME
Description - Rebuilds the system configuration cache.
SYNOPSIS
kbuildsycoca [--nosignal | --incremental | --help | --help-qt | --help-kde | --help-all | --author | -v, --version | --license]
DESCRIPTION
kbuildsyscoca, as part of the KDE command line tools ensures the proper operation of KDE by reading in all the .desktop, .directory, .kim-
gio and .protocol files to constructs a binary database.
KDE itself accesses this databse during operation to provide configurational information a program needs to run.
This tool is part of ksyscoca, which stands for KDE System Configuration Cache
OPTIONS --nosignal
Don't signal applications
--incremental
Incremental Update
--help Show help about options
--help-qt
Show Qt specific options
--help-kde
Show KDE specific options
--help-all
Show all options
--author
Show author information
--version
Show version information
--license
Show license information
USAGE
A standard way to run this program is by simply specifying the following command at the prompt kbuildsyscoca
FILES
/tmp/kde-$USER/ksyscoca
...
ENVIRONMENT VARIABLES
$KDEDIRS
Specifies which directories are part of the KDE installations
SEE ALSO ksycoca(3), kblah(4), knogga(6)BUGS
There are no known bugs at the time of writing.
2001-04-25 KBUILDSYCOCA(8)
Hi there!
Hope you guys can help me with this, I'm totally desperate.
My mouse always behaves oddly when I start KDE, but in the console it works just fine. At first I could only move it along the edge of the screen. I could solve this problem and my mouse moves perfectly, but now it appears as... (4 Replies)
Hi Friends !
I want to change my current directory through a script.
I am running the script say, from /home/proj directory.
The script is like this :
#!/usr/bin/sh
cd module/pack/data
once i run the script, i am still in /home/proj directory only.
My problem is, i dont want to type... (5 Replies)
I have a build script. It was created on Linux. For some reason, I got it to windows and modified it. And brought it back again to Linux.
Since there is the question of the ^M chars appearing, the way out is to do a dos2unix on the script file. This is done manually.
Is there a way to call... (4 Replies)
Hello all
Can someone tell me I am running a script and the outputs directory is too small to contain the newly created file as a result of this script. How can I increase the directory size?
Thanks (9 Replies)
I've experienced a problem with CVS when I've checked out sh script.
When new build was created sources were checked out from CVS under Windows. Later this build was deployed under Linux und I recieved error from shell becouse of CR-LF EOL in file. I've tryed command dos2unix and become script... (7 Replies)
I want to write a script to go into a unix directory and recursively change all the instances of a word in every file in every directory and sub directory.
Here's where I am now:
I can execute
find . -print | xargs grep "my_word"
to recuresively return all the files with my_word in it. ... (7 Replies)
Hi All,
I don't have much experience in scripting, and couldn't find anything that will help me to write a script I need, hopefully you can help me with it.
I have lots of files in one directory with the following file name pattern:
100001-something.ext1
100101-something2.ext2... (4 Replies)
I have now used FreeBSD from eh, 5.0??? But during that whole time I have never used xwindows or kde. My box's have always been servers of one type or another.
I just set up a new BSD machine(8.0), and because I wanted to install boinc I knew that I would have to also install xwindows. Just the... (4 Replies)
Hi guys.
I m creating scripts which input multiple value , inside sqlplus script when it prompt/accept
do anybody know how to provide multiple value inside sqlplus script when it prompt.
like,
enter value for first:
enter value for second:
enter value "save file as " :
I m try... (11 Replies)
I have a piece of Linux script. It tells me some syntax error. I couldn't find it. Please help me to identify them. Thanks. The code looks like this:
export ORACLE_SID=MYDB
export SPW=`cat /opt/oracle/scripts/.sys_pw_$ORACLE_SID`
export check_arch=`sqlplus -s << EOF
/ as sysdba... (7 Replies)
I have a file that the format is as below ,
abc.xxx.yyy.zzz
while yyy is login ID .
And I have a script called script1 is as below
if ...
then
echo "user id"
else
...
fi
Now , I would like to have a script that can do su user to yyy first , similiar as below
if... (9 Replies)
HI Team,
I have script to find the invalid character in file.
f=’pallvi\mahajan’
n=0
while (( $n <= ${#f} ));
do
c="${f:$n:1}"
echo '$c'
if *] ]];
then
grep -sq $c valid.txt
if ;
then
echo "$f" >> f.txt
break
fi
fi (18 Replies)
Hi,
I included a command set -o vi & sudo -l user -c script in profile.d and /etc/profile. unfortunately the script has some command that logs me out every time I try to login from all users including root user. this is happening from GUI. can I login to prompt directly? or is there an... (7 Replies)
Hello.
First happy new year to everybody.
I have a script that generate a text file ( /tmp/part_list.txt for example ).
This file can be edited using a kde graphical text editor like kate or kwrite
The file can be printed out from command line or within the text editor using the print... (5 Replies)