source: common/libs/func_install_blfs@ b5d1c50

ablfs-more legacy trunk
Last change on this file since b5d1c50 was 106157fd, checked in by Pierre Labastie <pierre.labastie@…>, 3 years ago

Do not assume there is a group named as $USER

Remove any use of chown $USER:$USER

  • Property mode set to 100644
File size: 8.2 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" "${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# Set some harcoded envars to their proper values
25sed -i s@tracking-dir@$TRACKING_DIR@ \
26 ${BUILDDIR}${BLFS_ROOT}/{Makefile,gen-makefile.sh}
27sed -i s@trunk/BOOK@$BLFS_TREE@ \
28 ${BUILDDIR}${BLFS_ROOT}/Makefile
29
30# If we have a working copy, copy it:
31if [[ "$BLFS_WORKING_COPY" = "y" ]]; then
32echo "copying the local BLFS working copy (may take some time)"
33# -r: recursive; -u: only if newer; -T: otherwise, would copy to a subdirectory
34# of blfs-xml, if blfs-xml already exists; --preserve=timestamps: if the local
35# book has already been validated, tmp is posterior to the others, and
36# validation will not be done again.
37 cp -ruT --preserve=timestamps $BLFS_WC_LOCATION \
38 ${BUILDDIR}${BLFS_ROOT}/$BLFS_XML
39fi
40
41# Copy the LFS book. Note that now, the book is downloaded before running
42# the BLFS tools.
43cp -ruT --preserve=timestamps $BOOK \
44 ${BUILDDIR}${BLFS_ROOT}/$LFS_XML
45
46# Downloads the book if necessary, initialize the tracking file and the
47# package database.
48# sudo is needed if $BUILDDIR/var/lib is owned by root and /var/lib/jhalfs
49# has to be created
50sudo make -j1 -C $BUILDDIR$BLFS_ROOT \
51 REV=$INITSYS \
52 TRACKING_DIR=$BUILDDIR$TRACKING_DIR \
53 LFS_XML=$BUILDDIR$BLFS_ROOT/$LFS_XML \
54 LFS-GIT=$GIT/lfs.git \
55 LFS-BRANCH=${LFS_TREE} \
56 BLFS_XML=$BUILDDIR$BLFS_ROOT/$BLFS_XML \
57 GIT=$GIT/blfs.git \
58 BLFS-BRANCH=${BLFS_TREE} \
59 $BUILDDIR$BLFS_ROOT/packages.xml
60
61# But then $BUILDDIR/var/lib/ is owned by root if just created, which
62# prevents $LUSER to create "nss_db". The problem is that $LUSER
63# May not have been created yet. So do not change ownership here
64# and do it in master.sh for chapter 4.
65#sudo chown $LUSER:$LGROUP $BUILDDIR/var/lib
66
67# Because the BLFS Makefile is supposed to be used in chroot (or booted)
68# mode, the tracking file has wrong path for DTD. Change it:
69sudo sed -i s@$BUILDDIR@@ $BUILDDIR$TRACKING_DIR/instpkg.xml
70
71# Manually build a 'configuration' file
72if [ "$DEP_LIBXML" = y ]; then
73 LINE_LIBXML='CONFIG_libxml2=y'
74else
75 LINE_LIBXML='#CONFIG_libxml2 is not set'
76fi
77if [ "$DEP_LIBXSLT" = y ]; then
78 LINE_LIBXSLT='CONFIG_libxslt=y'
79else
80 LINE_LIBXSLT='#CONFIG_libxslt is not set'
81fi
82# DocBook is a rec dep of libxslt
83# if [ "$DEP_DBXML" = y ]; then
84# LINE_DBXML='CONFIG_DocBook=y'
85# else
86# LINE_DBXML='#CONFIG_DocBook is not set'
87# fi
88if [ "$DEP_LYNX" = y ]; then
89 LINE_LYNX='CONFIG_lynx=y'
90else
91 LINE_LYNX='#CONFIG_lynx is not set'
92fi
93if [ "$DEP_SUDO" = y ]; then
94 LINE_SUDO='CONFIG_sudo=y'
95else
96 LINE_SUDO='#CONFIG_sudo is not set'
97fi
98if [ "$DEP_WGET" = y ]; then
99 LINE_WGET='CONFIG_wget=y'
100else
101 LINE_WGET='#CONFIG_wget is not set'
102fi
103if [ "$DEP_GPM" = y ]; then
104 LINE_GPM='CONFIG_gpm=y'
105else
106 LINE_GPM='#CONFIG_gpm is not set'
107fi
108if [ "$DEP_GIT" = y ]; then
109 LINE_GIT='CONFIG_git=y'
110else
111 LINE_GIT='#CONFIG_git is not set'
112fi
113
114cat >$BUILDDIR$BLFS_ROOT/configuration <<EOF
115$LINE_LIBXML
116$LINE_LIBXSLT
117$LINE_WGET
118$LINE_GIT
119$LINE_GPM
120$LINE_LYNX
121$LINE_SUDO
122MAIL_SERVER=sendmail
123optDependency=2
124SUDO=n
125LANGUAGE=$LANG
126WRAP_INSTALL=$WRAP_INSTALL
127DEL_LA_FILES=$DEL_LA_FILES
128STATS=n
129EOF
130
131# Generates the scripts for the blfs tools dependencies (in ./scripts)
132yes "yes" | $BUILDDIR$BLFS_ROOT/gen_pkg_book.sh $BUILDDIR$BLFS_ROOT
133
134# Move the scriptlets where they should be
135sudo rm -rf $BUILDDIR$BLFS_ROOT/scripts
136mv scripts $BUILDDIR$BLFS_ROOT
137
138# Generates a list containing download and copying instructions for tarballs
139echo -e '#!/bin/bash\nset -e\n' > $BUILDDIR$BLFS_ROOT/download_script
140sed -n -e '/PACKAGE=/,/^fi/{/^fi/a\
141cp $PACKAGE $JH_SRC_ARCHIVE
142p}' \
143 -e '/|[ ]*md5sum/p' \
144 -e '/PACKAGE1=/,/^fi/{/^fi/a\
145cp $PACKAGE1 $JH_SRC_ARCHIVE
146p}' \
147 -e '/PATCH=/,/^fi/{/^fi/a\
148cp $PATCH $JH_SRC_ARCHIVE
149p}' \
150 -e '/URL=/,/^fi/{/^fi/a\
151cp $BOOTPACKG $JH_SRC_ARCHIVE
152p}' \
153 $BUILDDIR$BLFS_ROOT/scripts/* >> $BUILDDIR$BLFS_ROOT/download_script
154chmod u+x $BUILDDIR$BLFS_ROOT/download_script
155
156# Downloads (or copy) to build_dir/sources
157pushd $BUILDDIR/sources
158# Remove `unpacked' files if some have been left
159sudo find . -name unpacked -exec rm \{\} \;
160if [ "$GETPKG" = "y" ]; then
161 JH_FTP_SERVER=$SERVER/pub/blfs/ \
162 JH_SRC_ARCHIVE=${SRC_ARCHIVE:-/dev/null} \
163 $BUILDDIR$BLFS_ROOT/download_script
164else # Save the download script in case the user wants to run it later
165 cp $BUILDDIR$BLFS_ROOT/download_script .
166fi
167popd
168rm -v $BUILDDIR$BLFS_ROOT/download_script
169
170# Suppresses unneeded parts of the scriptlets
171if [ "$DEP_LIBXSLT" = y ]; then
172 # libxslt pulls docbook-xsl in, which populates the catalog with annoying
173 # **EDITME** references. Fortunately, those lines are regognizable because
174 # they occur between lines containing '/etc/xml/catalog' at the end of the
175 # line (without '&&'). I have not found a simple way to delete lines
176 # between 2 addresses, excluding either the first or the last one. So use
177 # a loop for accumulating lines and deleting at the end.
178 # Sorry for sed syntax.
179 sed -i '\@^[[:space:]]*/etc/xml/catalog$@{
180n
181:a
182\@/etc/xml/catalog$@bb
183N
184ba
185:b
186d}' \
187 $BUILDDIR$BLFS_ROOT/scripts/*docbook-xsl
188fi
189if [ "$DEP_SUDO" = y ]; then
190 sed -i '/cat.*pam.d/i mkdir -p /etc/pam.d' $BUILDDIR$BLFS_ROOT/scripts/*sudo
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 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.