[e576789] | 1 | #!/bin/bash
|
---|
| 2 |
|
---|
| 3 | # $Id$
|
---|
| 4 |
|
---|
| 5 | #----------------------------# Prepare BLFS_ROOT and extract
|
---|
| 6 | install_blfs_tools() { # the scriptlets to build
|
---|
| 7 | #----------------------------# the dependency tools
|
---|
| 8 | set -e
|
---|
| 9 | # Install the files
|
---|
| 10 | [[ ! -d ${BUILDDIR}${BLFS_ROOT} ]] && mkdir -pv ${BUILDDIR}${BLFS_ROOT}
|
---|
| 11 | cp -r BLFS/* ${BUILDDIR}${BLFS_ROOT}
|
---|
| 12 | cp -r menu ${BUILDDIR}${BLFS_ROOT}
|
---|
| 13 | cp $COMMON_DIR/progress_bar.sh ${BUILDDIR}${BLFS_ROOT}
|
---|
| 14 | cp README.BLFS ${BUILDDIR}${BLFS_ROOT}
|
---|
| 15 |
|
---|
| 16 | # Clean-up
|
---|
| 17 | make -C ${BUILDDIR}${BLFS_ROOT}/menu clean
|
---|
| 18 | rm -rf ${BUILDDIR}${BLFS_ROOT}/libs/.svn
|
---|
| 19 | rm -rf ${BUILDDIR}${BLFS_ROOT}/xsl/.svn
|
---|
| 20 | rm -rf ${BUILDDIR}${BLFS_ROOT}/menu/.svn
|
---|
| 21 | rm -rf ${BUILDDIR}${BLFS_ROOT}/menu/lxdialog/.svn
|
---|
| 22 |
|
---|
| 23 | # Set some harcoded envars to their proper values
|
---|
| 24 | sed -i s@tracking-dir@$TRACKING_DIR@ \
|
---|
| 25 | ${BUILDDIR}${BLFS_ROOT}/{Makefile,gen-makefile.sh}
|
---|
| 26 | sed -i s@trunk/BOOK@$BLFS_TREE@ \
|
---|
| 27 | ${BUILDDIR}${BLFS_ROOT}/Makefile
|
---|
| 28 |
|
---|
[854854e] | 29 | # If we have a working copy, copy it:
|
---|
| 30 | if [[ "$BLFS_WORKING_COPY" = "y" ]]; then
|
---|
[382b083] | 31 | echo "copying the local BLFS working copy (may take some time)"
|
---|
[e58cf153] | 32 | # -r: recursive; -u: only if newer; -T: otherwise, would copy to a subdirectory
|
---|
[382b083] | 33 | # of blfs-xml, if blfs-xml already exists; --preserve=timestamps: if the local
|
---|
| 34 | # book has already been validated, tmp is posterior to the others, and
|
---|
| 35 | # validation will not be done again.
|
---|
| 36 | cp -ruT --preserve=timestamps $BLFS_WC_LOCATION \
|
---|
| 37 | ${BUILDDIR}${BLFS_ROOT}/blfs-xml
|
---|
[854854e] | 38 | fi
|
---|
| 39 | # Downloads the book if necessary, initialize the tracking file and the
|
---|
| 40 | # package database.
|
---|
[e576789] | 41 | # sudo is needed if $BUILDDIR/var/lib is owned by root and /var/lib/jhalfs
|
---|
| 42 | # has to be created
|
---|
| 43 | sudo make -j1 -C $BUILDDIR$BLFS_ROOT TRACKING_DIR=$BUILDDIR$TRACKING_DIR \
|
---|
| 44 | $BUILDDIR$BLFS_ROOT/packages.xml
|
---|
| 45 |
|
---|
| 46 | # Because the BLFS Makefile is supposed to be used in chroot (or booted)
|
---|
| 47 | # mode, the tracking file has wrong path for DTD. Change it:
|
---|
| 48 | sudo sed -i s@$BUILDDIR@@ $BUILDDIR$TRACKING_DIR/instpkg.xml
|
---|
| 49 |
|
---|
| 50 | # Manually build a 'configuration' file
|
---|
| 51 | if [ "$DEP_LIBXML" = y ]; then
|
---|
| 52 | LINE_LIBXML='CONFIG_libxml2=y'
|
---|
| 53 | else
|
---|
| 54 | LINE_LIBXML='#CONFIG_libxml2 is not set'
|
---|
| 55 | fi
|
---|
| 56 | if [ "$DEP_LIBXSLT" = y ]; then
|
---|
| 57 | LINE_LIBXSLT='CONFIG_libxslt=y'
|
---|
| 58 | else
|
---|
| 59 | LINE_LIBXSLT='#CONFIG_libxslt is not set'
|
---|
| 60 | fi
|
---|
| 61 | if [ "$DEP_TIDY" = y ]; then
|
---|
| 62 | LINE_TIDY='CONFIG_html-tidy=y'
|
---|
| 63 | else
|
---|
| 64 | LINE_TIDY='#CONFIG_html-tidy is not set'
|
---|
| 65 | fi
|
---|
[c1626d8] | 66 | # DocBook is a rec dep of libxslt
|
---|
| 67 | # if [ "$DEP_DBXML" = y ]; then
|
---|
| 68 | # LINE_DBXML='CONFIG_DocBook=y'
|
---|
| 69 | # else
|
---|
| 70 | # LINE_DBXML='#CONFIG_DocBook is not set'
|
---|
| 71 | # fi
|
---|
[e576789] | 72 | if [ "$DEP_LYNX" = y ]; then
|
---|
| 73 | LINE_LYNX='CONFIG_lynx=y'
|
---|
| 74 | else
|
---|
| 75 | LINE_LYNX='#CONFIG_lynx is not set'
|
---|
| 76 | fi
|
---|
| 77 | if [ "$DEP_SUDO" = y ]; then
|
---|
| 78 | LINE_SUDO='CONFIG_sudo=y'
|
---|
| 79 | else
|
---|
| 80 | LINE_SUDO='#CONFIG_sudo is not set'
|
---|
| 81 | fi
|
---|
| 82 | if [ "$DEP_WGET" = y ]; then
|
---|
| 83 | LINE_WGET='CONFIG_wget=y'
|
---|
| 84 | else
|
---|
| 85 | LINE_WGET='#CONFIG_wget is not set'
|
---|
| 86 | fi
|
---|
| 87 | if [ "$DEP_GPM" = y ]; then
|
---|
| 88 | LINE_GPM='CONFIG_gpm=y'
|
---|
| 89 | else
|
---|
| 90 | LINE_GPM='#CONFIG_gpm is not set'
|
---|
| 91 | fi
|
---|
| 92 | if [ "$DEP_SVN" = y ]; then
|
---|
| 93 | LINE_SVN='CONFIG_subversion=y'
|
---|
| 94 | else
|
---|
| 95 | LINE_SVN='#CONFIG_subversion is not set'
|
---|
| 96 | fi
|
---|
| 97 | if [ "$DEP_OPENSSL" = y ]; then
|
---|
| 98 | LINE_OPENSSL='CONFIG_openssl=y'
|
---|
| 99 | else
|
---|
| 100 | LINE_OPENSSL='#CONFIG_openssl is not set'
|
---|
| 101 | fi
|
---|
| 102 | if [ "$DEP_PYTHON" = y ]; then
|
---|
| 103 | LINE_PYTHON='CONFIG_python2=y'
|
---|
| 104 | else
|
---|
| 105 | LINE_PYTHON='#CONFIG_python2 is not set'
|
---|
| 106 | fi
|
---|
| 107 |
|
---|
| 108 | cat >$BUILDDIR$BLFS_ROOT/configuration <<EOF
|
---|
[1f25a75] | 109 | $LINE_OPENSSL
|
---|
[e576789] | 110 | $LINE_PYTHON
|
---|
| 111 | $LINE_LIBXML
|
---|
| 112 | $LINE_LIBXSLT
|
---|
| 113 | $LINE_TIDY
|
---|
| 114 | $LINE_WGET
|
---|
| 115 | $LINE_SVN
|
---|
| 116 | $LINE_GPM
|
---|
| 117 | $LINE_LYNX
|
---|
| 118 | $LINE_SUDO
|
---|
| 119 | MAIL_SERVER=sendmail
|
---|
| 120 | optDependency=2
|
---|
| 121 | SUDO=n
|
---|
| 122 | EOF
|
---|
| 123 |
|
---|
| 124 | # Generates the scripts for the blfs tools dependencies (in ./scripts)
|
---|
| 125 | yes "yes" | $BUILDDIR$BLFS_ROOT/gen_pkg_book.sh $BUILDDIR$BLFS_ROOT
|
---|
| 126 |
|
---|
| 127 | # Move the scriptlets where they should be
|
---|
| 128 | sudo rm -rf $BUILDDIR$BLFS_ROOT/scripts
|
---|
| 129 | mv scripts $BUILDDIR$BLFS_ROOT
|
---|
| 130 |
|
---|
| 131 | # Generates a list containing download and copying instructions for tarballs
|
---|
| 132 | echo -e '#!/bin/bash\nset -e\n' > $BUILDDIR$BLFS_ROOT/download_script
|
---|
| 133 | sed -n -e '/PACKAGE=/,/md5sum/p' \
|
---|
| 134 | -e '/PACKAGE1=/,/^fi/p' \
|
---|
| 135 | -e '/PATCH=/,/^fi/p' \
|
---|
[bbcdeab] | 136 | -e '/URL=/,/^fi/p' \
|
---|
[e576789] | 137 | $BUILDDIR$BLFS_ROOT/scripts/* >> $BUILDDIR$BLFS_ROOT/download_script
|
---|
| 138 | chmod u+x $BUILDDIR$BLFS_ROOT/download_script
|
---|
| 139 |
|
---|
| 140 | # Downloads (or copy) to build_dir/sources
|
---|
| 141 | pushd $BUILDDIR/sources
|
---|
| 142 | # Remove `unpacked' files if some have been left
|
---|
| 143 | sudo find . -name unpacked -exec rm \{\} \;
|
---|
| 144 | FTP_SERVER=$SERVER/pub/blfs/ SRC_ARCHIVE=$SRC_ARCHIVE $BUILDDIR$BLFS_ROOT/download_script
|
---|
| 145 | popd
|
---|
| 146 | rm -v $BUILDDIR$BLFS_ROOT/download_script
|
---|
| 147 |
|
---|
| 148 | # Suppresses unneeded parts of the scriptlets
|
---|
[c1626d8] | 149 | if [ "$DEP_LIBXSLT" = y ]; then
|
---|
[cbca63a] | 150 | # libxslt pulls docbook-xsl in, which populates the catalog with annoying
|
---|
| 151 | # **EDITME** references. Fortunately, those lines are regognizable because
|
---|
| 152 | # they occur between lines containing '/etc/xml/catalog' at the end of the
|
---|
| 153 | # line (without '&&'). I have not found a simple way to delete lines
|
---|
| 154 | # between 2 addresses, excluding either the first or the last one. So use
|
---|
| 155 | # a loop for accumulating lines and deleting at the end.
|
---|
| 156 | # Sorry for sed synthax.
|
---|
[c1626d8] | 157 | sed -i '\@^[[:space:]]*/etc/xml/catalog$@{
|
---|
| 158 | n
|
---|
| 159 | :a
|
---|
| 160 | \@/etc/xml/catalog$@bb
|
---|
| 161 | N
|
---|
| 162 | ba
|
---|
| 163 | :b
|
---|
| 164 | d}' \
|
---|
| 165 | $BUILDDIR$BLFS_ROOT/scripts/*docbook-xsl
|
---|
| 166 | fi
|
---|
[e576789] | 167 | if [ "$DEP_SUDO" = y ]; then
|
---|
[cbca63a] | 168 | sed -i '/cat.*pam.d/i mkdir -p /etc/pam.d' $BUILDDIR$BLFS_ROOT/scripts/*sudo
|
---|
[e576789] | 169 | fi
|
---|
| 170 | if [ "$DEP_SVN" = y ]; then
|
---|
| 171 | sed -i -e /javahl/d -e /swig/d $BUILDDIR$BLFS_ROOT/scripts/*subversion
|
---|
| 172 | fi
|
---|
| 173 | if [ "$DEP_LYNX" = y ]; then
|
---|
| 174 | if [ "$DEP_OPENSSL" = y -o "$DEP_WGET" = y ]; then
|
---|
| 175 | sed -i -e 's/configure/& --with-ssl/' \
|
---|
| 176 | -e '/make$/i echo "#define USE_OPENSSL_INCL 1" >> lynx_cfg.h &&' \
|
---|
| 177 | $BUILDDIR$BLFS_ROOT/scripts/*lynx
|
---|
| 178 | fi
|
---|
| 179 | fi
|
---|
| 180 | # At last generates the build Makefile
|
---|
| 181 | mkdir -p $BUILDDIR$BLFS_ROOT/work
|
---|
| 182 | pushd $BUILDDIR$BLFS_ROOT/work
|
---|
| 183 | ../gen-makefile.sh
|
---|
[cbca63a] | 184 | # The generated Makefile updates the tracking file after each package
|
---|
| 185 | # installation, using libxslt, which is not installed yet. So move
|
---|
| 186 | # updating to the end of the process, adding an 'update' target
|
---|
[e576789] | 187 | sed -i -e '/xsltproc/,+6d' \
|
---|
| 188 | -e '/^all/s@$@ update@' \
|
---|
| 189 | -e 's/touch/@touch/' Makefile
|
---|
| 190 | cat >> Makefile << EOF
|
---|
| 191 | update:
|
---|
| 192 | @echo Updating the tracking file
|
---|
| 193 | @for file in *-*; do \\
|
---|
| 194 | xsltproc --stringparam packages ../packages.xml \\
|
---|
| 195 | --stringparam package \$\${file##*z-} \\
|
---|
| 196 | -o track.tmp \\
|
---|
| 197 | ../xsl/bump.xsl \$(TRACKING_FILE); \\
|
---|
| 198 | sed -i 's@PACKDESC@$BLFS_ROOT/packdesc.dtd@' track.tmp; \\
|
---|
| 199 | xmllint --format --postvalid track.tmp > \$(TRACKING_FILE); \\
|
---|
| 200 | rm track.tmp; \\
|
---|
| 201 | done
|
---|
| 202 | @touch \$@
|
---|
| 203 | @echo -e "\n\n "\$(BOLD)Target \$(BLUE)\$@ \$(BOLD)OK
|
---|
| 204 | @echo --------------------------------------------------------------------------------\$(WHITE)
|
---|
| 205 | EOF
|
---|
| 206 | popd
|
---|
| 207 | }
|
---|