source: common/libs/func_install_blfs@ 5130b3a

ablfs
Last change on this file since 5130b3a was 5130b3a, checked in by Pierre Labastie <pierre@…>, 11 years ago

Merge trunk r3750-3760

  • Property mode set to 100644
File size: 5.8 KB
RevLine 
[7ea25e4]1#!/bin/bash
2
3# $Id$
4
5#----------------------------# Prepare BLFS_ROOT and extract
6install_blfs_tools() { # the scriptlets to build
7#----------------------------# the dependency tools
[b35ce44]8set -e
[7ea25e4]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}
[6bcf33e]26sed -i s@trunk/BOOK@$BLFS_TREE@ \
27 ${BUILDDIR}${BLFS_ROOT}/Makefile
[7ea25e4]28
[5130b3a]29# If we have a working copy, copy it:
30if [[ "$BLFS_WORKING_COPY" = "y" ]]; then
31# -r: recursive; -u: only if newer; -T: otherwise, would copy to a subdirectory
32# of blfs-xml, if blfs-xml already exists
33 cp -ruT $BLFS_WC_LOCATION ${BUILDDIR}${BLFS_ROOT}/blfs-xml
34fi
35# Downloads the book if necessary, initialize the tracking file and the
36# package database.
[81cd513]37# sudo is needed if $BUILDDIR/var/lib is owned by root and /var/lib/jhalfs
38# has to be created
39sudo make -j1 -C $BUILDDIR$BLFS_ROOT TRACKING_DIR=$BUILDDIR$TRACKING_DIR \
[7ea25e4]40 $BUILDDIR$BLFS_ROOT/packages.xml
41
42# Because the BLFS Makefile is supposed to be used in chroot (or booted)
43# mode, the tracking file has wrong path for DTD. Change it:
[5573313]44sudo sed -i s@$BUILDDIR@@ $BUILDDIR$TRACKING_DIR/instpkg.xml
[7ea25e4]45
46# Manually build a 'configuration' file
47if [ "$DEP_LIBXML" = y ]; then
48 LINE_LIBXML='CONFIG_libxml2=y'
49else
50 LINE_LIBXML='#CONFIG_libxml2 is not set'
51fi
52if [ "$DEP_LIBXSLT" = y ]; then
53 LINE_LIBXSLT='CONFIG_libxslt=y'
54else
55 LINE_LIBXSLT='#CONFIG_libxslt is not set'
56fi
57if [ "$DEP_TIDY" = y ]; then
58 LINE_TIDY='CONFIG_html-tidy=y'
59else
60 LINE_TIDY='#CONFIG_html-tidy is not set'
61fi
62if [ "$DEP_DBXML" = y ]; then
63 LINE_DBXML='CONFIG_DocBook=y'
64else
65 LINE_DBXML='#CONFIG_DocBook is not set'
66fi
67if [ "$DEP_LYNX" = y ]; then
68 LINE_LYNX='CONFIG_lynx=y'
69else
70 LINE_LYNX='#CONFIG_lynx is not set'
71fi
72if [ "$DEP_SUDO" = y ]; then
73 LINE_SUDO='CONFIG_sudo=y'
74else
75 LINE_SUDO='#CONFIG_sudo is not set'
76fi
77if [ "$DEP_WGET" = y ]; then
78 LINE_WGET='CONFIG_wget=y'
79else
80 LINE_WGET='#CONFIG_wget is not set'
81fi
82if [ "$DEP_GPM" = y ]; then
83 LINE_GPM='CONFIG_gpm=y'
84else
85 LINE_GPM='#CONFIG_gpm is not set'
86fi
87if [ "$DEP_SVN" = y ]; then
88 LINE_SVN='CONFIG_subversion=y'
89else
90 LINE_SVN='#CONFIG_subversion is not set'
91fi
[de947d2]92if [ "$DEP_OPENSSL" = y ]; then
93 LINE_OPENSSL='CONFIG_openssl=y'
94else
95 LINE_OPENSSL='#CONFIG_openssl is not set'
96fi
97if [ "$DEP_PYTHON" = y ]; then
98 LINE_PYTHON='CONFIG_python2=y'
99else
100 LINE_PYTHON='#CONFIG_python2 is not set'
101fi
[7ea25e4]102
103cat >$BUILDDIR$BLFS_ROOT/configuration <<EOF
[de947d2]104$LINE_PYTHON
[7ea25e4]105$LINE_LIBXML
106$LINE_LIBXSLT
107$LINE_TIDY
108$LINE_DBXML
[de947d2]109$LINE_OPENSSL
[d6f2ebf]110$LINE_WGET
[7ea25e4]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
[b35ce44]124sudo rm -rf $BUILDDIR$BLFS_ROOT/scripts
[7ea25e4]125mv scripts $BUILDDIR$BLFS_ROOT
126
127# Generates a list containing download and copying instructions for tarballs
128echo -e '#!/bin/bash\nset -e\n' > $BUILDDIR$BLFS_ROOT/download_script
129sed -n -e '/PACKAGE=/,/md5sum/p' \
130 -e '/PACKAGE1=/,/^fi/p' \
131 -e '/PATCH=/,/^fi/p' \
[1991326]132 -e '/URL=/,/^fi/p' \
[7ea25e4]133 $BUILDDIR$BLFS_ROOT/scripts/* >> $BUILDDIR$BLFS_ROOT/download_script
134chmod u+x $BUILDDIR$BLFS_ROOT/download_script
135
136# Downloads (or copy) to build_dir/sources
137pushd $BUILDDIR/sources
[b35ce44]138# Remove `unpacked' files if some have been left
139sudo find . -name unpacked -exec rm \{\} \;
[7ea25e4]140FTP_SERVER=$SERVER/pub/blfs/ SRC_ARCHIVE=$SRC_ARCHIVE $BUILDDIR$BLFS_ROOT/download_script
141# The blfs-bootscripts package is at the wrong location
142mkdir -p blfs-bootscripts
[b35ce44]143cp blfs-bootscripts*tar* blfs-bootscripts
[7ea25e4]144popd
145rm -v $BUILDDIR$BLFS_ROOT/download_script
146
147# Suppresses unneeded parts of the scriptlets
[d6f2ebf]148if [ "$DEP_WGET" = y ] && ! [ "$DEP_OPENSSL" = y ]; then
[7ea25e4]149 sed -i s'/-ssl=.*/out-ssl/' $BUILDDIR$BLFS_ROOT/scripts/*wget
150fi
151if [ "$DEP_SUDO" = y ]; then
152 sed -i '/pam.d/i mkdir -p /etc/pam.d' $BUILDDIR$BLFS_ROOT/scripts/*sudo
153fi
154if [ "$DEP_SVN" = y ]; then
155 sed -i -e /javahl/d -e /swig/d $BUILDDIR$BLFS_ROOT/scripts/*subversion
[b35ce44]156 sed -i -e '/pushd/,/popd/d' -e /tea/d $BUILDDIR$BLFS_ROOT/scripts/*sqlite
[7ea25e4]157fi
[de947d2]158if [ "$DEP_PYTHON" = y ]; then
159 sed -i -e '/^make.*Doc/d' -e '/^chmod/{n;N;d}' $BUILDDIR$BLFS_ROOT/scripts/*python2
160fi
161if [ "$DEP_OPENSSL" = y ]; then
162 sed -i 's/^make$/make -j1/' $BUILDDIR$BLFS_ROOT/scripts/*openssl
163fi
[aefbe0f]164if [ "$DEP_LYNX" = y ]; then
[7b9c8a0]165 if [ "$DEP_OPENSSL" = y -o "$DEP_WGET" = y ]; then
[aefbe0f]166 sed -i -e 's/configure/& --with-ssl/' \
[7b9c8a0]167 -e '/make$/i echo "#define USE_OPENSSL_INCL 1" >> lynx_cfg.h &&' \
[aefbe0f]168 $BUILDDIR$BLFS_ROOT/scripts/*lynx
169 fi
170fi
[7ea25e4]171# At last generates the build Makefile
172mkdir -p $BUILDDIR$BLFS_ROOT/work
173pushd $BUILDDIR$BLFS_ROOT/work
174../gen-makefile.sh
175sed -i -e '/xsltproc/,+6d' \
176 -e '/^all/s@$@ update@' \
177 -e 's/touch/@touch/' Makefile
178cat >> Makefile << EOF
179update:
180 @echo Updating the tracking file
181 @for file in *-*; do \\
182 xsltproc --stringparam packages ../packages.xml \\
183 --stringparam package \$\${file##*z-} \\
184 -o track.tmp \\
185 ../xsl/bump.xsl \$(TRACKING_FILE); \\
186 sed -i 's@PACKDESC@$BLFS_ROOT/packdesc.dtd@' track.tmp; \\
187 xmllint --format --postvalid track.tmp > \$(TRACKING_FILE); \\
188 rm track.tmp; \\
189 done
190 @touch \$@
191 @echo -e "\n\n "\$(BOLD)Target \$(BLUE)\$@ \$(BOLD)OK
192 @echo --------------------------------------------------------------------------------\$(WHITE)
193EOF
194popd
195}
Note: See TracBrowser for help on using the repository browser.