[f4ed135] | 1 | #!/bin/bash
|
---|
| 2 | #
|
---|
| 3 | # Read and parse the configuration parameters..
|
---|
| 4 | #
|
---|
| 5 | set -e
|
---|
| 6 |
|
---|
[b8e5cad] | 7 | TRACKFILE=$1
|
---|
| 8 | if test -z "$TRACKFILE"; then
|
---|
[b734bfb] | 9 | TRACKFILE=tracking-dir/instpkg.xml
|
---|
[b8e5cad] | 10 | fi
|
---|
| 11 | TOPDIR=$2
|
---|
[e576789] | 12 | if test -z "$TOPDIR"; then
|
---|
| 13 | TOPDIR=$(pwd)
|
---|
| 14 | fi
|
---|
[b8e5cad] | 15 | BLFS_FULL=$3
|
---|
[e576789] | 16 | if test -z "$BLFS_FULL"; then
|
---|
| 17 | BLFS_FULL=${TOPDIR}/blfs-xml/tmp/blfs-full.xml
|
---|
| 18 | fi
|
---|
[b8e5cad] | 19 | LFS_FULL=$4
|
---|
[607ef21] | 20 | if test -z "$LFS_FULL"; then
|
---|
| 21 | LFS_FULL=${TOPDIR}/lfs-xml/tmp/lfs-full.xml
|
---|
| 22 | fi
|
---|
[e576789] | 23 | declare -r ConfigFile="${TOPDIR}/configuration"
|
---|
| 24 | declare DepDir="${TOPDIR}/dependencies"
|
---|
| 25 | declare LibDir="${TOPDIR}/libs"
|
---|
| 26 | declare PackFile="${TOPDIR}/packages.xml"
|
---|
| 27 | declare BookXml="${TOPDIR}/book.xml"
|
---|
| 28 | declare MakeBook="${TOPDIR}/xsl/make_book.xsl"
|
---|
[a690d42] | 29 | declare GetVersion="${TOPDIR}/xsl/get_version.xsl"
|
---|
[e576789] | 30 | declare MakeScripts="${TOPDIR}/xsl/scripts.xsl"
|
---|
| 31 | declare BookHtml="${TOPDIR}/book-html"
|
---|
| 32 | declare BLFS_XML="${TOPDIR}/blfs-xml"
|
---|
| 33 | declare -a TARGET
|
---|
[f4ed135] | 34 | declare DEP_LEVEL
|
---|
| 35 | declare SUDO
|
---|
[625cb14] | 36 | declare LANGUAGE
|
---|
[945ccaa] | 37 | declare WRAP_INSTALL
|
---|
[9daa202] | 38 | declare PACK_INSTALL
|
---|
[625cb14] | 39 | declare DEL_LA_FILES
|
---|
| 40 | declare STATS
|
---|
[9daa202] | 41 | declare SRC_ARCHIVE
|
---|
| 42 | declare SRC_SUBDIRS
|
---|
| 43 | declare BUILD_ROOT
|
---|
| 44 | declare BUILD_SUBDIRS
|
---|
| 45 | declare KEEP_FILES
|
---|
| 46 | declare -i JOBS
|
---|
| 47 | declare CFG_CFLAGS
|
---|
| 48 | declare CFG_CXXFLAGS
|
---|
| 49 | declare CFG_LDFLAGS
|
---|
[f4ed135] | 50 |
|
---|
| 51 | #--------------------------#
|
---|
| 52 | parse_configuration() { #
|
---|
| 53 | #--------------------------#
|
---|
[e576789] | 54 | local -i cntr=0
|
---|
| 55 | local -a optTARGET
|
---|
[f4ed135] | 56 |
|
---|
[e576789] | 57 | while read; do
|
---|
[f4ed135] | 58 |
|
---|
| 59 | # Garbage collection
|
---|
| 60 | case ${REPLY} in
|
---|
| 61 | \#* | '') continue ;;
|
---|
| 62 | esac
|
---|
| 63 |
|
---|
| 64 | case "${REPLY}" in
|
---|
| 65 | # Create global variables for these parameters.
|
---|
| 66 | optDependency=* | \
|
---|
| 67 | MAIL_SERVER=* | \
|
---|
[945ccaa] | 68 | WRAP_INSTALL=* | \
|
---|
[9daa202] | 69 | PACK_INSTALL=* | \
|
---|
[dc7fd7b] | 70 | DEL_LA_FILES=* | \
|
---|
[67c3df4] | 71 | STATS=* | \
|
---|
[625cb14] | 72 | LANGUAGE=* | \
|
---|
[9daa202] | 73 | SUDO=* | \
|
---|
| 74 | SRC_ARCHIVE=* | \
|
---|
| 75 | SRC_SUBDIRS=* | \
|
---|
| 76 | BUILD_ROOT=* | \
|
---|
| 77 | BUILD_SUBDIRS=* | \
|
---|
| 78 | KEEP_FILES=* | \
|
---|
| 79 | JOBS=* | \
|
---|
| 80 | CFG_CFLAGS=* | \
|
---|
| 81 | CFG_CXXFLAGS=* | \
|
---|
| 82 | CFG_LDFLAGS=* ) eval ${REPLY} # Define/set a global variable..
|
---|
[f4ed135] | 83 | continue ;;
|
---|
| 84 | esac
|
---|
| 85 |
|
---|
[a96109a] | 86 | if [[ "${REPLY}" =~ ^CONFIG_ ]]; then
|
---|
[e576789] | 87 | echo "$REPLY"
|
---|
| 88 | optTARGET[$((cntr++))]=$( echo $REPLY | sed -e 's@CONFIG_@@' -e 's@=y@@' )
|
---|
[f4ed135] | 89 | fi
|
---|
[e576789] | 90 | done < $ConfigFile
|
---|
[f4ed135] | 91 |
|
---|
[e576789] | 92 | if (( $cntr == 0 )); then
|
---|
| 93 | echo -e "\n>>> NO TARGET SELECTED.. application terminated"
|
---|
| 94 | echo -e " Run <make> again and select (a) package(s) to build\n"
|
---|
[f4ed135] | 95 | exit 0
|
---|
| 96 | fi
|
---|
[e576789] | 97 | TARGET=(${optTARGET[*]})
|
---|
[f4ed135] | 98 | DEP_LEVEL=$optDependency
|
---|
| 99 | SUDO=${SUDO:-n}
|
---|
[945ccaa] | 100 | WRAP_INSTALL=${WRAP_INSTALL:-n}
|
---|
[dc7fd7b] | 101 | DEL_LA_FILES=${DEL_LA_FILES:-n}
|
---|
[67c3df4] | 102 | STATS=${STATS:-n}
|
---|
[9daa202] | 103 | # Other boolean variables are supposed to be either set or unset. Their values
|
---|
| 104 | # are not relevant
|
---|
[f4ed135] | 105 | }
|
---|
| 106 |
|
---|
| 107 | #--------------------------#
|
---|
| 108 | validate_configuration() { #
|
---|
| 109 | #--------------------------#
|
---|
| 110 | local -r dotSTR=".................."
|
---|
[9daa202] | 111 | local -r PARAM_LIST="DEP_LEVEL SUDO LANGUAGE MAIL_SERVER WRAP_INSTALL PACK_INSTALL DEL_LA_FILES STATS SRC_ARCHIVE SRC_SUBDIRS BUILD_ROOT BUILD_SUBDIRS KEEP_FILES JOBS CFG_CFLAGS CFG_CXXFLAGS CFG_LDFLAGS"
|
---|
[f4ed135] | 112 | local -r PARAM_VALS='${config_param}${dotSTR:${#config_param}} ${L_arrow}${BOLD}${!config_param}${OFF}${R_arrow}'
|
---|
| 113 | local config_param
|
---|
[e576789] | 114 | local -i index
|
---|
[f4ed135] | 115 |
|
---|
| 116 | for config_param in ${PARAM_LIST}; do
|
---|
| 117 | echo -e "`eval echo $PARAM_VALS`"
|
---|
| 118 | done
|
---|
[e576789] | 119 | for (( index=0 ; index < ${#TARGET[*]} ; index ++ )); do
|
---|
| 120 | echo -e "TARGET${index}${dotSTR:6} ${L_arrow}${BOLD}${TARGET[${index}]}${OFF}${R_arrow}"
|
---|
| 121 | done
|
---|
[f4ed135] | 122 | }
|
---|
| 123 |
|
---|
| 124 | #
|
---|
[e576789] | 125 | # Generates the root of the dependency tree
|
---|
[f4ed135] | 126 | #
|
---|
| 127 | #--------------------------#
|
---|
[67c3df4] | 128 | generate_deps() { #
|
---|
[f4ed135] | 129 | #--------------------------#
|
---|
| 130 |
|
---|
[e576789] | 131 | local -i index
|
---|
| 132 | local DepDir=$1
|
---|
[2140f22] | 133 | rm -f $DepDir/*.{tree,dep}
|
---|
[e576789] | 134 | for (( index=0 ; index < ${#TARGET[*]} ; index ++ )); do
|
---|
[2140f22] | 135 | echo 1 b ${TARGET[${index}]} >> $DepDir/root.dep
|
---|
[f4ed135] | 136 | done
|
---|
| 137 | }
|
---|
| 138 |
|
---|
| 139 | #
|
---|
| 140 | # Clean configuration file keeping only global default settings.
|
---|
| 141 | # That prevent "trying to assign nonexistent symbol" messages
|
---|
| 142 | # and assures that there is no TARGET selected from a previous run
|
---|
| 143 | #
|
---|
| 144 | #--------------------------#
|
---|
| 145 | clean_configuration() { #
|
---|
| 146 | #--------------------------#
|
---|
| 147 |
|
---|
[e576789] | 148 | tail -n 15 ${ConfigFile} > ${ConfigFile}.tmp
|
---|
| 149 | mv ${ConfigFile}.tmp ${ConfigFile}
|
---|
[f4ed135] | 150 |
|
---|
| 151 | }
|
---|
| 152 |
|
---|
| 153 | #---------------------
|
---|
| 154 | # Constants
|
---|
[e576789] | 155 | source ${LibDir}/constants.inc
|
---|
[f4ed135] | 156 | [[ $? > 0 ]] && echo -e "\n\tERROR: constants.inc did not load..\n" && exit
|
---|
| 157 |
|
---|
| 158 | #---------------------
|
---|
| 159 | # Dependencies module
|
---|
[e576789] | 160 | source ${LibDir}/func_dependencies
|
---|
[f4ed135] | 161 | [[ $? > 0 ]] && echo -e "\n\tERROR: func_dependencies did not load..\n" && exit
|
---|
| 162 |
|
---|
| 163 | #------- MAIN --------
|
---|
[e576789] | 164 | if [[ ! -f ${PackFile} ]] ; then
|
---|
[f4ed135] | 165 | echo -e "\tNo packages file has been found.\n"
|
---|
| 166 | echo -e "\tExecution aborted.\n"
|
---|
| 167 | exit 1
|
---|
| 168 | fi
|
---|
| 169 |
|
---|
| 170 |
|
---|
| 171 | parse_configuration
|
---|
| 172 | validate_configuration
|
---|
| 173 | echo "${SD_BORDER}${nl_}"
|
---|
| 174 | echo -n "Are you happy with these settings? yes/no (no): "
|
---|
| 175 | read ANSWER
|
---|
| 176 | if [ x$ANSWER != "xyes" ] ; then
|
---|
| 177 | echo "${nl_}Rerun make and fix your settings.${nl_}"
|
---|
| 178 | exit 1
|
---|
| 179 | fi
|
---|
| 180 | echo "${nl_}${SD_BORDER}${nl_}"
|
---|
[e576789] | 181 |
|
---|
| 182 | rm -rf $DepDir
|
---|
| 183 | mkdir $DepDir
|
---|
| 184 | generate_deps $DepDir
|
---|
| 185 | pushd $DepDir > /dev/null
|
---|
| 186 | set +e
|
---|
[2140f22] | 187 | generate_subgraph root.dep 1 1 b
|
---|
| 188 | echo -e "\n${SD_BORDER}"
|
---|
| 189 | echo Graph contains $(ls |wc -l) nodes
|
---|
| 190 | echo -e "${SD_BORDER}"
|
---|
| 191 | echo Cleaning subgraph...
|
---|
| 192 | clean_subgraph
|
---|
| 193 | echo done
|
---|
| 194 | echo Generating the tree
|
---|
| 195 | echo 1 > root.tree
|
---|
| 196 | echo 1 >> root.tree
|
---|
| 197 | cat root.dep >> root.tree
|
---|
| 198 | generate_dependency_tree root.tree 1
|
---|
| 199 | echo -e "\n${SD_BORDER}"
|
---|
[a690d42] | 200 | echo Generating the ordered full dependency list
|
---|
| 201 | FULL_LIST="$(tree_browse root.tree)"
|
---|
| 202 | set -e
|
---|
| 203 | popd > /dev/null
|
---|
| 204 | #echo "$FULL_LIST"
|
---|
[2140f22] | 205 | #echo -e \\n provisional end...
|
---|
| 206 | #exit
|
---|
| 207 | echo Generating the ordered package list
|
---|
[a690d42] | 208 | LIST=
|
---|
| 209 | while read p; do
|
---|
[7ae9774] | 210 | if [ "$p" != "${p%-pass1}" ]; then
|
---|
| 211 | # If the pass2 is installed, no need for pass1. We get its
|
---|
| 212 | # installed version from TRACKFILE; We could use PackFile, but
|
---|
| 213 | # the test would be slightly more complicated.
|
---|
| 214 | echo Treating $p
|
---|
| 215 | pass2_v=$(xsltproc --stringparam package "${p%-pass1}" \
|
---|
| 216 | $GetVersion $TRACKFILE | head -n1)
|
---|
| 217 | echo Found pass2_v=$pass2_v
|
---|
| 218 | if [ -n "$pass2_v" ]; then continue; fi
|
---|
| 219 | # We need to get the installed version from TRACKFILE
|
---|
| 220 | inst_v=$(xsltproc --stringparam package "$p" $GetVersion $TRACKFILE | \
|
---|
| 221 | head -n1)
|
---|
| 222 | if [ -z "$inst_v" ]; then inst_v=0; fi
|
---|
| 223 | echo Found inst_v=$inst_v
|
---|
| 224 | # The available version is taken from PackFile
|
---|
| 225 | avail_v=$(xsltproc --stringparam package "${p%-pass1}" \
|
---|
| 226 | $GetVersion $PackFile | head -n1)
|
---|
| 227 | echo Found avail_v=$avail_v
|
---|
| 228 | versions="$avail_v
|
---|
| 229 | $inst_v"
|
---|
| 230 | echo which gives versions=$versions
|
---|
| 231 | else
|
---|
| 232 | versions=$(xsltproc --stringparam package "$p" $GetVersion $PackFile)
|
---|
| 233 | fi
|
---|
[a690d42] | 234 | if [ "$versions" != "$(sort -V <<<$versions)" ]; then
|
---|
| 235 | LIST="$LIST $p"
|
---|
| 236 | fi
|
---|
| 237 | done <<<$FULL_LIST
|
---|
| 238 | #echo \""$LIST"\"
|
---|
| 239 | #echo -e \\n provisional end...
|
---|
| 240 | #exit
|
---|
[e576789] | 241 | rm -f ${BookXml}
|
---|
| 242 | echo Making XML book
|
---|
[607ef21] | 243 | xsltproc --stringparam list "$LIST" \
|
---|
[2140f22] | 244 | --stringparam MTA "$MAIL_SERVER" \
|
---|
[607ef21] | 245 | --stringparam lfsbook "$LFS_FULL" \
|
---|
[e576789] | 246 | -o ${BookXml} \
|
---|
| 247 | ${MakeBook} \
|
---|
| 248 | $BLFS_FULL
|
---|
| 249 | echo "making HTML book (may take some time...)"
|
---|
| 250 | xsltproc -o ${BookHtml}/ \
|
---|
| 251 | -stringparam chunk.quietly 1 \
|
---|
| 252 | ${BLFS_XML}/stylesheets/blfs-chunked.xsl \
|
---|
| 253 | ${BookXml}
|
---|
| 254 | if [ ! -d ${BookHtml}/stylesheets ]
|
---|
| 255 | then mkdir -p ${BookHtml}/stylesheets
|
---|
| 256 | cp ${BLFS_XML}/stylesheets/lfs-xsl/*.css ${BookHtml}/stylesheets
|
---|
| 257 | fi
|
---|
| 258 | if [ ! -d ${BookHtml}/images ]
|
---|
| 259 | then mkdir -p ${BookHtml}/images
|
---|
| 260 | cp ${BLFS_XML}/images/*.png ${BookHtml}/images
|
---|
| 261 | fi
|
---|
| 262 | for ht in ${BookHtml}/*.html
|
---|
[c5650f9] | 263 | do sed -i 's@\.\./stylesheets@stylesheets@' $ht
|
---|
| 264 | sed -i 's@\.\./images@images@' $ht
|
---|
[e576789] | 265 | done
|
---|
| 266 | echo -en "\n\tGenerating the build scripts ...\n"
|
---|
| 267 | rm -rf scripts
|
---|
[67c3df4] | 268 | if test $STATS = y; then
|
---|
| 269 | LIST_STAT="${TARGET[*]}"
|
---|
| 270 | else
|
---|
| 271 | LIST_STAT=""
|
---|
| 272 | fi
|
---|
[9daa202] | 273 | xsltproc --xinclude --nonet \
|
---|
| 274 | --stringparam language "$LANGUAGE" \
|
---|
| 275 | --stringparam sudo "$SUDO" \
|
---|
| 276 | --stringparam wrap-install "$WRAP_INSTALL" \
|
---|
| 277 | --stringparam pack-install "$PACK_INSTALL" \
|
---|
| 278 | --stringparam del-la-files "$DEL_LA_FILES" \
|
---|
| 279 | --stringparam list-stat "$LIST_STAT" \
|
---|
| 280 | --stringparam src-archive "$SRC_ARCHIVE" \
|
---|
| 281 | --stringparam src-subdirs "$SRC_SUBDIRS" \
|
---|
| 282 | --stringparam build-root "$BUILD_ROOT" \
|
---|
| 283 | --stringparam build-subdirs "$BUILD_SUBDIRS" \
|
---|
| 284 | --stringparam keep-files "$KEEP_FILES" \
|
---|
| 285 | --param jobs "$JOBS" \
|
---|
| 286 | --stringparam cfg-cflags "$CFG_CFLAGS" \
|
---|
| 287 | --stringparam cfg-cxxflags "$CFG_CXXFLAGS" \
|
---|
| 288 | --stringparam cfg-ldflags "$CFG_LDFLAGS" \
|
---|
| 289 | --stringparam fqdn "$(hostname -f)" \
|
---|
| 290 | --output ./scripts/ \
|
---|
| 291 | ${MakeScripts} \
|
---|
[e576789] | 292 | ${BookXml}
|
---|
| 293 | # Make the scripts executable.
|
---|
| 294 | chmod -R +x scripts
|
---|
| 295 | echo -e "done\n"
|
---|
| 296 |
|
---|
| 297 | #clean_configuration
|
---|