Corrections to blfs-tools scripts. Added missing tidy_docs download and code

This commit is contained in:
George Boudreau 2006-10-03 19:52:33 +00:00
parent 9adff0e3fc
commit cbc8ba25e3
14 changed files with 17 additions and 7 deletions

View file

@ -548,7 +548,7 @@ EOF
(
cat << EOF
@\$(call echo_CHROOT_request)
@ sudo mkdir $BUILDDIR$TRACKING_DIR
@ sudo mkdir -p $BUILDDIR$TRACKING_DIR
@( sudo \$(CHROOT2) "cd \$(SCRIPT_ROOT) && make BLFS_TOOL")
@touch \$@

5
README
View file

@ -8,9 +8,8 @@ $Id$
The usage of this script assumes you have read and are familiar with
the book(s) and, therefore, the configuration variables found in config
files will have meaning to you. There are a number of command line switches
which, if used, will override the config file settings.
files will have meaning to you.
NOTES::
*. The resulting Makefile takes considerable time to run to completion.
Lay in a supply of caffeine beverages.

View file

@ -14,5 +14,4 @@ $Id$
Automation failures:
1.Directory /dev and devices nodes /dev/null, /dev/console needed to be
created in kernfs
2.Linux-headers does not contain /net.
3.Remove the creation of /null and /console node from the devices script.

View file

@ -3,7 +3,7 @@
# $Id$
set -e
cd $PKGDIR
./configure --prefix=/usr
make
make install

View file

@ -3,7 +3,7 @@
# $Id$
set -e
cd $PKGDIR
./configure --prefix=/usr
make
make install

View file

@ -3,6 +3,7 @@
# $Id$
set -e
cd $PKGDIR
patch -Np1 -i ../tidy-051026-prevent_PRE_newlines-1.patch
sh build/gnuauto/setup.sh

View file

@ -3,6 +3,7 @@
# $Id$
set -e
cd $PKGDIR
make -f unix/Makefile LOCAL_UNZIP=-D_FILE_OFFSET_BITS=64 linux
make prefix=/usr install

View file

@ -3,6 +3,7 @@
# $Id$
set -e
cd $PKGDIR
patch -Np1 -i ../gpm-1.20.1-segfault-1.patch
patch -Np1 -i ../gpm-1.20.1-silent-1.patch

View file

@ -3,6 +3,7 @@
# $Id$
set -e
cd $PKGDIR
./configure --prefix=/usr
make CFLAGS="-O2 -Wno-sign-compare -Wno-pointer-sign"

View file

@ -3,6 +3,7 @@
# $Id$
set -e
cd $PKGDIR
patch -Np1 -i ../sudo-1.6.8p12-envvar_fix-1.patch
./configure --prefix=/usr --libexecdir=/usr/lib \

View file

@ -3,6 +3,7 @@
# $Id$
set -e
cd $PKGDIR
./configure --prefix=/usr --sysconfdir=/etc
make

View file

@ -3,6 +3,7 @@
# $Id$
set -e
cd $PKGDIR
./configure --prefix=/usr \
--without-berkeley-db \

View file

@ -813,6 +813,7 @@ add_blfs_deps_urls() { # No easy way to extract it.
if [[ "${DEP_TIDY}" = "y" ]] ; then
echo "${TIDY_URL} ${BLFS_SERVER}tidy/${TIDY_PKG} ${TIDY_MD5}" >> urls.lst
echo "${TIDY_PATCH_URL} ${BLFS_SERVER}tidy/${TIDY_PATCH} ${TIDY_PATCH_MD5}" >> urls.lst
echo "${TIDY_DOCS_URL} ${BLFS_SERVER}tidy/${TIDY_DOCS} ${TIDY_DOCS_MD5}" >> urls.lst
fi
if [[ "${DEP_UNZIP}" = "y" ]] ; then

4
jhalfs
View file

@ -177,6 +177,10 @@ if [[ "${BLFS_TOOL}" = "y" ]] ; then
TIDY_PATCH="tidy-051026-prevent_PRE_newlines-1.patch"
TIDY_PATCH_URL="http://www.linuxfromscratch.org/patches/blfs/svn/${TIDY_PATCH}"
TIDY_PATCH_MD5="82f67f7af58fc2c945b3410ae655cc1a"
# tidy docs
TIDY_DOCS="tidy_docs_051020.tgz"
TIDY_DOCS_URL="http://tidy.sourceforge.net/docs/${TIDY_DOCS}"
TIDY_DOCS_MD5="86de2f198e57399c063d2567b2a25628"
# unzip
UNZIP_PKG="unzip552.tar.gz"
UNZIP_URL="ftp://ftp.info-zip.org/pub/infozip/src/${UNZIP_PKG}"