[1d2f9d4] | 1 | #!/bin/bash
|
---|
| 2 | #
|
---|
| 3 | # $Id$
|
---|
| 4 | #
|
---|
| 5 | set -e
|
---|
| 6 |
|
---|
[41d4c11] | 7 | declare -i cntr=0
|
---|
| 8 | declare -a spaceSTR=" "
|
---|
| 9 |
|
---|
| 10 | #----------------------------#
|
---|
| 11 | generate_dependency_tree() { #
|
---|
| 12 | #----------------------------#
|
---|
| 13 | : <<inline_doc
|
---|
| 14 | function: Create a dependency tree for the TARGET
|
---|
| 15 | input vars: none
|
---|
| 16 | externals: vars: TARGET
|
---|
| 17 | PKGXML
|
---|
| 18 | DEP_LEVEL
|
---|
| 19 | func: do_dependencies
|
---|
[2a3e0f0] | 20 | modifies: vars: PKGXML
|
---|
[41d4c11] | 21 | BLFS_XML
|
---|
| 22 | returns: nothing
|
---|
| 23 | output: files: $TARGET.dep
|
---|
| 24 | $TARGET-index.xml.tmp
|
---|
| 25 | depure.txt
|
---|
| 26 | on error: nothing
|
---|
| 27 | on success: nothing
|
---|
| 28 | inline_doc
|
---|
| 29 |
|
---|
| 30 | local ENTRY_START
|
---|
| 31 | local ENTRY_END
|
---|
[2a3e0f0] | 32 |
|
---|
[41d4c11] | 33 | #---------------------
|
---|
| 34 | # Create the working directory and cd into it
|
---|
[6f0f0ed] | 35 | if [[ -d $TARGET ]] ; then
|
---|
| 36 | echo -e "\tERROR: Looks like $TARGET has been already processed."
|
---|
| 37 | echo -e "\tPlease delete or rename the $TARGET directory.\n"
|
---|
| 38 | exit 1
|
---|
| 39 | else
|
---|
| 40 | mkdir $TARGET && cd $TARGET
|
---|
| 41 | fi
|
---|
[41d4c11] | 42 |
|
---|
| 43 | #---------------------
|
---|
| 44 | # XML file of the target package
|
---|
| 45 | PKGXML=`grep "^$TARGET[[:space:]]" ../packages | cut -f2`
|
---|
| 46 |
|
---|
| 47 | #---------------------
|
---|
| 48 | # The BLFS sources directory.
|
---|
| 49 | BLFS_XML=`echo $PKGXML | sed -e 's,/.*,,'`
|
---|
| 50 |
|
---|
| 51 | if [[ ! -d ../$BLFS_XML ]] ; then
|
---|
| 52 | echo -e "\tThe BLFS book sources directory is missing.\n"
|
---|
| 53 | echo -e "\tExecution aborted.\n"
|
---|
| 54 | cd .. && rmdir $TARGET
|
---|
| 55 | exit 1
|
---|
| 56 | fi
|
---|
| 57 |
|
---|
| 58 | #---------------------
|
---|
| 59 | # XInclude stuff
|
---|
| 60 | ENTRY_START="<xi:include xmlns:xi=\"http://www.w3.org/2003/XInclude\" href=\"../"
|
---|
| 61 | ENTRY_END="\"/>"
|
---|
| 62 |
|
---|
[d0d9e90] | 63 | echo -e "\tGenerating $TARGET dependencies tree ..."
|
---|
[41d4c11] | 64 |
|
---|
[ad3bf2c] | 65 | mkdir dependencies
|
---|
| 66 |
|
---|
[41d4c11] | 67 | #---------------------
|
---|
| 68 | # Create target package dependencies list
|
---|
| 69 | case $TARGET in
|
---|
[f1fadeb] | 70 | # Skip the creation when all dependencies are circular.
|
---|
| 71 | alsa-lib | cracklib | libexif | unixodbc ) ;;
|
---|
[ad3bf2c] | 72 |
|
---|
[41d4c11] | 73 | # Meta-packages at target level
|
---|
[ad3bf2c] | 74 | alsa )
|
---|
[323f805] | 75 | cp ../libs/alsa.dep dependencies/
|
---|
[ad3bf2c] | 76 | ;;
|
---|
| 77 | gnome-core )
|
---|
| 78 | cp ../libs/gnome-core.dep dependencies/
|
---|
| 79 | ;;
|
---|
| 80 | gnome-full )
|
---|
| 81 | cp ../libs/gnome-{core,full}.dep dependencies/
|
---|
| 82 | ;;
|
---|
| 83 | kde-core )
|
---|
| 84 | cp ../libs/kde-core.dep dependencies/
|
---|
| 85 | ;;
|
---|
| 86 | kde-full )
|
---|
| 87 | cp ../libs/kde-{core,full}.dep dependencies/
|
---|
| 88 | ;;
|
---|
| 89 | kde-koffice )
|
---|
[323f805] | 90 | cp ../libs/kde-{core,full,koffice}.dep dependencies/
|
---|
[41d4c11] | 91 | ;;
|
---|
[f2a45d9] | 92 | xorg7 )
|
---|
[323f805] | 93 | cp ../libs/xorg7.dep dependencies/
|
---|
[6f0f0ed] | 94 | ;;
|
---|
[41d4c11] | 95 | * ) # Default
|
---|
| 96 | xsltproc --stringparam dependencies $DEP_LEVEL \
|
---|
| 97 | -o dependencies/$TARGET.dep \
|
---|
[2ca2992] | 98 | ../libs/dependencies.xsl ../$PKGXML
|
---|
[41d4c11] | 99 | ;;
|
---|
| 100 | esac
|
---|
| 101 |
|
---|
| 102 | #---------------------
|
---|
| 103 | # Start with a clean $TARGET-index.xml.tmp file
|
---|
| 104 | > $TARGET-index.xml.tmp
|
---|
| 105 |
|
---|
| 106 | #---------------------
|
---|
| 107 | # Write the XInclude
|
---|
[f1fadeb] | 108 | case $TARGET in
|
---|
| 109 | # If there is no usefull XML page, skip it.
|
---|
[5f14bd3] | 110 | alsa | gnome-core | gnome-full | kde-core | kde-full | kde-koffice | xorg7) ;;
|
---|
[f1fadeb] | 111 | * )
|
---|
| 112 | echo -e " $ENTRY_START$PKGXML$ENTRY_END" >> $TARGET-index.xml.tmp
|
---|
| 113 | ;;
|
---|
| 114 | esac
|
---|
[41d4c11] | 115 |
|
---|
| 116 | #---------------------
|
---|
| 117 | # If have dependencies, write its XInclude and find sub-dependencies
|
---|
| 118 | if [[ -f dependencies/$TARGET.dep ]]; then
|
---|
| 119 | mkdir xincludes && do_dependencies $TARGET
|
---|
| 120 | fi
|
---|
| 121 |
|
---|
[d0d9e90] | 122 | echo -e "\n\t... done"
|
---|
[41d4c11] | 123 | }
|
---|
| 124 |
|
---|
| 125 |
|
---|
| 126 |
|
---|
[1d2f9d4] | 127 | #-----------------------#
|
---|
[41d4c11] | 128 | do_dependencies() { # Loop to find sub-dependencies :::WARNING::: THIS IS A RECURVISE FUNCTION
|
---|
[1d2f9d4] | 129 | #-----------------------#
|
---|
[41d4c11] | 130 | : <<inline_doc
|
---|
| 131 | function: Loop through all the packages and create a sub-dependency tree
|
---|
| 132 | input vars: $1, package name
|
---|
| 133 | externals: vars: $DEP_LEVEL
|
---|
| 134 | $TARGET
|
---|
| 135 | $PRINT_SERVER
|
---|
| 136 | $KBR5
|
---|
| 137 | $GHOSTSCRIPT
|
---|
| 138 | $MAILSERVER
|
---|
[2d0a2e5] | 139 | $TRACKING_DIR
|
---|
[41d4c11] | 140 | file: depure.txt
|
---|
| 141 | $TARGET-index.xml.tmp
|
---|
| 142 | $PKG.dep
|
---|
[2a3e0f0] | 143 | $PKG.inc
|
---|
[41d4c11] | 144 | modifies: files
|
---|
| 145 | returns: nothing
|
---|
| 146 | output: file: $PKG-xinc.tmp
|
---|
| 147 | depure.txt
|
---|
| 148 | $TARGET-index.xml.tmp
|
---|
| 149 | on error: exit
|
---|
[2a3e0f0] | 150 | on success:
|
---|
[41d4c11] | 151 | inline_doc
|
---|
| 152 |
|
---|
[1d2f9d4] | 153 | set -e
|
---|
| 154 | local PKG=$1
|
---|
| 155 | local saveIFS=$IFS
|
---|
| 156 | local DEP_LV=$DEP_LEVEL
|
---|
[5f14bd3] | 157 | local line line2 DEP pkg_ver
|
---|
[2d0a2e5] | 158 | # Remove this when we can use configuration file
|
---|
[5f14bd3] | 159 | local TRACKING_DIR=/var/lib/jhalfs/BLFS
|
---|
[1d2f9d4] | 160 |
|
---|
[41d4c11] | 161 | #------------------
|
---|
| 162 | # If a premade xinclude file exists, use it. If not, create one
|
---|
[1d2f9d4] | 163 | if [[ -f xincludes/$PKG.xinc ]] ; then
|
---|
| 164 | IFS=$'\x0A'
|
---|
| 165 | for line in `cat xincludes/$PKG.xinc` ; do
|
---|
| 166 | IFS=$saveIFS
|
---|
| 167 | # Remove the Xinclude entry if found. We want the most newer one.
|
---|
| 168 | # Using double quotes to let bash expand variables.
|
---|
| 169 | # Remove also the empty line created. Can not be done in one step
|
---|
| 170 | # due that d requires the pattner between /, but we have a lot of /
|
---|
| 171 | # inside the pattner.
|
---|
| 172 | sed -e "s,^[[:space:]]*$line,," -e '/./!d' -i $TARGET-index.xml.tmp
|
---|
| 173 | # Write the XInclude
|
---|
| 174 | echo -e "$line" >> $TARGET-index.xml.tmp
|
---|
| 175 | done
|
---|
[41d4c11] | 176 | return
|
---|
| 177 | fi
|
---|
[2a3e0f0] | 178 |
|
---|
[41d4c11] | 179 | #------------------
|
---|
| 180 | # Start with a clean $PKG.xinc.tmp file
|
---|
| 181 | > xincludes/$PKG.xinc.tmp
|
---|
| 182 | for DEP in `cat dependencies/$PKG.dep`; do
|
---|
[5f14bd3] | 183 | # If DEP has been previouly installed, skip it
|
---|
| 184 | pkg_ver=$(grep "^${DEP}[[:space:]]" ../packages | cut -f3)
|
---|
| 185 | [ -e $TRACKING_DIR/${DEP}-$pkg_ver ] && continue
|
---|
[41d4c11] | 186 | # Special packages (a lot of hacks)
|
---|
| 187 | case $DEP in
|
---|
[2a3e0f0] | 188 |
|
---|
[4fe29a2] | 189 | db ) continue ;; # The proper version of DB is installed in LFS
|
---|
[4761b5a] | 190 |
|
---|
| 191 | # Don't have their own XML file
|
---|
[4fe29a2] | 192 | hal-requirements | hal-runtime-dependencies ) continue ;;
|
---|
| 193 | perl-* | tk-perl ) DEP=perl-modules ;;
|
---|
[41d4c11] | 194 |
|
---|
[1d2f9d4] | 195 | # Orphan links (proper link must be created when generating the book)
|
---|
[4761b5a] | 196 | arts ) DEP=aRts ;;
|
---|
| 197 | kde ) DEP=kde-core ;;
|
---|
[4fe29a2] | 198 |
|
---|
[1d2f9d4] | 199 | # Set values for alternative packages
|
---|
| 200 | # X is a meta-package, thus handled in another way.
|
---|
[4fe29a2] | 201 | LPRng | cups ) DEP=$PRINT_SERVER ;;
|
---|
| 202 | mitkrb | heimdal ) DEP=$KBR5 ;;
|
---|
| 203 | gs | espgs ) DEP=$GHOSTSCRIPT ;;
|
---|
| 204 | server-mail ) DEP=$MAIL_SERVER ;;
|
---|
[41d4c11] | 205 | esac
|
---|
| 206 |
|
---|
| 207 | #------------------
|
---|
[f1fadeb] | 208 | # Prevent circular dependencies
|
---|
| 209 | # If all dependencies are circular, the creation of the *.dep file
|
---|
| 210 | # must be skipped, not placed here, to avoid that the script will bomb
|
---|
| 211 | # due empty *.xinc files
|
---|
[41d4c11] | 212 | case $DEP in
|
---|
[2a3e0f0] | 213 | jadetex | perl-* | lynx | Links | w3m )
|
---|
| 214 | # Optional dependencies are runtime only
|
---|
| 215 | [[ "$PKG" = "docbook-utils" ]] && continue
|
---|
| 216 | ;;
|
---|
| 217 | libxslt )
|
---|
| 218 | # libxml2-->libxslt-->libxml2
|
---|
| 219 | [[ "$PKG" = "libxml2" ]] && continue
|
---|
| 220 | ;;
|
---|
| 221 | openldap | postgresql | $KBR5 )
|
---|
| 222 | # cyrus-sasl-->several-->cyrus-sasl
|
---|
| 223 | [[ "$PKG" = "cyrus-sasl" ]] && continue
|
---|
| 224 | ;;
|
---|
| 225 | espgs )
|
---|
| 226 | # sendmail-->espgs-->cups-->php-->sendmail
|
---|
[da8017e] | 227 | [[ "$PKG" = "$MAIL_SERVER" ]] && continue
|
---|
[2a3e0f0] | 228 | ;;
|
---|
| 229 | aRts )
|
---|
| 230 | # esound-->aRts-->esound
|
---|
| 231 | [[ "$PKG" = "esound" ]] && continue
|
---|
| 232 | ;;
|
---|
[f1fadeb] | 233 | gimp | sane )
|
---|
| 234 | # imagemagick-->{sane}-->gimp-->imagemagick
|
---|
[2a3e0f0] | 235 | [[ "$PKG" = "imagemagick" ]] && continue
|
---|
[41d4c11] | 236 | ;;
|
---|
[f1fadeb] | 237 | ffmpeg )
|
---|
| 238 | # alsa-plugins-->ffmpeg-->several-->alsa-plugins
|
---|
| 239 | [[ "$PKG" = "alsa-plugins" ]] && continue
|
---|
| 240 | ;;
|
---|
[ad3bf2c] | 241 | akode )
|
---|
| 242 | # Both are in the same page
|
---|
| 243 | [[ "$PKG" = "kdemultimedia" ]] && continue
|
---|
| 244 | ;;
|
---|
[41d4c11] | 245 | esac
|
---|
| 246 |
|
---|
| 247 | #------------------
|
---|
| 248 | # XML file of dependency package
|
---|
| 249 | DEP_XML=`grep "^$DEP[[:space:]]" ../packages | cut -f2`
|
---|
| 250 | case $DEP in
|
---|
[f1fadeb] | 251 | x-window-system | alsa ) ;; # No page for that (proper link must be created when generating the book)
|
---|
[41d4c11] | 252 | xorg7 ) ;; # This page will be dump in the xorg7.xinc file
|
---|
[ad3bf2c] | 253 | gnome-core | kde-core | kde-full ) ;; # Invented packages
|
---|
[41d4c11] | 254 | * )
|
---|
| 255 | # Remove the Xinclude entry if found
|
---|
| 256 | sed -e "s,^[[:space:]]*$ENTRY_START$DEP_XML$ENTRY_END,," \
|
---|
| 257 | -e '/./!d' -i xincludes/$PKG.xinc.tmp
|
---|
| 258 | # Write the XInclude
|
---|
| 259 | echo -e " $ENTRY_START$DEP_XML$ENTRY_END" >> xincludes/$PKG.xinc.tmp
|
---|
| 260 | ;;
|
---|
| 261 | esac
|
---|
| 262 |
|
---|
| 263 | #------------------
|
---|
| 264 | # If not already created, create its dependencies list
|
---|
| 265 | if [[ ! -f dependencies/$DEP.dep ]] ; then
|
---|
[1d2f9d4] | 266 | case $DEP in
|
---|
[f1fadeb] | 267 | # Skip the creation when all dependencies are circular.
|
---|
| 268 | alsa-lib | cracklib | libexif | unixodbc ) ;;
|
---|
[addb529] | 269 | # Meta-packages at dependency level
|
---|
[323f805] | 270 | alsa )
|
---|
| 271 | cp ../libs/alsa.dep dependencies/
|
---|
[41d4c11] | 272 | ;;
|
---|
[6a49a38] | 273 | kde-core )
|
---|
| 274 | cp ../libs/kde-core.dep dependencies/
|
---|
| 275 | ;;
|
---|
[41d4c11] | 276 | x-window-system ) # X11 alternatives
|
---|
[ad3bf2c] | 277 | echo -e "x-config\nx-setup\n$X11" > dependencies/x-window-system.dep
|
---|
[41d4c11] | 278 | ;;
|
---|
[323f805] | 279 | xorg7 ) # At dependencies level, remove x-config and x-setup
|
---|
| 280 | cp ../libs/xorg7.dep dependencies/
|
---|
| 281 | sed -i '/x-config/d;/x-setup/d' dependencies/xorg7.dep
|
---|
[41d4c11] | 282 | ;;
|
---|
| 283 | * ) xsltproc --stringparam dependencies $DEP_LV \
|
---|
[2ca2992] | 284 | -o dependencies/$DEP.dep ../libs/dependencies.xsl ../$DEP_XML
|
---|
[1d2f9d4] | 285 | ;;
|
---|
| 286 | esac
|
---|
[41d4c11] | 287 | fi
|
---|
| 288 |
|
---|
| 289 | #------------------
|
---|
| 290 | # If needed, process its dependencies
|
---|
| 291 | if [[ -f dependencies/$DEP.dep ]] ; then
|
---|
| 292 | # If a premade xinclude file esist, include it
|
---|
| 293 | if [[ -f xincludes/$DEP.xinc ]] ; then
|
---|
| 294 | IFS=$'\x0A'
|
---|
| 295 | for line2 in `cat xincludes/$DEP.xinc` ; do
|
---|
| 296 | IFS=$saveIFS
|
---|
[1d2f9d4] | 297 | # Remove the Xinclude entry if found
|
---|
[41d4c11] | 298 | sed -e "s,^[[:space:]]*$line2,," -e '/./!d' -i xincludes/$PKG.xinc.tmp
|
---|
[1d2f9d4] | 299 | # Write the XInclude
|
---|
[41d4c11] | 300 | echo -e "$line2" >> xincludes/$PKG.xinc.tmp
|
---|
| 301 | done
|
---|
| 302 | #------------------
|
---|
| 303 | # Create the xinclude file
|
---|
| 304 | else
|
---|
| 305 | #
|
---|
| 306 | # >>>>>> THIS IS A RECURSIVE FUNCTION CALL.. BEWARE OF GREMLINS. <<<<<<
|
---|
| 307 | #
|
---|
| 308 | # If the recursion depth is not too great this is an acceptable methodology for a script language
|
---|
| 309 | # However, uncontrolled recursion will cause a seg-fault due to stack issues with local variables.
|
---|
[2a3e0f0] | 310 | #
|
---|
[41d4c11] | 311 | set +e
|
---|
[d0d9e90] | 312 | [[ "${VERBOSITY}" > 0 ]] && echo -ne "\ncall: $((++cntr))${spaceSTR:0:$cntr}${RED}$DEP${OFF}"
|
---|
[41d4c11] | 313 | do_dependencies $DEP
|
---|
[d0d9e90] | 314 | [[ "${VERBOSITY}" > 0 ]] && echo -ne "\n ret: $cntr${spaceSTR:0:$((cntr--))}${GREEN}$DEP${OFF} Using $DEP Xinc to solve $PKG"
|
---|
[41d4c11] | 315 | set -e
|
---|
[2a3e0f0] | 316 |
|
---|
[41d4c11] | 317 | # Include it when done
|
---|
| 318 | IFS=$'\x0A'
|
---|
| 319 | for line2 in `cat xincludes/$DEP.xinc` ; do
|
---|
| 320 | IFS=$saveIFS
|
---|
| 321 | # Remove the Xinclude entry if found
|
---|
| 322 | sed -e "s,^[[:space:]]*$line2,," -e '/./!d' -i xincludes/$PKG.xinc.tmp
|
---|
| 323 | # Write the XInclude
|
---|
| 324 | echo -e "$line2" >> xincludes/$PKG.xinc.tmp
|
---|
| 325 | done
|
---|
[1d2f9d4] | 326 | fi
|
---|
| 327 | fi
|
---|
[41d4c11] | 328 | done
|
---|
| 329 |
|
---|
| 330 | #------------------
|
---|
| 331 | if [[ "$PKG" = "xorg7" ]] ; then
|
---|
| 332 | # Add their XInclude
|
---|
[addb529] | 333 | PKG_XML=${BLFS_XML}/x/installing/xorg7.xml
|
---|
[41d4c11] | 334 | echo -e " $ENTRY_START$PKG_XML$ENTRY_END" >> xincludes/$PKG.xinc.tmp
|
---|
[1d2f9d4] | 335 | fi
|
---|
| 336 |
|
---|
[41d4c11] | 337 | #------------------
|
---|
| 338 | mv xincludes/$PKG.xinc.tmp xincludes/$PKG.xinc
|
---|
| 339 | IFS=$'\x0A'
|
---|
| 340 | for line in `cat xincludes/$PKG.xinc` ; do
|
---|
| 341 | IFS=$saveIFS
|
---|
| 342 | # Remove the Xinclude entry if found.
|
---|
| 343 | sed -e "s,^[[:space:]]*$line,," -e '/./!d' -i $TARGET-index.xml.tmp
|
---|
| 344 | # Write the XInclude
|
---|
| 345 | echo -e "$line" >> $TARGET-index.xml.tmp
|
---|
| 346 | done
|
---|
[1d2f9d4] | 347 | }
|
---|