#!/bin/bash #=========================== # UMVIRT LINUX FROM SCRATCH #=========================== # Compilation script. # Network mode. #=========================== # Release: 0.2.2 # Package: ghostscript #=========================== # DB commit: 48bb9ee31306c82c48dfaaad707eb4f6a926eb8a # APP commit: 1ca4178aea919e4c9e869e3d650ff8af9678bd6f #=========================== echo "ULFS Package installation start" echo "===============================" echo "Package: ghostscript" echo "Release: 0.2.2" 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/ghostscript/ #Saving start timestamp date +%s > /var/log/ulfs-packages/ghostscript/start.time #Going to source directory... cd /sources #Checking dependances... #Checking freetype-stage2... if [ ! -f /var/cache/ulfs-packages/freetype-stage2 ]; then echo "Dependance \"freetype-stage2\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/freetype-stage2/install -O - | bash if [ ! -f /var/cache/ulfs-packages/freetype-stage2 ]; then echo "Dependance \"freetype-stage2\" is not installed. Exiting..." exit fi fi #Checking fontconfig... if [ ! -f /var/cache/ulfs-packages/fontconfig ]; then echo "Dependance \"fontconfig\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/fontconfig/install -O - | bash if [ ! -f /var/cache/ulfs-packages/fontconfig ]; then echo "Dependance \"fontconfig\" is not installed. Exiting..." exit fi fi #Checking libjpeg-turbo... if [ ! -f /var/cache/ulfs-packages/libjpeg-turbo ]; then echo "Dependance \"libjpeg-turbo\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/libjpeg-turbo/install -O - | bash if [ ! -f /var/cache/ulfs-packages/libjpeg-turbo ]; then echo "Dependance \"libjpeg-turbo\" is not installed. Exiting..." exit fi fi #Checking tiff... if [ ! -f /var/cache/ulfs-packages/tiff ]; then echo "Dependance \"tiff\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/tiff/install -O - | bash if [ ! -f /var/cache/ulfs-packages/tiff ]; then echo "Dependance \"tiff\" 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.2/gtk3/install -O - | bash if [ ! -f /var/cache/ulfs-packages/gtk3 ]; then echo "Dependance \"gtk3\" is not installed. Exiting..." exit fi fi #Checking openjpeg... if [ ! -f /var/cache/ulfs-packages/openjpeg ]; then echo "Dependance \"openjpeg\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/openjpeg/install -O - | bash if [ ! -f /var/cache/ulfs-packages/openjpeg ]; then echo "Dependance \"openjpeg\" is not installed. Exiting..." exit fi fi #Checking lcms2... if [ ! -f /var/cache/ulfs-packages/lcms2 ]; then echo "Dependance \"lcms2\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/lcms2/install -O - | bash if [ ! -f /var/cache/ulfs-packages/lcms2 ]; then echo "Dependance \"lcms2\" is not installed. Exiting..." exit fi fi #Checking cups... if [ ! -f /var/cache/ulfs-packages/cups ]; then echo "Dependance \"cups\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/cups/install -O - | bash if [ ! -f /var/cache/ulfs-packages/cups ]; then echo "Dependance \"cups\" is not installed. Exiting..." exit fi fi #Saving downloading timestamp date +%s > /var/log/ulfs-packages/ghostscript/download.time #Downloading source package archive... wget --no-check-certificate -nc https://umvirt.com/linux/downloads/0.2.2/packages/g/ghostscript-10.03.1.tar.xz.md5sum wget --no-check-certificate -nc https://umvirt.com/linux/downloads/0.2.2/packages/g/ghostscript-10.03.1.tar.xz #Checking source package file existance if [ ! -f ghostscript-10.03.1.tar.xz ]; then echo "Error: Can't find ghostscript-10.03.1.tar.xz. Exiting!" exit fi #Checking source package file checksum if [ -f ghostscript-10.03.1.tar.xz.md5sum ]; then MD5=`LANG=C md5sum -c ghostscript-10.03.1.tar.xz.md5sum | grep OK` if [ "$MD5" == "" ] ; then echo "Error: Checksum of ghostscript-10.03.1.tar.xz is wrong. Exiting!" exit fi fi #Downloadning add-ons... #Downloadning add-on "ghostscript-fonts-std-8.11.tar.gz"... wget --no-check-certificate -nc https://umvirt.com/linux/downloads/0.2.2/packages/g/ghostscript-fonts-std-8.11.tar.gz.md5sum wget --no-check-certificate -nc https://umvirt.com/linux/downloads/0.2.2/packages/g/ghostscript-fonts-std-8.11.tar.gz #Checking addon file existance if [ ! -f ghostscript-fonts-std-8.11.tar.gz ]; then echo "Error: Can't find ghostscript-fonts-std-8.11.tar.gz. Exiting!" exit fi #Checking add-on file checksum if [ -f ghostscript-fonts-std-8.11.tar.gz.md5sum ]; then MD5=`LANG=C md5sum -c ghostscript-fonts-std-8.11.tar.gz.md5sum | grep OK` if [ "$MD5" == "" ] ; then echo "Error: Checksum of ghostscript-fonts-std-8.11.tar.gz is wrong. Exiting!" exit fi fi #Downloadning add-on "gnu-gs-fonts-other-6.0.tar.gz"... wget --no-check-certificate -nc https://umvirt.com/linux/downloads/0.2.2/packages/g/gnu-gs-fonts-other-6.0.tar.gz.md5sum wget --no-check-certificate -nc https://umvirt.com/linux/downloads/0.2.2/packages/g/gnu-gs-fonts-other-6.0.tar.gz #Checking addon file existance if [ ! -f gnu-gs-fonts-other-6.0.tar.gz ]; then echo "Error: Can't find gnu-gs-fonts-other-6.0.tar.gz. Exiting!" exit fi #Checking add-on file checksum if [ -f gnu-gs-fonts-other-6.0.tar.gz.md5sum ]; then MD5=`LANG=C md5sum -c gnu-gs-fonts-other-6.0.tar.gz.md5sum | grep OK` if [ "$MD5" == "" ] ; then echo "Error: Checksum of gnu-gs-fonts-other-6.0.tar.gz is wrong. Exiting!" exit fi fi #Saving cleanup timestamp date +%s > /var/log/ulfs-packages/ghostscript/cleanup.time rm -rfv /sources/ghostscript-10.03.1/ #Saving extracting timestamp date +%s > /var/log/ulfs-packages/ghostscript/unpack.time #Extracting tar source package archive with default parameters... tar -xf ghostscript-10.03.1.tar.xz #Checking package directory size after unpack... du -s ghostscript-10.03.1 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/ghostscript/unpack.size #Going to source package directory... cd ghostscript-10.03.1 #Saving configuration timestamp date +%s > /var/log/ulfs-packages/ghostscript/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/ghostscript-10.03.1 \! -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 rm -rf freetype lcms2mt jpeg libpng openjpeg sed -e '186 s/NewPassword =/*NewPassword =/' \\ -e '187 s/NewLen =/*NewLen =/' \\ -i pdf/pdf_sec.c rm -rf zlib ./configure --prefix=/usr \\ --disable-compile-inits \\ --with-system-libtiff EOIS cat ulfs_configure.sh | bash 2>&1 | tee /var/log/ulfs-packages/ghostscript/configure.log #Saving build timestamp date +%s > /var/log/ulfs-packages/ghostscript/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 make so EOIS cat ulfs_build.sh | bash 2>&1 | tee /var/log/ulfs-packages/ghostscript/build.log #Saving install timestamp date +%s > /var/log/ulfs-packages/ghostscript/install.time #Running install script... cat > ulfs_install.sh << EOIS make install make soinstall && install -v -m644 base/*.h /usr/include/ghostscript && ln -sfvn ghostscript /usr/include/ps mv -v /usr/share/doc/ghostscript/10.03.1 /usr/share/doc/ghostscript-10.03.1 && rmdir /usr/share/doc/ghostscript && cp -r examples/ -T /usr/share/ghostscript/10.03.1/examples tar -xvf ../ghostscript-fonts-std-8.11.tar.gz -C /usr/share/ghostscript --no-same-owner && tar -xvf ../gnu-gs-fonts-other-6.0.tar.gz -C /usr/share/ghostscript --no-same-owner && fc-cache -v /usr/share/ghostscript/fonts/ EOIS USER=`whoami` if [ "$USER" == "root" ] ; then cat ulfs_install.sh | bash 2>&1 | tee /var/log/ulfs-packages/ghostscript/install.log else cat ulfs_install.sh | sudo bash 2>&1 | tee /var/log/ulfs-packages/ghostscript/install.log fi #Saving finish timestamp date +%s > /var/log/ulfs-packages/ghostscript/finish.time #Checking package directory size after unpack... cd /sources du -s ghostscript-10.03.1 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/ghostscript/install.size echo "ULFS package installation completed." #Producing files list echo "Looking for installed files..." if [ -f /var/log/ulfs-packages/ghostscript/files.txt ]; then rm /var/log/ulfs-packages/ghostscript/files.txt fi USER=`whoami` if [ "$USER" == "root" ] ; then find /bin -type f -newer /var/log/ulfs-packages/ghostscript/configure.time \! -newer /var/log/ulfs-packages/ghostscript/finish.time >> /var/log/ulfs-packages/ghostscript/files.txt find /sbin -type f -newer /var/log/ulfs-packages/ghostscript/configure.time \! -newer /var/log/ulfs-packages/ghostscript/finish.time >> /var/log/ulfs-packages/ghostscript/files.txt find /usr -type f -newer /var/log/ulfs-packages/ghostscript/configure.time \! -newer /var/log/ulfs-packages/ghostscript/finish.time >> /var/log/ulfs-packages/ghostscript/files.txt find /etc -type f -newer /var/log/ulfs-packages/ghostscript/configure.time \! -newer /var/log/ulfs-packages/ghostscript/finish.time >> /var/log/ulfs-packages/ghostscript/files.txt find /opt -type f -newer /var/log/ulfs-packages/ghostscript/configure.time \! -newer /var/log/ulfs-packages/ghostscript/finish.time >> /var/log/ulfs-packages/ghostscript/files.txt find /lib -type f -newer /var/log/ulfs-packages/ghostscript/configure.time \! -newer /var/log/ulfs-packages/ghostscript/finish.time >> /var/log/ulfs-packages/ghostscript/files.txt find /lib64 -type f -newer /var/log/ulfs-packages/ghostscript/configure.time \! -newer /var/log/ulfs-packages/ghostscript/finish.time >> /var/log/ulfs-packages/ghostscript/files.txt find /var -type f -newer /var/log/ulfs-packages/ghostscript/configure.time \! -newer /var/log/ulfs-packages/ghostscript/finish.time \! -path "/var/log/ulfs-packages/ghostscript/*" >> /var/log/ulfs-packages/ghostscript/files.txt else sudo find /bin -type f -newer /var/log/ulfs-packages/ghostscript/configure.time \! -newer /var/log/ulfs-packages/ghostscript/finish.time >> /var/log/ulfs-packages/ghostscript/files.txt sudo find /sbin -type f -newer /var/log/ulfs-packages/ghostscript/configure.time \! -newer /var/log/ulfs-packages/ghostscript/finish.time >> /var/log/ulfs-packages/ghostscript/files.txt sudo find /usr -type f -newer /var/log/ulfs-packages/ghostscript/configure.time \! -newer /var/log/ulfs-packages/ghostscript/finish.time >> /var/log/ulfs-packages/ghostscript/files.txt sudo find /etc -type f -newer /var/log/ulfs-packages/ghostscript/configure.time \! -newer /var/log/ulfs-packages/ghostscript/finish.time >> /var/log/ulfs-packages/ghostscript/files.txt sudo find /opt -type f -newer /var/log/ulfs-packages/ghostscript/configure.time \! -newer /var/log/ulfs-packages/ghostscript/finish.time >> /var/log/ulfs-packages/ghostscript/files.txt sudo find /lib -type f -newer /var/log/ulfs-packages/ghostscript/configure.time \! -newer /var/log/ulfs-packages/ghostscript/finish.time >> /var/log/ulfs-packages/ghostscript/files.txt sudo find /lib64 -type f -newer /var/log/ulfs-packages/ghostscript/configure.time \! -newer /var/log/ulfs-packages/ghostscript/finish.time >> /var/log/ulfs-packages/ghostscript/files.txt sudo find /var -type f -newer /var/log/ulfs-packages/ghostscript/configure.time \! -newer /var/log/ulfs-packages/ghostscript/finish.time \! -path "/var/log/ulfs-packages/ghostscript/*" >> /var/log/ulfs-packages/ghostscript/files.txt fi #Marking package as installed... mkdir -p /var/cache/ulfs-packages USER=`whoami` if [ "$USER" == "root" ] ; then touch /var/cache/ulfs-packages/ghostscript else sudo touch /var/cache/ulfs-packages/ghostscript fi #Calculate delta size a=`cat /var/log/ulfs-packages/ghostscript/unpack.size` b=`cat /var/log/ulfs-packages/ghostscript/install.size` c=$(($b-$a)) echo $c > /var/log/ulfs-packages/ghostscript/delta.size #Calculate prepare time a=`cat /var/log/ulfs-packages/ghostscript/start.time` b=`cat /var/log/ulfs-packages/ghostscript/configure.time` dp=$(($b-$a)) #Calculate download time a=`cat /var/log/ulfs-packages/ghostscript/download.time` b=`cat /var/log/ulfs-packages/ghostscript/unpack.time` dd=$(($b-$a)) #Calculate delta time a=`cat /var/log/ulfs-packages/ghostscript/configure.time` b=`cat /var/log/ulfs-packages/ghostscript/finish.time` db=$(($b-$a)) echo $db > /var/log/ulfs-packages/ghostscript/delta.time #Report echo "" echo "ULFS Package installation report" echo "================================" echo "Package: ghostscript" echo "Release: 0.2.2" echo "Build size: $c" echo "Prepare time: $dp sec." echo "Download time: $dd sec." echo "Build time: $db sec." #End of script