source: common/libs/func_install_blfs@ 945ccaa

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

Merge the new_features branch (manully, thanks to svn)

  • Property mode set to 100644
File size: 6.8 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# Downloads the book if necessary, initialize the tracking file and the
45# package database.
46# sudo is needed if $BUILDDIR/var/lib is owned by root and /var/lib/jhalfs
47# has to be created
48sudo make -j1 -C $BUILDDIR$BLFS_ROOT \
49 REV=$INITSYS \
50 TRACKING_DIR=$BUILDDIR$TRACKING_DIR \
51 $BUILDDIR$BLFS_ROOT/packages.xml
52
53# Because the BLFS Makefile is supposed to be used in chroot (or booted)
54# mode, the tracking file has wrong path for DTD. Change it:
55sudo sed -i s@$BUILDDIR@@ $BUILDDIR$TRACKING_DIR/instpkg.xml
56
57# Manually build a 'configuration' file
58if [ "$DEP_LIBXML" = y ]; then
59 LINE_LIBXML='CONFIG_libxml2=y'
60else
61 LINE_LIBXML='#CONFIG_libxml2 is not set'
62fi
63if [ "$DEP_LIBXSLT" = y ]; then
64 LINE_LIBXSLT='CONFIG_libxslt=y'
65else
66 LINE_LIBXSLT='#CONFIG_libxslt is not set'
67fi
68# DocBook is a rec dep of libxslt
69# if [ "$DEP_DBXML" = y ]; then
70# LINE_DBXML='CONFIG_DocBook=y'
71# else
72# LINE_DBXML='#CONFIG_DocBook is not set'
73# fi
74if [ "$DEP_LYNX" = y ]; then
75 LINE_LYNX='CONFIG_lynx=y'
76else
77 LINE_LYNX='#CONFIG_lynx is not set'
78fi
79if [ "$DEP_SUDO" = y ]; then
80 LINE_SUDO='CONFIG_sudo=y'
81else
82 LINE_SUDO='#CONFIG_sudo is not set'
83fi
84if [ "$DEP_WGET" = y ]; then
85 LINE_WGET='CONFIG_wget=y'
86else
87 LINE_WGET='#CONFIG_wget is not set'
88fi
89if [ "$DEP_GPM" = y ]; then
90 LINE_GPM='CONFIG_gpm=y'
91else
92 LINE_GPM='#CONFIG_gpm is not set'
93fi
94if [ "$DEP_SVN" = y ]; then
95 LINE_SVN='CONFIG_subversion=y'
96else
97 LINE_SVN='#CONFIG_subversion is not set'
98fi
99if [ "$DEP_OPENSSL" = y ]; then
100 LINE_OPENSSL='CONFIG_openssl=y'
101else
102 LINE_OPENSSL='#CONFIG_openssl is not set'
103fi
104if [ "$DEP_PYTHON" = y ]; then
105 LINE_PYTHON='CONFIG_python2=y'
106else
107 LINE_PYTHON='#CONFIG_python2 is not set'
108fi
109
110cat >$BUILDDIR$BLFS_ROOT/configuration <<EOF
111$LINE_OPENSSL
112$LINE_PYTHON
113$LINE_LIBXML
114$LINE_LIBXSLT
115$LINE_WGET
116$LINE_SVN
117$LINE_GPM
118$LINE_LYNX
119$LINE_SUDO
120MAIL_SERVER=sendmail
121optDependency=2
122SUDO=n
123WRAP_INSTALL=$WRAP_INSTALL
124EOF
125
126# Generates the scripts for the blfs tools dependencies (in ./scripts)
127yes "yes" | $BUILDDIR$BLFS_ROOT/gen_pkg_book.sh $BUILDDIR$BLFS_ROOT
128
129# Move the scriptlets where they should be
130sudo rm -rf $BUILDDIR$BLFS_ROOT/scripts
131mv scripts $BUILDDIR$BLFS_ROOT
132
133# Generates a list containing download and copying instructions for tarballs
134echo -e '#!/bin/bash\nset -e\n' > $BUILDDIR$BLFS_ROOT/download_script
135sed -n -e '/PACKAGE=/,/^fi/{/^fi/a\
136cp $PACKAGE $SRC_ARCHIVE
137p}' \
138 -e '/|[ ]*md5sum/p' \
139 -e '/PACKAGE1=/,/^fi/{/^fi/a\
140cp $PACKAGE1 $SRC_ARCHIVE
141p}' \
142 -e '/PATCH=/,/^fi/{/^fi/a\
143cp $PACKAGE1 $SRC_ARCHIVE
144p}' \
145 -e '/URL=/,/^fi/{/^fi/a\
146cp $PACKAGE1 $SRC_ARCHIVE
147p}' \
148 $BUILDDIR$BLFS_ROOT/scripts/* >> $BUILDDIR$BLFS_ROOT/download_script
149chmod u+x $BUILDDIR$BLFS_ROOT/download_script
150
151# Downloads (or copy) to build_dir/sources
152pushd $BUILDDIR/sources
153# Remove `unpacked' files if some have been left
154sudo find . -name unpacked -exec rm \{\} \;
155if [ "$GETPKG" = "y" ]; then
156 FTP_SERVER=$SERVER/pub/blfs/ \
157 SRC_ARCHIVE=${SRC_ARCHIVE:-/dev/null} \
158 $BUILDDIR$BLFS_ROOT/download_script
159else # Save the download script in case the user wants to run it later
160 cp $BUILDDIR$BLFS_ROOT/download_script .
161fi
162popd
163rm -v $BUILDDIR$BLFS_ROOT/download_script
164
165# Suppresses unneeded parts of the scriptlets
166if [ "$DEP_LIBXSLT" = y ]; then
167 # libxslt pulls docbook-xsl in, which populates the catalog with annoying
168 # **EDITME** references. Fortunately, those lines are regognizable because
169 # they occur between lines containing '/etc/xml/catalog' at the end of the
170 # line (without '&&'). I have not found a simple way to delete lines
171 # between 2 addresses, excluding either the first or the last one. So use
172 # a loop for accumulating lines and deleting at the end.
173 # Sorry for sed synthax.
174 sed -i '\@^[[:space:]]*/etc/xml/catalog$@{
175n
176:a
177\@/etc/xml/catalog$@bb
178N
179ba
180:b
181d}' \
182 $BUILDDIR$BLFS_ROOT/scripts/*docbook-xsl
183fi
184if [ "$DEP_SUDO" = y ]; then
185 sed -i '/cat.*pam.d/i mkdir -p /etc/pam.d' $BUILDDIR$BLFS_ROOT/scripts/*sudo
186fi
187if [ "$DEP_SVN" = y ]; then
188 sed -i -e /javahl/d -e /swig/d $BUILDDIR$BLFS_ROOT/scripts/*subversion
189fi
190if [ "$DEP_LYNX" = y ]; then
191 if [ "$DEP_OPENSSL" = y -o "$DEP_WGET" = y ]; then
192 sed -e 's/configure/& --with-ssl/' \
193 -i $BUILDDIR$BLFS_ROOT/scripts/*lynx
194 fi
195fi
196# At last generates the build Makefile
197mkdir -p $BUILDDIR$BLFS_ROOT/work
198pushd $BUILDDIR$BLFS_ROOT/work
199../gen-makefile.sh
200# The generated Makefile updates the tracking file after each package
201# installation, using libxslt, which is not installed yet. So move
202# updating to the end of the process, adding an 'update' target
203sed -i -e '/xsltproc/,+6d' \
204 -e '/^all/s@$@ update@' \
205 -e 's/touch/@touch/' Makefile
206cat >> Makefile << EOF
207update:
208 @echo Updating the tracking file
209 @for file in *-*; do \\
210 xsltproc --stringparam packages ../packages.xml \\
211 --stringparam package \$\${file##*z-} \\
212 -o track.tmp \\
213 ../xsl/bump.xsl \$(TRACKING_FILE); \\
214 sed -i 's@PACKDESC@$BLFS_ROOT/packdesc.dtd@' track.tmp; \\
215 xmllint --format --postvalid track.tmp > \$(TRACKING_FILE); \\
216 rm track.tmp; \\
217 done
218 @touch \$@
219 @echo -e "\n\n "\$(BOLD)Target \$(BLUE)\$@ \$(BOLD)OK
220 @echo --------------------------------------------------------------------------------\$(WHITE)
221EOF
222popd
223}
Note: See TracBrowser for help on using the repository browser.