source: common/libs/func_install_blfs@ f1fcb6b

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

Merge r3879 from new_features branch

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