#!/bin/bash
#===========================
# UMVIRT LINUX FROM SCRATCH 
#===========================
# Compilation script.
# Network mode. 
#===========================
# Release: 0.2.3
# Package: GConf
#===========================
# DB commit: be1eaeb9e1d7ba0146566f8c9226f3f3cf6c6aa8
# APP commit: 1ca4178aea919e4c9e869e3d650ff8af9678bd6f
#===========================

echo "ULFS Package installation start"
echo "==============================="
echo "Package: GConf" 
echo "Release: 0.2.3" 

echo "checking config file"
if [ -f $ULFS_CONFIG_FILE ]
then
echo "loading config file $ULFS_CONFIG_FILE..."
. $ULFS_CONFIG_FILE
fi
#Creating log directory
mkdir -p /var/log/ulfs-packages/GConf/
#Saving start timestamp
date +%s > /var/log/ulfs-packages/GConf/start.time
#Going to source directory...
cd /sources
#Checking dependances...
      #Checking libxml2...
      if [ ! -f /var/cache/ulfs-packages/libxml2 ]; then
           echo "Dependance \"libxml2\" not found. Trying to install...";
           wget --no-check-certificate https://umvirt.com/linux/packages//0.2.3/libxml2/install -O - | bash
           if [ ! -f /var/cache/ulfs-packages/libxml2 ]; then
	             echo "Dependance \"libxml2\" is not installed. Exiting..."
               exit
           fi
      fi
      #Checking gobject-introspection...
      if [ ! -f /var/cache/ulfs-packages/gobject-introspection ]; then
           echo "Dependance \"gobject-introspection\" not found. Trying to install...";
           wget --no-check-certificate https://umvirt.com/linux/packages//0.2.3/gobject-introspection/install -O - | bash
           if [ ! -f /var/cache/ulfs-packages/gobject-introspection ]; then
	             echo "Dependance \"gobject-introspection\" is not installed. Exiting..."
               exit
           fi
      fi
      #Checking gtk3...
      if [ ! -f /var/cache/ulfs-packages/gtk3 ]; then
           echo "Dependance \"gtk3\" not found. Trying to install...";
           wget --no-check-certificate https://umvirt.com/linux/packages//0.2.3/gtk3/install -O - | bash
           if [ ! -f /var/cache/ulfs-packages/gtk3 ]; then
	             echo "Dependance \"gtk3\" is not installed. Exiting..."
               exit
           fi
      fi
      #Checking dbus-glib...
      if [ ! -f /var/cache/ulfs-packages/dbus-glib ]; then
           echo "Dependance \"dbus-glib\" not found. Trying to install...";
           wget --no-check-certificate https://umvirt.com/linux/packages//0.2.3/dbus-glib/install -O - | bash
           if [ ! -f /var/cache/ulfs-packages/dbus-glib ]; then
	             echo "Dependance \"dbus-glib\" is not installed. Exiting..."
               exit
           fi
      fi
      #Checking polkit...
      if [ ! -f /var/cache/ulfs-packages/polkit ]; then
           echo "Dependance \"polkit\" not found. Trying to install...";
           wget --no-check-certificate https://umvirt.com/linux/packages//0.2.3/polkit/install -O - | bash
           if [ ! -f /var/cache/ulfs-packages/polkit ]; then
	             echo "Dependance \"polkit\" is not installed. Exiting..."
               exit
           fi
      fi
      #Checking OpenLDAP-client...
      if [ ! -f /var/cache/ulfs-packages/OpenLDAP-client ]; then
           echo "Dependance \"OpenLDAP-client\" not found. Trying to install...";
           wget --no-check-certificate https://umvirt.com/linux/packages//0.2.3/OpenLDAP-client/install -O - | bash
           if [ ! -f /var/cache/ulfs-packages/OpenLDAP-client ]; then
	             echo "Dependance \"OpenLDAP-client\" is not installed. Exiting..."
               exit
           fi
      fi
#Saving downloading timestamp
date +%s > /var/log/ulfs-packages/GConf/download.time
#Downloading source package archive...
wget --no-check-certificate -nc .md5sum
wget --no-check-certificate -nc 
#Checking source package file existance
if [ ! -f GConf-3.2.6.tar.xz ]; then
echo "Error: Can't find GConf-3.2.6.tar.xz. Exiting!"
exit
fi
#Checking source package file checksum
if [ -f GConf-3.2.6.tar.xz.md5sum ]; then
    MD5=`LANG=C md5sum -c GConf-3.2.6.tar.xz.md5sum | grep OK`
    if [ "$MD5" == "" ] ; then
    echo "Error: Checksum of GConf-3.2.6.tar.xz is wrong. Exiting!"
    exit
    fi
fi
    #Saving cleanup timestamp
    date +%s > /var/log/ulfs-packages/GConf/cleanup.time
rm -rfv /sources/GConf-3.2.6/
#Saving extracting timestamp
date +%s > /var/log/ulfs-packages/GConf/unpack.time
#Extracting tar source package archive with default parameters...
tar -xf GConf-3.2.6.tar.xz
#Checking package directory size after unpack...
du -s GConf-3.2.6 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/GConf/unpack.size 
#Going to source package directory...
cd GConf-3.2.6
#Saving configuration timestamp
date +%s > /var/log/ulfs-packages/GConf/configure.time
#Sleep 1 second
sleep 1
if [[ "$ULFS_PKG_DATERESET" == "YES" ]]
then
#Changing all files creation time (except build configuration files) in source directory to find them after installation
find /sources/GConf-3.2.6 \! -path "*/configure*" \! -path "*/Makefile*" \! -path "*.make" \! -path "*.m4" \! -path "*.am" \! -path "*.mk" \! -path "*.stamp" \! -path "*gentpl.py"  -exec touch -m {} +
fi
#Running configuration script...
echo "checking config file"
if [ -f $ULFS_CONFIG_FILE ]
then
echo "loading config file $ULFS_CONFIG_FILE..."
. $ULFS_CONFIG_FILE
fi
cat > ulfs_configure.sh << EOIS
echo "Initializing distributed build environment... "
if [[ "\$ULFS_ICECC" == "YES" ]]
then
    export PATH="\$ULFS_ICECC_PATH:\$PATH"
    echo "ICECC"
fi

echo "Environment debug..."
echo "PATH: \$PATH"
echo "MAKEFLAGS: \$MAKEFLAGS"
echo "NINJAJOBS: \$NINJAJOBS"
env | grep ULFS


ARG_STATIC="--disable-static"
if [[ "\$ULFS_PKG_STATIC" == "YES" ]]
then
    ARG_STATIC="--enable-static"
fi

./configure --prefix=/usr \\
            --sysconfdir=/etc \\
            --disable-orbit \\
            \$ARG_STATIC

EOIS
cat ulfs_configure.sh | bash 2>&1 | tee /var/log/ulfs-packages/GConf/configure.log 
#Saving build timestamp
date +%s > /var/log/ulfs-packages/GConf/build.time
#Running build script...
echo "checking config file"
if [ -f $ULFS_CONFIG_FILE ]
then
echo "loading config file $ULFS_CONFIG_FILE..."
. $ULFS_CONFIG_FILE
fi
cat > ulfs_build.sh << EOIS
echo "Initializing distributed build environment... "
if [[ "\$ULFS_ICECC" == "YES" ]]
then
    export PATH="\$ULFS_ICECC_PATH:\$PATH"
    echo "ICECC"
fi

echo "Environment debug..."
echo "PATH: \$PATH"
echo "MAKEFLAGS: \$MAKEFLAGS"
echo "NINJAJOBS: \$NINJAJOBS"
env | grep ULFS


make
EOIS
cat ulfs_build.sh | bash 2>&1 | tee /var/log/ulfs-packages/GConf/build.log 
#Saving install timestamp
date +%s > /var/log/ulfs-packages/GConf/install.time
#Running install script...
cat > ulfs_install.sh << EOIS
make install &&
ln -s gconf.xml.defaults /etc/gconf/gconf.xml.system
EOIS
USER=`whoami`
if [ "$USER" == "root" ] ; then 
cat ulfs_install.sh | bash 2>&1 | tee /var/log/ulfs-packages/GConf/install.log 
else
cat ulfs_install.sh | sudo bash 2>&1 | tee /var/log/ulfs-packages/GConf/install.log 
fi
#Saving finish timestamp
date +%s > /var/log/ulfs-packages/GConf/finish.time
#Checking package directory size after unpack...
cd /sources 
du -s GConf-3.2.6 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/GConf/install.size 
echo "ULFS package installation completed."
#Producing files list
echo "Looking for installed files..."
if [  -f /var/log/ulfs-packages/GConf/files.txt ]; then
rm /var/log/ulfs-packages/GConf/files.txt
fi
USER=`whoami`
if [ "$USER" == "root" ] ; then 
find /bin -type f -newer /var/log/ulfs-packages/GConf/configure.time \! -newer /var/log/ulfs-packages/GConf/finish.time >> /var/log/ulfs-packages/GConf/files.txt
find /sbin -type f -newer /var/log/ulfs-packages/GConf/configure.time \! -newer /var/log/ulfs-packages/GConf/finish.time >> /var/log/ulfs-packages/GConf/files.txt
find /usr -type f -newer /var/log/ulfs-packages/GConf/configure.time \! -newer /var/log/ulfs-packages/GConf/finish.time >> /var/log/ulfs-packages/GConf/files.txt
find /etc -type f -newer /var/log/ulfs-packages/GConf/configure.time \! -newer /var/log/ulfs-packages/GConf/finish.time >> /var/log/ulfs-packages/GConf/files.txt
find /opt -type f -newer /var/log/ulfs-packages/GConf/configure.time \! -newer /var/log/ulfs-packages/GConf/finish.time >> /var/log/ulfs-packages/GConf/files.txt
find /lib -type f -newer /var/log/ulfs-packages/GConf/configure.time \! -newer /var/log/ulfs-packages/GConf/finish.time >> /var/log/ulfs-packages/GConf/files.txt
find /lib64 -type f -newer /var/log/ulfs-packages/GConf/configure.time \! -newer /var/log/ulfs-packages/GConf/finish.time >> /var/log/ulfs-packages/GConf/files.txt
find /var -type f -newer /var/log/ulfs-packages/GConf/configure.time \! -newer /var/log/ulfs-packages/GConf/finish.time \! -path "/var/log/ulfs-packages/GConf/*" >> /var/log/ulfs-packages/GConf/files.txt
else
sudo find /bin -type f -newer /var/log/ulfs-packages/GConf/configure.time \! -newer /var/log/ulfs-packages/GConf/finish.time >> /var/log/ulfs-packages/GConf/files.txt
sudo find /sbin -type f -newer /var/log/ulfs-packages/GConf/configure.time \! -newer /var/log/ulfs-packages/GConf/finish.time >> /var/log/ulfs-packages/GConf/files.txt
sudo find /usr -type f -newer /var/log/ulfs-packages/GConf/configure.time \! -newer /var/log/ulfs-packages/GConf/finish.time >> /var/log/ulfs-packages/GConf/files.txt
sudo find /etc -type f -newer /var/log/ulfs-packages/GConf/configure.time \! -newer /var/log/ulfs-packages/GConf/finish.time >> /var/log/ulfs-packages/GConf/files.txt
sudo find /opt -type f -newer /var/log/ulfs-packages/GConf/configure.time \! -newer /var/log/ulfs-packages/GConf/finish.time >> /var/log/ulfs-packages/GConf/files.txt
sudo find /lib -type f -newer /var/log/ulfs-packages/GConf/configure.time \! -newer /var/log/ulfs-packages/GConf/finish.time >> /var/log/ulfs-packages/GConf/files.txt
sudo find /lib64 -type f -newer /var/log/ulfs-packages/GConf/configure.time \! -newer /var/log/ulfs-packages/GConf/finish.time >> /var/log/ulfs-packages/GConf/files.txt
sudo find /var -type f -newer /var/log/ulfs-packages/GConf/configure.time \! -newer /var/log/ulfs-packages/GConf/finish.time \!  -path "/var/log/ulfs-packages/GConf/*" >> /var/log/ulfs-packages/GConf/files.txt
fi
#Marking package as installed...
mkdir -p /var/cache/ulfs-packages
USER=`whoami`
if [ "$USER" == "root" ] ; then 
touch /var/cache/ulfs-packages/GConf
else
sudo touch /var/cache/ulfs-packages/GConf
fi
#Calculate delta size
a=`cat /var/log/ulfs-packages/GConf/unpack.size`
b=`cat /var/log/ulfs-packages/GConf/install.size`
c=$(($b-$a))
echo $c > /var/log/ulfs-packages/GConf/delta.size 
#Calculate prepare time
a=`cat /var/log/ulfs-packages/GConf/start.time`
b=`cat /var/log/ulfs-packages/GConf/configure.time`
dp=$(($b-$a))
#Calculate download time
a=`cat /var/log/ulfs-packages/GConf/download.time`
b=`cat /var/log/ulfs-packages/GConf/unpack.time`
dd=$(($b-$a))
#Calculate delta time
a=`cat /var/log/ulfs-packages/GConf/configure.time`
b=`cat /var/log/ulfs-packages/GConf/finish.time`
db=$(($b-$a))
echo $db > /var/log/ulfs-packages/GConf/delta.time 
#Report
echo ""
echo "ULFS Package installation report"
echo "================================"
echo "Package: GConf" 
echo "Release: 0.2.3" 
echo "Build size: $c" 
echo "Prepare time: $dp sec." 
echo "Download time: $dd sec." 
echo "Build time: $db sec." 

#End of script