source: blfs-tool@ 4da2512

2.3 2.3.x 2.4 ablfs ablfs-more legacy new_features trunk
Last change on this file since 4da2512 was 4da2512, checked in by Manuel Canales Esparcia <manuel@…>, 18 years ago

Merged r3068:3072 from expoerimental:
cmdline and config files support removal.

  • Property mode set to 100755
File size: 3.8 KB
Line 
1#!/bin/bash
2# $Id$
3
4set -e
5
6# From common/common-functions
7# VT100 colors
8declare -r BLACK=$'\e[1;30m'
9declare -r DK_GRAY=$'\e[0;30m'
10
11declare -r RED=$'\e[31m'
12declare -r GREEN=$'\e[32m'
13declare -r YELLOW=$'\e[33m'
14declare -r BLUE=$'\e[34m'
15declare -r MAGENTA=$'\e[35m'
16declare -r CYAN=$'\e[36m'
17declare -r WHITE=$'\e[37m'
18
19declare -r OFF=$'\e[0m'
20declare -r BOLD=$'\e[1m'
21declare -r REVERSE=$'\e[7m'
22declare -r HIDDEN=$'\e[8m'
23
24declare -r tab_=$'\t'
25declare -r nl_=$'\n'
26
27declare -r DD_BORDER="${BOLD}==============================================================================${OFF}"
28declare -r SD_BORDER="${BOLD}------------------------------------------------------------------------------${OFF}"
29declare -r STAR_BORDER="${BOLD}******************************************************************************${OFF}"
30
31# bold yellow > < pair
32declare -r R_arrow=$'\e[1;33m>\e[0m'
33declare -r L_arrow=$'\e[1;33m<\e[0m'
34
35
36#>>>>>>>>>>>>>>>ERROR TRAPPING >>>>>>>>>>>>>>>>>>>>
37#-----------------------#
38simple_error() { # Basic error trap.... JUST DIE
39#-----------------------#
40 # If +e then disable text output
41 if [[ "$-" =~ "e" ]]; then
42 echo -e "\n${RED}ERROR:${GREEN} basic error trapped!${OFF}\n" >&2
43 fi
44}
45
46see_ya() {
47 echo -e "\n${L_arrow}${BOLD}jhalfs-X${R_arrow} exit${OFF}\n"
48}
49##### Simple error TRAPS
50# ctrl-c SIGINT
51# ctrl-y
52# ctrl-z SIGTSTP
53# SIGHUP 1 HANGUP
54# SIGINT 2 INTRERRUPT FROM KEYBOARD Ctrl-C
55# SIGQUIT 3
56# SIGKILL 9 KILL
57# SIGTERM 15 TERMINATION
58# SIGSTOP 17,18,23 STOP THE PROCESS
59#####
60set -e
61trap see_ya 0
62trap simple_error ERR
63trap 'echo -e "\n\n${RED}INTERRUPT${OFF} trapped\n" && exit 2' 1 2 3 15 17 18 23
64#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
65
66# envars not sourced from configuration file
67COMMON_DIR="common"
68VERBOSITY=1
69
70[[ $VERBOSITY > 0 ]] && echo -n "Loading config params from <configuration>..."
71source configuration
72[[ $? > 0 ]] && echo "file:configuration did not load.." && exit 1
73[[ $VERBOSITY > 0 ]] && echo "OK"
74
75[[ $VERBOSITY > 0 ]] && echo -n "Loading function <func_validate_configs.sh>..."
76source $COMMON_DIR/func_validate_configs.sh
77[[ $? > 0 ]] && echo " function module did not load.." && exit 2
78[[ $VERBOSITY > 0 ]] && echo "OK"
79[[ $VERBOSITY > 0 ]] && echo "${SD_BORDER}${nl_}"
80
81# Be sure that we have a configuration file
82[[ -z $BOOK_BLFS ]] && echo -e "\nNo BLFS configuration found. Please configure it." && exit 1
83
84# Set default book version
85BRANCH_ID=${BRANCH_ID:=development}
86
87# Set the SVN tree
88case $BRANCH_ID in
89 dev* | SVN | trunk ) TREE=trunk/BOOK ;;
90 *EDIT* ) echo " You forgot to set the branch or stable book version."
91 echo " Please rerun make and fix the configuration."
92 exit 2
93 ;;
94 branch-* ) TREE=branches/${BRANCH_ID#branch-}/BOOK ;;
95 * ) TREE=tags/${BRANCH_ID}/BOOK ;;
96esac
97
98# For consistency with other books
99validate_config
100echo "${SD_BORDER}${nl_}"
101echo -n "Are you happy with these settings? yes/no (no): "
102read ANSWER
103if [ x$ANSWER != "xyes" ] ; then
104 echo "${nl_}Fix the configuration options and rerun the script.${nl_}"
105 exit 1
106fi
107echo "${nl_}${SD_BORDER}${nl_}"
108
109# Install the files
110[[ ! -d $BLFS_ROOT ]] && mkdir -p $BLFS_ROOT
111
112cp -r BLFS/* $BLFS_ROOT
113cp -r menu $BLFS_ROOT
114cp $COMMON_DIR/progress_bar.sh $BLFS_ROOT
115cp README.BLFS $BLFS_ROOT
116
117# Start the work
118cd $BLFS_ROOT
119
120# Clean-up
121rm -rf libs/.svn
122rm -rf menu/.svn
123rm -rf menu/lxdialog/.svn
124
125
126# Set some harcoded envars to their proper values
127sed -i 's,blfs-xml,'$BLFS_XML',' update_book.sh libs/book.xsl
128sed -i 's,tracking-dir,'$TRACKING_DIR',' update_book.sh gen-makefile.sh
129
130# Fetch book sources and create packages and meta-packages dependencies files
131if [[ -d $BLFS_XML ]] ; then
132 ./update_book.sh
133else
134 ./update_book.sh get $BLFS_XML $TREE
135fi
136
137# Run the menuconfig interface
138make
139
Note: See TracBrowser for help on using the repository browser.