2006-08-22 02:34:13 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#
|
|
|
|
# Read and parse the configuration parameters..
|
|
|
|
#
|
|
|
|
ConfigFile="configuration"
|
|
|
|
while [ 0 ]; do
|
|
|
|
read || break 1
|
2006-08-22 21:15:44 +02:00
|
|
|
|
2006-08-22 02:34:13 +02:00
|
|
|
# Garbage collection
|
|
|
|
case ${REPLY} in
|
|
|
|
\#* | '') continue ;;
|
|
|
|
esac
|
2006-08-22 21:15:44 +02:00
|
|
|
|
2006-08-22 02:34:13 +02:00
|
|
|
case "${REPLY}" in
|
|
|
|
CONFIG_ALSA=* | \
|
|
|
|
CONFIG_GNOME-CORE=* | \
|
|
|
|
CONFIG_GNOME-FULL=* | \
|
|
|
|
CONFIG_KDE-CORE=* | \
|
|
|
|
CONFIG_KDE-FULL=* | \
|
|
|
|
CONFIG_KDE-KOFFICE=* | \
|
|
|
|
CONFIG_XORG7=* ) REPLY=${REPLY%=*} # Strip the trailing '=y' test.. unecessary
|
|
|
|
echo -n "${REPLY}"
|
2006-08-22 21:15:44 +02:00
|
|
|
if [[ $((++cntr)) > 1 ]]; then
|
2006-08-22 02:34:13 +02:00
|
|
|
echo " <<-- ERROR:: SELECT ONLY 1 PACKAGE AT A TIME, META-PACKAGE NOT SELECTED"
|
|
|
|
else
|
|
|
|
echo ""
|
|
|
|
optTARGET=$(echo $REPLY | cut -d "_" -f2 | tr [A-Z] [a-z])
|
|
|
|
fi
|
|
|
|
continue ;;
|
2006-08-22 21:15:44 +02:00
|
|
|
|
2006-08-22 02:34:13 +02:00
|
|
|
# Create global variables for these parameters.
|
|
|
|
optDependency=* | \
|
|
|
|
PRINT_SERVER=* | \
|
|
|
|
MAIL_SERVER=* | \
|
|
|
|
GHOSTSCRIPT=* | \
|
|
|
|
KBR5=* | \
|
|
|
|
X11=* | \
|
2006-08-22 21:15:44 +02:00
|
|
|
SUDO=* ) eval ${REPLY} # Define/set a global variable..
|
2006-08-22 02:34:13 +02:00
|
|
|
continue ;;
|
|
|
|
esac
|
|
|
|
|
2006-08-22 21:15:44 +02:00
|
|
|
if [[ "${REPLY}" =~ "^CONFIG_" ]]; then
|
2006-08-22 02:34:13 +02:00
|
|
|
echo -n "$REPLY"
|
2006-08-22 21:15:44 +02:00
|
|
|
if [[ $((++cntr)) > 1 ]]; then
|
2006-08-22 02:34:13 +02:00
|
|
|
echo " <<-- ERROR SELECT ONLY 1 PACKAGE AT A TIME, WILL NOT BUILD"
|
|
|
|
else
|
|
|
|
echo ""
|
|
|
|
optTARGET=$( echo $REPLY | sed -e 's@CONFIG_@@' -e 's@=y@@' )
|
2006-08-22 21:15:44 +02:00
|
|
|
fi
|
2006-08-22 02:34:13 +02:00
|
|
|
fi
|
|
|
|
done <$ConfigFile
|
2006-08-22 05:17:21 +02:00
|
|
|
if [[ $optTARGET = "" ]]; then
|
|
|
|
echo -e "\n>>> NO TARGET SELECTED.. applicaton terminated"
|
|
|
|
echo -e " Run <make> again and select a package to build\n"
|
|
|
|
exit 0
|
|
|
|
fi
|
2006-08-22 02:34:13 +02:00
|
|
|
|
|
|
|
#
|
|
|
|
# Regenerate the META-package dependencies from the configuration file
|
|
|
|
#
|
|
|
|
rm -f libs/*.dep-MOD
|
|
|
|
while [ 0 ]; do
|
|
|
|
read || break 1
|
|
|
|
case ${REPLY} in
|
|
|
|
\#* | '') continue ;;
|
|
|
|
esac
|
2006-08-22 21:15:44 +02:00
|
|
|
|
2006-08-22 02:34:13 +02:00
|
|
|
# Drop the "=y"
|
|
|
|
REPLY=${REPLY%=*}
|
|
|
|
if [[ "${REPLY}" =~ "^DEP_" ]]; then
|
|
|
|
META_PACKAGE=$(echo $REPLY | cut -d "_" -f2 | tr [A-Z] [a-z])
|
|
|
|
DEP_FNAME=$(echo $REPLY | cut -d "_" -f3)
|
|
|
|
echo "${DEP_FNAME}" >>libs/${META_PACKAGE}.dep-MOD
|
|
|
|
fi
|
|
|
|
|
|
|
|
done <$ConfigFile
|
|
|
|
#
|
|
|
|
# Replace to 'old' dependency file with a new one.
|
|
|
|
#
|
2006-08-22 03:06:59 +02:00
|
|
|
for dst in `ls ./libs/*.dep-MOD 2>/dev/null`; do
|
|
|
|
cp -vf $dst ${dst%-MOD}
|
2006-08-22 02:34:13 +02:00
|
|
|
done
|
|
|
|
|
|
|
|
|
|
|
|
set -e
|
|
|
|
declare TARGET=$optTARGET
|
|
|
|
declare DEP_LEVEL=$optDependency
|
|
|
|
declare PKGXML
|
|
|
|
declare BLFS_XML
|
|
|
|
declare VERBOSITY=1
|
|
|
|
[[ -z $SUDO ]] && SUDO=y
|
|
|
|
|
|
|
|
#---------------------
|
|
|
|
# Constants
|
|
|
|
source libs/constants.inc
|
|
|
|
[[ $? > 0 ]] && echo -e "\n\tERROR: constants.inc did not load..\n" && exit
|
|
|
|
|
|
|
|
#---------------------
|
|
|
|
# Dependencies module
|
|
|
|
source libs/func_dependencies
|
|
|
|
[[ $? > 0 ]] && echo -e "\n\tERROR: func_dependencies did not load..\n" && exit
|
|
|
|
|
|
|
|
#---------------------
|
|
|
|
# parser module
|
|
|
|
source libs/func_parser
|
|
|
|
[[ $? > 0 ]] && echo -e "\n\tERROR: func_parser did not load..\n" && exit
|
|
|
|
|
|
|
|
|
|
|
|
#------- MAIN --------
|
|
|
|
if [[ ! -f packages ]] ; then
|
|
|
|
echo -e "\tNo packages file has been found.\n"
|
|
|
|
echo -e "\tExecution aborted.\n"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
generate_dependency_tree
|
|
|
|
generate_TARGET_xml
|
|
|
|
generate_target_book
|
|
|
|
create_build_scripts "${SUDO}"
|