################################################################################
# Configures the kde-build script.                                             #
# (c)2000, 2001, 2002 by Frerich Raabe <raabe@kde.org>                         #
################################################################################

# Where are your KDE sources?
#
KDESRCDIR="/home/coolo/prod"

# Where your KDE should be build
# set to empty if built in KDESRCDIR
KDEBUILDDIR="/build/coolo"

# Where shall I put the binaries?
#
KDEDIRS="/home/coolo/prod/KDE"

# Where is your Qt 3.0.x?
#
QTDIR="/home/coolo/prod/qt-copy"

# If you would like logfiles of the compilation process, specify a directory
# here in which the logfiles will be saved. If you want to disable logfile
# generation, leave this blank.
#
KDELOGDIR="$KDESRCDIR/log"

# Do you want the logfiles to be compressed? Set this variable to "yes" to
# make the script compress the logfiles using bzip2 (using gzip as a
# fallback is bzip2 cannot be found) and thereby save some diskspace.
#
COMPRESSLOGS="no"

# Whether or not you want to compile and install the kdesupport module.
#
USEKDESUPPORT="yes"

# Add modules you want to get compiled to this space-seperated list. Note that
# you don't have to mention the fundamental modules 'arts, 'kdesupport',
# 'kdelibs' and 'kdebase' here since the kde-build script will care about them
# automatically.
#
KDEMODULES="kdenetwork kdegames kdeutils kdepim kdesdk kdemultimedia kdeartwork koffice kdetoys kdeadmin kdeedu kdegraphics kdeaddons kde-i18n"

# If you only want to cvs update the listed modules, set it to yes
# 
ONLYLISTEDMODULES=yes

# Do you want a clean install? This is recommended but please note that
# you cannot use your previous KDE desktop while the compilation is
# running. Set this to "no" to install the new snapshot over the previous
# one, otherwise set it to "yes".
#
INSTALLFROMSCRATCH="no"

# Do you plan to use this box otherwise while compiling? If so, you'd
# probably set this variable to "yes". If this is set to "no", the
# compilation process will try to eat up all the ressources, which speeds up
# the overall progress but makes it a PITA to work on this box. ;)
#
NICECOMPILE="yes"

# Set this variable to "yes" to activate certain cheap tweaks to speed up the
# compilation process. Those tweaks mainly consist of lowering the
# optimization of the resulting binary code.
#
TWEAKCOMPILE="no"

# Which command is used to update your sources?
# anoncvs and cvs users: set this to "cvs"
# cvsup users: set this to "cvsup"
#
CVSCLIENT="cvs"

# For CVS users only: Do you have a CVS account? If so, set this variable to
# the correct name, otherwise leave this blank to use anonymous CVS.
#
ACCOUNT="anonymous"

# Do you want any special branch? If so, specify its tag here e.g.
# KDE_2_2_BRANCH  or KDE_3_0_ALPHA_1. If you want the
# checked out branch, leave this empty. Use "HEAD" if you want
# the development branch for sure (leaving it empty will simply update
# whatever is there)
#
BRANCH=""

# For cvsup users only: specify your preferred cvsup mirror here, check
# http://www.kde.org/cvsupmirrors.html for a list of cvsup mirrors.
#
CVSUPSERVER="cvsup.kde.org"

# If there are any modules in $KDESRCDIR which you don't want to be updated,
# you can specify them in this space-seperated list, e.g. "qt-copy kde-common".
#
EXCLUDE=""

# If you would like a virgin cvs copy set this field to "yes", otherwise set
# this to "no" (if set to "yes", 'make -f admin/Makefile.common cvs-clean'
# is executed for every module).
# Developers might find this pretty dangerous considering that they could have
# forgotten to 'cvs add' a file... ;-)
# Users who want to stay at the bleeding edge will want to activate this in
# order to make sure there aren't any remains of a previous compile.
#
CVS_CLEAN="no"

# Flags to be passed to the 'configure' script.
#
CONFIGUREFLAGS="--disable-debug"

# You can define module-specific configure flags using
# CONFIGUREFLAGS_ARTS, CONFIGUREFLAGS_KDELIBS, etc. These are appended to the
# general $CONFIGUREFLAGS value

# set it to the path for unsermake if you want to test it instead of
# automake
USE_UNSERMAKE=""

# if you use an extra build dir (KDEBUILDDIR), then set it to yes to
# remove the module's directory before calling configure
BUILD_CLEAN=no

# If you would like to pass any parameters to make add them here. If you
# do not want to add any parameters leave this empty.
# example:
# MAKE_OPTS="-j 4 -l 4"
#
MAKE_OPTS=""

# if you use unsermake, you can define different flags for the actual
# compilation process. This is useful if you distribute the compilation
# process over several computers, but need to link on one. So you would
# define -j3 here and nothing above. 
# If you set something here, the value will be used alone, otherwise
# MAKE_OPTS will be used alone
MAKE_OPTS_COMPILE=""

# If you would like to compile with a different make, please set it
# here
MAKE=make

# vim:et:ts=2:sw=2
