209 lines
8.0 KiB
Bash
Executable File
209 lines
8.0 KiB
Bash
Executable File
#!/bin/bash
|
|
#-------------------------------------------------------------------------------
|
|
# Copyright (c) 2010 Sourcefabric O.P.S.
|
|
#
|
|
# This file is part of the Campcaster project.
|
|
# http://campcaster.sourcefabric.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
|
|
#
|
|
#-------------------------------------------------------------------------------
|
|
|
|
#-------------------------------------------------------------------------------
|
|
# 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: www-data]";
|
|
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=www-data;
|
|
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-create-database=no =yes --with-create-odbc-data-source=no =yes
|
|
# --with-init-database=no =yes --with-database=Campcaster-name
|
|
# --with-database-user=test --with-database-password=test
|
|
#
|
|
# --with-station-audio-out=default
|
|
# --with-studio-audio-out=default
|
|
# --with-studio-audio-cue=default
|
|
#
|
|
|
|
rm -rf $tmpdir/configure
|
|
echo "Now Configure ... Development Environment";
|
|
mv -f $logdir/configure_development_environment.log \
|
|
$logdir/configure_development_environment.log~
|
|
$bindir/autogen.sh \
|
|
> $logdir/configure_development_environment.log 2>&1
|
|
$basedir/configure --prefix=$usrdir --enable-debug \
|
|
--with-hostname=localhost \
|
|
--with-www-docroot=$usrdir/var \
|
|
--with-apache-group=$apache_group \
|
|
>> $logdir/configure_development_environment.log 2>&1
|
|
ls -l $logdir/configure_development_environment.log \
|
|
>> $logdir/configure_development_environment.log
|
|
echo "";
|
|
echo "Configure is done, the configure_development_environment.log is created";
|
|
echo "";
|
|
|
|
#-------------------------------------------------------------------------------
|
|
# Compile step by step
|
|
#-------------------------------------------------------------------------------
|
|
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, the 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, the 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 Modules is done, the 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 Products is done, the make_configure_products_setup.log is created";
|
|
echo "";
|
|
echo "Now Compiling ... Modules ... Products";
|
|
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, the make_compile_setup.log is created";
|
|
echo "";
|
|
|
|
#-------------------------------------------------------------------------------
|
|
# User setup
|
|
#-------------------------------------------------------------------------------
|
|
echo "Setting up user settings ...";
|
|
|
|
$bindir/user_setup.sh --apache-group=$apache_group || exit 1
|
|
|
|
#-------------------------------------------------------------------------------
|
|
# 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, the make_check_setup.log is created";
|
|
echo "";
|
|
|
|
#-------------------------------------------------------------------------------
|
|
# We're done
|
|
#-------------------------------------------------------------------------------
|
|
echo "Done."
|
|
|