Updated blfs-tool dependencies.
This commit is contained in:
parent
c93f2b02fc
commit
339fd84c20
3 changed files with 30 additions and 15 deletions
26
Config.in
26
Config.in
|
@ -504,8 +504,9 @@ menu "--- BOOK Settings"
|
|||
default n
|
||||
depends on !BOOK_BLFS && !BOOK_CLFS3
|
||||
help
|
||||
#--- Activating this option additional packages needed to
|
||||
# use blfs-tool will be installed.
|
||||
#--- Activating this option will install additional
|
||||
# packages needed to con use blfs-tool when booting
|
||||
# the new system.
|
||||
#
|
||||
# The blfs-tool files will be installed under
|
||||
# $BUILD_DIR/blfs_root.
|
||||
|
@ -585,16 +586,27 @@ menu "--- BOOK Settings"
|
|||
bool "wget (recommended)"
|
||||
default y
|
||||
|
||||
config DEP_SVN
|
||||
bool "SVN client (optional)"
|
||||
default y
|
||||
|
||||
config DEP_GPM
|
||||
bool "GPM (optional, see help)"
|
||||
default y
|
||||
help
|
||||
#-- You MUST to install manually the gpm bootscript
|
||||
# and create its configuration file
|
||||
# and create its configuration file.
|
||||
#
|
||||
# An alternative is to unselect this option and
|
||||
# install gpm, it configuration file, and it
|
||||
# bootscript using the custom tools support.
|
||||
|
||||
config DEP_SVN
|
||||
bool "SVN client (optional, see help)"
|
||||
default n
|
||||
help
|
||||
#-- Subversion-1.3.1 will be installed. This version is
|
||||
# old but not relies on additional packages to can be
|
||||
# build.
|
||||
#
|
||||
# If you are happy with this old version and don't
|
||||
# need extra features, select this option.
|
||||
endmenu
|
||||
#--- End blfs-tool Support
|
||||
|
||||
|
|
7
README
7
README
|
@ -86,8 +86,8 @@ $Id$
|
|||
WARNING:: If you add blfs-tool support on a CLFS Sysroot build
|
||||
you MUST to edit the dependencies scripts to fix the
|
||||
installation paths.
|
||||
Be careful when you modify the scripts as you can
|
||||
easily disable the host system.
|
||||
Be careful when you modify the scripts as you can
|
||||
easily disable the host system.
|
||||
|
||||
After booting the new xLFS system some steps are needed to finish
|
||||
blfs-tool installation:
|
||||
|
@ -101,6 +101,9 @@ $Id$
|
|||
- Give the user read and write privileges over the $TRACKING_DIR
|
||||
directory and the files that it contains.
|
||||
|
||||
- If you think that you may need the libxml2/libxslt Python modules,
|
||||
remove the libxml2 and libxslt trackin files found in $TRACKING_DIR.
|
||||
|
||||
- Configure sudo, adding the needed privileges for the user.
|
||||
|
||||
We assume that blfs-tool will be used on a running fresh xLFS system.
|
||||
|
|
12
jhalfs
12
jhalfs
|
@ -170,13 +170,13 @@ if [[ "${BLFS_TOOL}" = "y" ]] ; then
|
|||
# Dependencies envars, to can update it more easy.
|
||||
# Tidy and Unzip version are harcoded also in wrt_blfs_tool_targets()
|
||||
# libxml2
|
||||
LIBXML_PKG="libxml2-2.6.27.tar.gz"
|
||||
LIBXML_PKG="libxml2-2.6.29.tar.gz"
|
||||
LIBXML_URL="ftp://xmlsoft.org/libxml2/${LIBXML_PKG}"
|
||||
LIBXML_MD5="f5806f5059ef7bd4d3fcf36cf116d1ef"
|
||||
LIBXML_MD5="8b99b6e8b08e838438d9e6b639d79ebd"
|
||||
# libxslt
|
||||
LIBXSLT_PKG="libxslt-1.1.20.tar.gz"
|
||||
LIBXSLT_PKG="libxslt-1.1.21.tar.gz"
|
||||
LIBXSLT_URL="ftp://xmlsoft.org/libxslt/${LIBXSLT_PKG}"
|
||||
LIBXSLT_MD5="4ea2dc22a23bf2aa570f868aa86357f8"
|
||||
LIBXSLT_MD5="59fe34e85692f71df2a38c2ee291b3ca"
|
||||
# tidy
|
||||
TIDY_PKG="tidy-cvs_20070326.tar.bz2"
|
||||
TIDY_URL="http://anduin.linuxfromscratch.org/files/BLFS/sources/${TIDY_PKG}"
|
||||
|
@ -203,7 +203,7 @@ if [[ "${BLFS_TOOL}" = "y" ]] ; then
|
|||
LINKS_MD5="4a1fb575c133eee821b9a1f8e9220b40"
|
||||
# sudo
|
||||
SUDO_PKG="sudo-1.6.8p12.tar.gz"
|
||||
SUDO_URL="http://www.courtesan.com/sudo/dist/${SUDO_PKG}"
|
||||
SUDO_URL="http://anduin.linuxfromscratch.org/sources/BLFS/svn/s/${SUDO_PKG}"
|
||||
SUDO_MD5="b29893c06192df6230dd5f340f3badf5"
|
||||
# sudo envar fix patch
|
||||
SUDO_PATCH="sudo-1.6.8p12-envvar_fix-1.patch"
|
||||
|
@ -219,7 +219,7 @@ if [[ "${BLFS_TOOL}" = "y" ]] ; then
|
|||
SVN_MD5="07b95963968ae345541ca99d0e7bf082"
|
||||
# GPM
|
||||
GPM_PKG="gpm-1.20.1.tar.bz2"
|
||||
GPM_URL="ftp://arcana.linux.it/pub/gpm/${GPM_PKG}"
|
||||
GPM_URL="ftp://ftp.linux.ee/pub/gentoo/distfiles/distfiles/${GPM_PKG}"
|
||||
GPM_MD5="2c63e827d755527950d9d13fe3d87692"
|
||||
# GPM segfaul patch
|
||||
GPM_PATCH_1="gpm-1.20.1-segfault-1.patch"
|
||||
|
|
Reference in a new issue