source: common/libs/func_install_blfs@ 4b2a5fd

ablfs-more legacy trunk
Last change on this file since 4b2a5fd was 4b2a5fd, checked in by Pierre Labastie <pierre@…>, 6 years ago

Typos and removing useless instruction

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