1 | #!/bin/bash
|
---|
2 |
|
---|
3 | #
|
---|
4 | # Read and parse the configuration parameters..
|
---|
5 | #
|
---|
6 | ConfigFile="configuration"
|
---|
7 | while [ 0 ]; do
|
---|
8 | read || break 1
|
---|
9 |
|
---|
10 | # Garbage collection
|
---|
11 | case ${REPLY} in
|
---|
12 | \#* | '') continue ;;
|
---|
13 | esac
|
---|
14 |
|
---|
15 | case "${REPLY}" in
|
---|
16 | CONFIG_ALSA=* | \
|
---|
17 | CONFIG_GNOME-CORE=* | \
|
---|
18 | CONFIG_GNOME-FULL=* | \
|
---|
19 | CONFIG_KDE-CORE=* | \
|
---|
20 | CONFIG_KDE-FULL=* | \
|
---|
21 | CONFIG_KDE-KOFFICE=* | \
|
---|
22 | CONFIG_XORG7=* ) REPLY=${REPLY%=*} # Strip the trailing '=y' test.. unecessary
|
---|
23 | echo -n "${REPLY}"
|
---|
24 | if [[ $((++cntr)) > 1 ]]; then
|
---|
25 | echo " <<-- ERROR:: SELECT ONLY 1 PACKAGE AT A TIME, META-PACKAGE NOT SELECTED"
|
---|
26 | else
|
---|
27 | echo ""
|
---|
28 | optTARGET=$(echo $REPLY | cut -d "_" -f2 | tr [A-Z] [a-z])
|
---|
29 | fi
|
---|
30 | continue ;;
|
---|
31 |
|
---|
32 | # Create global variables for these parameters.
|
---|
33 | optDependency=* | \
|
---|
34 | PRINT_SERVER=* | \
|
---|
35 | MAIL_SERVER=* | \
|
---|
36 | GHOSTSCRIPT=* | \
|
---|
37 | KBR5=* | \
|
---|
38 | X11=* | \
|
---|
39 | SUDO=* ) eval ${REPLY} # Define/set a global variable..
|
---|
40 | continue ;;
|
---|
41 | esac
|
---|
42 |
|
---|
43 | if [[ "${REPLY}" =~ "^CONFIG_" ]]; then
|
---|
44 | echo -n "$REPLY"
|
---|
45 | if [[ $((++cntr)) > 1 ]]; then
|
---|
46 | echo " <<-- ERROR SELECT ONLY 1 PACKAGE AT A TIME, WILL NOT BUILD"
|
---|
47 | else
|
---|
48 | echo ""
|
---|
49 | optTARGET=$( echo $REPLY | sed -e 's@CONFIG_@@' -e 's@=y@@' )
|
---|
50 | fi
|
---|
51 | fi
|
---|
52 | done <$ConfigFile
|
---|
53 | if [[ $optTARGET = "" ]]; then
|
---|
54 | echo -e "\n>>> NO TARGET SELECTED.. applicaton terminated"
|
---|
55 | echo -e " Run <make> again and select a package to build\n"
|
---|
56 | exit 0
|
---|
57 | fi
|
---|
58 |
|
---|
59 | #
|
---|
60 | # Regenerate the META-package dependencies from the configuration file
|
---|
61 | #
|
---|
62 | rm -f libs/*.dep-MOD
|
---|
63 | while [ 0 ]; do
|
---|
64 | read || break 1
|
---|
65 | case ${REPLY} in
|
---|
66 | \#* | '') continue ;;
|
---|
67 | esac
|
---|
68 |
|
---|
69 | # Drop the "=y"
|
---|
70 | REPLY=${REPLY%=*}
|
---|
71 | if [[ "${REPLY}" =~ "^DEP_" ]]; then
|
---|
72 | META_PACKAGE=$(echo $REPLY | cut -d "_" -f2 | tr [A-Z] [a-z])
|
---|
73 | DEP_FNAME=$(echo $REPLY | cut -d "_" -f3)
|
---|
74 | echo "${DEP_FNAME}" >>libs/${META_PACKAGE}.dep-MOD
|
---|
75 | fi
|
---|
76 |
|
---|
77 | done <$ConfigFile
|
---|
78 | #
|
---|
79 | # Replace to 'old' dependency file with a new one.
|
---|
80 | #
|
---|
81 | for dst in `ls ./libs/*.dep-MOD 2>/dev/null`; do
|
---|
82 | cp -vf $dst ${dst%-MOD}
|
---|
83 | done
|
---|
84 |
|
---|
85 |
|
---|
86 | set -e
|
---|
87 | declare TARGET=$optTARGET
|
---|
88 | declare DEP_LEVEL=$optDependency
|
---|
89 | declare PKGXML
|
---|
90 | declare BLFS_XML
|
---|
91 | declare VERBOSITY=1
|
---|
92 | [[ -z $SUDO ]] && SUDO=y
|
---|
93 |
|
---|
94 | #---------------------
|
---|
95 | # Constants
|
---|
96 | source libs/constants.inc
|
---|
97 | [[ $? > 0 ]] && echo -e "\n\tERROR: constants.inc did not load..\n" && exit
|
---|
98 |
|
---|
99 | #---------------------
|
---|
100 | # Dependencies module
|
---|
101 | source libs/func_dependencies
|
---|
102 | [[ $? > 0 ]] && echo -e "\n\tERROR: func_dependencies did not load..\n" && exit
|
---|
103 |
|
---|
104 | #---------------------
|
---|
105 | # parser module
|
---|
106 | source libs/func_parser
|
---|
107 | [[ $? > 0 ]] && echo -e "\n\tERROR: func_parser did not load..\n" && exit
|
---|
108 |
|
---|
109 |
|
---|
110 | #------- MAIN --------
|
---|
111 | if [[ ! -f packages ]] ; then
|
---|
112 | echo -e "\tNo packages file has been found.\n"
|
---|
113 | echo -e "\tExecution aborted.\n"
|
---|
114 | exit 1
|
---|
115 | fi
|
---|
116 |
|
---|
117 | generate_dependency_tree
|
---|
118 | generate_TARGET_xml
|
---|
119 | generate_target_book
|
---|
120 | create_build_scripts "${SUDO}"
|
---|