diff --git a/BLFS/alternatives.conf b/BLFS/alternatives.conf deleted file mode 100644 index 0b6b928..0000000 --- a/BLFS/alternatives.conf +++ /dev/null @@ -1,27 +0,0 @@ -##### -# -# Configuration file for the BLFS module -# -# $Id$ -# -# Set default package for alternatives when resolving dependencies -# -##### - -# Print server cups/LPRng -PRINT_SERVER=cups - -# Mail server sendmail/postfix/exim -MAIL_SERVER=sendmail - -# GhostScript gs/espgs -GHOSTSCRIPT=espgs - -# Kerberos 5 mitkrb/heimdal -KBR5=heimdal - -# X11 implementation xorg7/xorg/xfree86 -X11=xorg7 - - - diff --git a/BLFS/blfs-parser.sh b/BLFS/blfs-parser.sh deleted file mode 100755 index 506c2e3..0000000 --- a/BLFS/blfs-parser.sh +++ /dev/null @@ -1,119 +0,0 @@ -#!/bin/bash -# -# $Id$ -# -set -e -declare TARGET -declare DEP_LEVEL -declare PKGXML -declare BLFS_XML -declare VERBOSITY=1 - -# Grab and name the command line options - optTARGET=$1 # Package target -optDEPENDENCY=$2 # Dependencies level, 1/2/3 - SUDO=$3 # Build as user (y) or as root (n) - -[[ -z $SUDO ]] && SUDO=y - - -#--------------------- -# Constants -source libs/constants.inc -[[ $? > 0 ]] && echo -e "\n\tERROR: constants.inc did not load..\n" && exit - -#--------------------- -# Configuration file for alternatives -source alternatives.conf -[[ $? > 0 ]] && echo -e "\n\tERROR: alternatives.conf 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 - - - -#-------------------------# -validate_target() { # ID of target package (as listed in packages file) -#-------------------------# -: < /dev/null ; then - echo -e "\n\t$1 is not a valid package ID." - echo -e "\tSee packages file for a list of available targets.\n" - exit 1 - fi - - TARGET=$1 - echo -e "\n\tUsing $TARGET as the target package." -} - -#-------------------------# -validate_dependency() { # Dependencies level 1(required)/2(1 + recommended)/3(2+ optional) -#-------------------------# -: <