1 | #!/bin/bash
|
---|
2 | #
|
---|
3 | # Read and parse the configuration parameters..
|
---|
4 | #
|
---|
5 | set -e
|
---|
6 |
|
---|
7 | TRACKFILE=$1
|
---|
8 | if test -z "$TRACKFILE"; then
|
---|
9 | TRACKFILE=tracking-dir/instpkg.xml
|
---|
10 | fi
|
---|
11 | TOPDIR=$2
|
---|
12 | if test -z "$TOPDIR"; then
|
---|
13 | TOPDIR=$(pwd)
|
---|
14 | fi
|
---|
15 | BLFS_FULL=$3
|
---|
16 | if test -z "$BLFS_FULL"; then
|
---|
17 | BLFS_FULL=${TOPDIR}/blfs-xml/tmp/blfs-full.xml
|
---|
18 | fi
|
---|
19 | LFS_FULL=$4
|
---|
20 | if test -z "$LFS_FULL"; then
|
---|
21 | LFS_FULL=${TOPDIR}/lfs-xml/tmp/lfs-full.xml
|
---|
22 | fi
|
---|
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"
|
---|
29 | declare GetVersion="${TOPDIR}/xsl/get_version.xsl"
|
---|
30 | declare MakeScripts="${TOPDIR}/xsl/scripts.xsl"
|
---|
31 | declare BookHtml="${TOPDIR}/book-html"
|
---|
32 | declare BLFS_XML="${TOPDIR}/blfs-xml"
|
---|
33 | declare -a TARGET
|
---|
34 | declare DEP_LEVEL
|
---|
35 | declare SUDO
|
---|
36 | declare LANGUAGE
|
---|
37 | declare WRAP_INSTALL
|
---|
38 | declare PACK_INSTALL
|
---|
39 | declare DEL_LA_FILES
|
---|
40 | declare STATS
|
---|
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
|
---|
50 |
|
---|
51 | #--------------------------#
|
---|
52 | parse_configuration() { #
|
---|
53 | #--------------------------#
|
---|
54 | local -i cntr=0
|
---|
55 | local -a optTARGET
|
---|
56 |
|
---|
57 | while read; do
|
---|
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=* | \
|
---|
68 | WRAP_INSTALL=* | \
|
---|
69 | PACK_INSTALL=* | \
|
---|
70 | DEL_LA_FILES=* | \
|
---|
71 | STATS=* | \
|
---|
72 | LANGUAGE=* | \
|
---|
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..
|
---|
83 | continue ;;
|
---|
84 | esac
|
---|
85 |
|
---|
86 | if [[ "${REPLY}" =~ ^CONFIG_ ]]; then
|
---|
87 | echo "$REPLY"
|
---|
88 | optTARGET[$((cntr++))]=$( echo $REPLY | sed -e 's@CONFIG_@@' -e 's@=y@@' )
|
---|
89 | fi
|
---|
90 | done < $ConfigFile
|
---|
91 |
|
---|
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"
|
---|
95 | exit 0
|
---|
96 | fi
|
---|
97 | TARGET=(${optTARGET[*]})
|
---|
98 | DEP_LEVEL=$optDependency
|
---|
99 | SUDO=${SUDO:-n}
|
---|
100 | WRAP_INSTALL=${WRAP_INSTALL:-n}
|
---|
101 | DEL_LA_FILES=${DEL_LA_FILES:-n}
|
---|
102 | STATS=${STATS:-n}
|
---|
103 | # Other boolean variables are supposed to be either set or unset. Their values
|
---|
104 | # are not relevant
|
---|
105 | }
|
---|
106 |
|
---|
107 | #--------------------------#
|
---|
108 | validate_configuration() { #
|
---|
109 | #--------------------------#
|
---|
110 | local -r dotSTR=".................."
|
---|
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"
|
---|
112 | local -r PARAM_VALS='${config_param}${dotSTR:${#config_param}} ${L_arrow}${BOLD}${!config_param}${OFF}${R_arrow}'
|
---|
113 | local config_param
|
---|
114 | local -i index
|
---|
115 |
|
---|
116 | for config_param in ${PARAM_LIST}; do
|
---|
117 | echo -e "`eval echo $PARAM_VALS`"
|
---|
118 | done
|
---|
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
|
---|
122 | }
|
---|
123 |
|
---|
124 | #
|
---|
125 | # Generates the root of the dependency tree
|
---|
126 | #
|
---|
127 | #--------------------------#
|
---|
128 | generate_deps() { #
|
---|
129 | #--------------------------#
|
---|
130 |
|
---|
131 | local -i index
|
---|
132 | local DepDir=$1
|
---|
133 | rm -f $DepDir/*.{tree,dep}
|
---|
134 | for (( index=0 ; index < ${#TARGET[*]} ; index ++ )); do
|
---|
135 | echo 1 b ${TARGET[${index}]} >> $DepDir/root.dep
|
---|
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 |
|
---|
148 | tail -n 15 ${ConfigFile} > ${ConfigFile}.tmp
|
---|
149 | mv ${ConfigFile}.tmp ${ConfigFile}
|
---|
150 |
|
---|
151 | }
|
---|
152 |
|
---|
153 | #---------------------
|
---|
154 | # Constants
|
---|
155 | source ${LibDir}/constants.inc
|
---|
156 | [[ $? > 0 ]] && echo -e "\n\tERROR: constants.inc did not load..\n" && exit
|
---|
157 |
|
---|
158 | #---------------------
|
---|
159 | # Dependencies module
|
---|
160 | source ${LibDir}/func_dependencies
|
---|
161 | [[ $? > 0 ]] && echo -e "\n\tERROR: func_dependencies did not load..\n" && exit
|
---|
162 |
|
---|
163 | #------- MAIN --------
|
---|
164 | if [[ ! -f ${PackFile} ]] ; then
|
---|
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_}"
|
---|
181 |
|
---|
182 | rm -rf $DepDir
|
---|
183 | mkdir $DepDir
|
---|
184 | generate_deps $DepDir
|
---|
185 | pushd $DepDir > /dev/null
|
---|
186 | set +e
|
---|
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}"
|
---|
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"
|
---|
205 | #echo -e \\n provisional end...
|
---|
206 | #exit
|
---|
207 | echo Generating the ordered package list
|
---|
208 | LIST=
|
---|
209 | while read p; do
|
---|
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
|
---|
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
|
---|
241 | rm -f ${BookXml}
|
---|
242 | echo Making XML book
|
---|
243 | xsltproc --stringparam list "$LIST" \
|
---|
244 | --stringparam MTA "$MAIL_SERVER" \
|
---|
245 | --stringparam lfsbook "$LFS_FULL" \
|
---|
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
|
---|
263 | do sed -i 's@\.\./stylesheets@stylesheets@' $ht
|
---|
264 | sed -i 's@\.\./images@images@' $ht
|
---|
265 | done
|
---|
266 | echo -en "\n\tGenerating the build scripts ...\n"
|
---|
267 | rm -rf scripts
|
---|
268 | if test $STATS = y; then
|
---|
269 | LIST_STAT="${TARGET[*]}"
|
---|
270 | else
|
---|
271 | LIST_STAT=""
|
---|
272 | fi
|
---|
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} \
|
---|
292 | ${BookXml}
|
---|
293 | # Make the scripts executable.
|
---|
294 | chmod -R +x scripts
|
---|
295 | echo -e "done\n"
|
---|
296 |
|
---|
297 | #clean_configuration
|
---|