1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
|
#!/bin/ksh
#
# This program 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.
#
# This program 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 this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# (c)Copyright 2006 Hewlett-Packard Development Company, LP.
#
BUILD_UNCOMPRESS=""
#BUILD_VERSION_FILE=build.conf
CURRENT_DIR=`pwd`
EXT_SRC_DIR="sipp-external-lib-src"
EXTBUILD_CONF_FILE=sipp-build-ext-lib.conf
EXT_ROOT_DIR=${CURRENT_DIR}
function kerror
{
echo "ERROR: $1"
exit 1
}
function kwarning
{
echo "WARNING: $1"
}
function symbol_value
{
L_symbol=$1
eval L_value='$'${L_symbol}
echo ${L_value}
}
echo "[Building external library]"
#if test -f ${BUILD_VERSION_FILE}
#then
# . ./${BUILD_VERSION_FILE}
# BUILD_VERSION=${PROJECT_VERSION}
#else
# kerror "no version file ${BUILD_VERSION_FILE} found"
#fi
BUILD_VERSION=3.2
EXT_VERSION=${BUILD_VERSION}
if test -f ${EXTBUILD_CONF_FILE}
then
. ./${EXTBUILD_CONF_FILE}
else
kerror "no version file ${EXTBUILD_CONF_FILE} found"
fi
# determine number of library to be generated
NB_BUILD=`cat ${EXTBUILD_CONF_FILE} | sed -n -e 's/^EXTBUILD_\([^_]*\)_FILE=.*$/\1/p' | sort -u`
echo -n "[External build "
for build in ${NB_BUILD}
do
echo -n "[${build}]"
done
echo "]"
if test ! -d ${CURRENT_DIR}/${EXT_SRC_DIR}
then
kerror "unable to find directory [${CURRENT_DIR}/${EXT_SRC_DIR}]"
fi
EXT_WORK_DIR="${CURRENT_DIR}/work-${BUILD_VERSION}"
EXT_BUILD_DIR="${CURRENT_DIR}/build-${BUILD_VERSION}"
if test -x /usr/bin/gzip
then
BUILD_UNCOMPRESS="/usr/bin/gzip -dv"
fi
if test -z "${BUILD_UNCOMPRESS}"
then
if test -x /bin/gzip
then
BUILD_UNCOMPRESS="/bin/gzip -dv"
fi
fi
if test -z "${BUILD_UNCOMPRESS}"
then
if test -x /usr/contrib/bin/gzip
then
BUILD_UNCOMPRESS="/usr/contrib/bin/gzip -dv"
fi
fi
if test -z "${BUILD_UNCOMPRESS}"
then
if test -x /usr/local/bin/gzip
then
BUILD_UNCOMPRESS="/usr/local/bin/gzip -dv"
fi
fi
if test -z "${BUILD_UNCOMPRESS}"
then
if test -x /usr/bin/uncompress
then
BUILD_UNCOMPRESS="/usr/bin/uncompress"
fi
fi
if test -z "${BUILD_UNCOMPRESS}"
then
kerror "Unable to find [gzip or uncompress]"
fi
echo "[Using ${BUILD_UNCOMPRESS}]"
if test ! -d ${EXT_WORK_DIR}
then
echo "[Creating directory ${EXT_WORK_DIR}]"
mkdir ${EXT_WORK_DIR}
fi
if test ! -d ${EXT_BUILD_DIR}
then
echo "[Creating directory ${EXT_BUILD_DIR}]"
mkdir ${EXT_BUILD_DIR}
fi
for build in ${NB_BUILD}
do
EXT_FILE=`symbol_value EXTBUILD_${build}_FILE`
echo "[File: ${EXT_FILE}]"
EXT_DIR=`symbol_value EXTBUILD_${build}_DIR`
echo "[Directory: ${EXT_DIR}]"
EXT_BEGINSCRIPT=`symbol_value EXTBUILD_${build}_BEGINSCRIPT`
echo "[Begin script: ${EXT_BEGINSCRIPT}]"
EXT_GENSCRIPT=`symbol_value EXTBUILD_${build}_GENSCRIPT`
echo "[Gen script: ${EXT_GENSCRIPT}]"
EXT_ENDSCRIPT=`symbol_value EXTBUILD_${build}_ENDSCRIPT`
echo "[End script: ${EXT_ENDSCRIPT}]"
echo "[go to directory ${EXT_WORK_DIR}]"
cd ${EXT_WORK_DIR}
if test -f ${CURRENT_DIR}/${EXT_SRC_DIR}/${EXT_FILE}
then
if test -d ${EXT_DIR}
then
echo "[Directory ${EXT_DIR} already exists]"
else
if test ! -f ${EXT_FILE}
then
cp ${CURRENT_DIR}/${EXT_SRC_DIR}/${EXT_FILE} .
fi
echo "[Executing ${BUILD_UNCOMPRESS} ${EXT_FILE}]"
${BUILD_UNCOMPRESS} ${EXT_FILE}
tar -xvf `echo ${EXT_FILE} | sed -e 's/\.tgz$/\.tar/' | sed -e 's/\.tar.gz$/\.tar/'`
if test ! -d ${EXT_DIR}
then
kerror "[Directory ${EXT_DIR} not created]"
fi
fi
else
kerror "unable to find directory [${CURRENT_DIR}/${EXT_SRC_DIR}/${EXT_FILE}]"
fi
cd ${EXT_DIR}
if test -n ${EXT_GENSCRIPT}
then
echo "[Executing ${EXT_GENSCRIPT}]"
${EXT_GENSCRIPT}
fi
if test -n ${EXT_ENDSCRIPT}
then
echo "[Executing ${EXT_ENDSCRIPT}]"
${EXT_ENDSCRIPT}
fi
cd ${CURRENT_DIR}
echo "[go to directory ${CURRENT_DIR}]"
done
|