223 lines
8.5 KiB
Bash
Executable File
223 lines
8.5 KiB
Bash
Executable File
#!/bin/bash
|
|
#-------------------------------------------------------------------------------
|
|
# Copyright (c) 2004 Media Development Loan Fund
|
|
#
|
|
# This file is part of the Campcaster project.
|
|
# http://campcaster.campware.org/
|
|
# To report bugs, send an e-mail to bugs@campware.org
|
|
#
|
|
# Campcaster is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Campcaster is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with Campcaster; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
#
|
|
#
|
|
# Author : $Author$
|
|
# Version : $Revision$
|
|
# Location : $URL$
|
|
#-------------------------------------------------------------------------------
|
|
#-------------------------------------------------------------------------------
|
|
# A script to set up the development environment for Campcaster
|
|
#
|
|
# Invoke as:
|
|
# ./bin/setupDevelopmentEnvironmentAndLog.sh
|
|
#-------------------------------------------------------------------------------
|
|
|
|
#-------------------------------------------------------------------------------
|
|
# Determine directories, files
|
|
#-------------------------------------------------------------------------------
|
|
reldir=`dirname $0`/..
|
|
basedir=`cd $reldir; pwd;`
|
|
bindir=$basedir/bin
|
|
tmpdir=$basedir/tmp
|
|
logdir=$basedir/tmp
|
|
|
|
usrdir=`cd $basedir/usr; pwd;`
|
|
|
|
#-------------------------------------------------------------------------------
|
|
# Print the usage information for this script.
|
|
#-------------------------------------------------------------------------------
|
|
printUsage()
|
|
{
|
|
echo "Campcaster development environment setup script.";
|
|
echo "parameters";
|
|
echo "";
|
|
echo " -g, --apache-group The group the apache daemon runs as.";
|
|
echo " [default: apache]";
|
|
echo " -h, --help Print this message and exit.";
|
|
echo "";
|
|
}
|
|
|
|
|
|
#-------------------------------------------------------------------------------
|
|
# Process command line parameters
|
|
#-------------------------------------------------------------------------------
|
|
CMD=${0##*/}
|
|
|
|
opts=$(getopt -o g:h -l apache-group:,help -n $CMD -- "$@") || exit 1
|
|
eval set -- "$opts"
|
|
while true; do
|
|
case "$1" in
|
|
-g|--apache-group)
|
|
apache_group=$2;
|
|
shift; shift;;
|
|
-h|--help)
|
|
printUsage;
|
|
exit 0;;
|
|
--)
|
|
shift;
|
|
break;;
|
|
*)
|
|
echo "Unrecognized option $1.";
|
|
printUsage;
|
|
exit 1;
|
|
esac
|
|
done
|
|
|
|
if [ "x$apache_group" = "x" ]; then
|
|
apache_group=apache;
|
|
fi
|
|
|
|
|
|
#------------------------------------------------------------------------------
|
|
# All steps are being logged
|
|
#------------------------------------------------------------------------------
|
|
echo "";
|
|
echo "The compile process will be started. All steps are being logged in";
|
|
echo "$logdir ";
|
|
echo "";
|
|
|
|
#------------------------------------------------------------------------------
|
|
# Cleaning the setup
|
|
#------------------------------------------------------------------------------
|
|
mv -f $logdir/make_modprod_distclean_setup.log \
|
|
$logdir/make_modprod_distclean_setup.log~
|
|
make -C $basedir modprod_distclean \
|
|
> $logdir/make_modprod_distclean_setup.log 2>&1
|
|
ls -l $logdir/make_modprod_distclean_setup.log \
|
|
>> $logdir/make_modprod_distclean_setup.log
|
|
|
|
#-------------------------------------------------------------------------------
|
|
# Create the configure script, using setup parameters
|
|
#-------------------------------------------------------------------------------
|
|
# --prefix=$usrdir --with-www-docroot=$usrdir/var =/var/www
|
|
# --with-hostname=localhost --with-apache-group=$apache_group
|
|
# --enable-debug --with-configure-apache=no =yes
|
|
#
|
|
# --with-check-boost=no =yes --with-check-gtk=yes =no
|
|
# --with-check-gtkmm=yes =no --with-check-icu=yes =no
|
|
# --with-check-libxmlpp=yes =no
|
|
#
|
|
# --with-create-database=no =yes --with-create-odbc-data-source=no =yes
|
|
# --with-init-database=no =yes
|
|
#
|
|
# --with-database=Campcaster =Campcaster-test
|
|
# --with-database-user=campcaster =test
|
|
# --with-database-password=campcaster =test
|
|
#
|
|
# --with-station-audio-out=default
|
|
# --with-studio-audio-out=default
|
|
# --with-studio-audio-cue=default
|
|
|
|
rm -rf $tmpdir/configure
|
|
echo "Now Configure ... ";
|
|
mv -f $logdir/configure_development_environment_autogen.log \
|
|
$logdir/configure_development_environment_autogen.log~
|
|
mv -f $logdir/configure_development_environment.log \
|
|
$logdir/configure_development_environment.log~
|
|
$bindir/autogen.sh \
|
|
> $logdir/configure_development_environment_autogen.log 2>&1
|
|
$basedir/configure --with-hostname=localhost --with-www-docroot=$usrdir/var \
|
|
--prefix=$usrdir --with-apache-group=$apache_group \
|
|
--with-check-boost=yes --with-check-gtk=yes \
|
|
--with-check-gtkmm=yes --with-check-icu=yes \
|
|
--with-check-libxmlpp=yes --enable-debug \
|
|
> $logdir/configure_development_environment.log 2>&1
|
|
echo "";
|
|
echo "Configure is done, configure_development_environment.log is created";
|
|
echo "";
|
|
|
|
|
|
#-------------------------------------------------------------------------------
|
|
# Compile step by step, including the tools
|
|
#-------------------------------------------------------------------------------
|
|
echo "Now Compiling ... Tools";
|
|
mv -f $logdir/make_install_tools_setup.log \
|
|
$logdir/make_install_tools_setup.log~
|
|
make -C $basedir tools_setup \
|
|
> $logdir/make_install_tools_setup.log 2>&1
|
|
ls -l $logdir/make_install_tools_setup.log \
|
|
>> $logdir/make_install_tools_setup.log
|
|
echo "Done Tools Setup, make_install_tools_setup.log is created";
|
|
echo "";
|
|
echo "Now Compiling ... Doxytag";
|
|
mv -f $logdir/make_doxytag_setup.log \
|
|
$logdir/make_doxytag_setup.log~
|
|
make -C $basedir doxytag_setup \
|
|
> $logdir/make_doxytag_setup.log 2>&1
|
|
ls -l $logdir/make_doxytag_setup.log \
|
|
>> $logdir/make_doxytag_setup.log
|
|
echo "Done Doxytag Setup, make_doxytag_setup.log is created";
|
|
echo "";
|
|
echo "Now Configure ... Modules ... Products";
|
|
mv -f $logdir/make_configure_modules_setup.log \
|
|
$logdir/make_configure_modules_setup.log~
|
|
make -C $basedir modules_setup \
|
|
> $logdir/make_configure_modules_setup.log 2>&1
|
|
ls -l $logdir/make_configure_modules_setup.log \
|
|
>> $logdir/make_configure_modules_setup.log
|
|
echo "Configure the Modules is done, make_configure_modules_setup.log is created";
|
|
mv -f $logdir/make_configure_products_setup.log \
|
|
$logdir/make_configure_products_setup.log~
|
|
make -C $basedir products_setup \
|
|
> $logdir/make_configure_products_setup.log 2>&1
|
|
ls -l $logdir/make_configure_products_setup.log \
|
|
>> $logdir/make_configure_products_setup.log
|
|
echo "Configure the Products is done, make_configure_products_setup.log is created";
|
|
echo "";
|
|
echo "Now Compiling ...";
|
|
mv -f $logdir/make_compile_setup.log \
|
|
$logdir/make_compile_setup.log~
|
|
make -C $basedir compile \
|
|
> $logdir/make_compile_setup.log 2>&1
|
|
ls -l $logdir/make_compile_setup.log \
|
|
>> $logdir/make_compile_setup.log
|
|
echo "Compiling is done, make_compile_setup.log is created";
|
|
echo "";
|
|
|
|
#-------------------------------------------------------------------------------
|
|
# Checking what we have done
|
|
#-------------------------------------------------------------------------------
|
|
echo "Now Checking ...";
|
|
mv -f $logdir/make_check_setup.log \
|
|
$logdir/make_check_setup.log~
|
|
make -C $basedir check \
|
|
> $logdir/make_check_setup.log 2>&1
|
|
ls -l $logdir/make_check_setup.log \
|
|
>> $logdir/make_check_setup.log
|
|
echo "Checking is be done, make_check_setup.log is created";
|
|
echo "";
|
|
|
|
#-------------------------------------------------------------------------------
|
|
# User setup
|
|
#-------------------------------------------------------------------------------
|
|
echo "Setting up user settings ...";
|
|
|
|
$bindir/user_setup.sh --apache-group=$apache_group || exit 1
|
|
|
|
|
|
#-------------------------------------------------------------------------------
|
|
# We're done
|
|
#-------------------------------------------------------------------------------
|
|
echo "Done."
|
|
|