source: common/libs/func_install_blfs@ d0c94a3

ablfs
Last change on this file since d0c94a3 was 7b9c8a0, checked in by Pierre Labastie <pierre@…>, 12 years ago

Includes recent SSL instructions for LYNX in func_install_blfs

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