source: common/libs/func_install_blfs@ 38016d5

ablfs-more legacy trunk
Last change on this file since 38016d5 was a1795f0, checked in by Pierre Labastie <pierre@…>, 5 years ago

TRACKFILE should not contain LFS packages that are also in BLFS, ticket #1723

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