source: common/common-functions@ e4f732c

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

More compare and related fixes.
Test build in progress.

  • Property mode set to 100644
File size: 2.7 KB
Line 
1#!/bin/bash
2
3# $Id$
4
5set -e
6
7
8no_empty_builddir() {
9 'clear'
10cat <<- -EOF-
11${DD_BORDER}
12
13${tab_}${tab_}${BOLD}${RED}W A R N I N G${OFF}
14 Looks like the \$BUILDDIR directory contains subdirectories
15 from a previous HLFS build.
16
17 Please format the partition mounted on \$BUILDDIR or set
18 a different build directory before running jhalfs.
19${OFF}
20${DD_BORDER}
21-EOF-
22 exit
23}
24
25
26#----------------------------#
27run_make() { #
28#----------------------------#
29 # Test if make must be run.
30 if [ "$RUNMAKE" = "y" ] ; then
31 # Test to make sure we're not running the build as root
32 if [ "$UID" = "0" ] ; then
33 echo "You must not be logged in as root to build the system."
34 exit 1
35 fi
36 # Build the system
37 if [ -e $MKFILE ] ; then
38 echo -ne "Building the system...\n"
39 cd $JHALFSDIR && make
40 echo -ne "done\n"
41 fi
42 fi
43}
44
45
46#----------------------------#
47clean_builddir() { #
48#----------------------------#
49 # Test if the clean must be done.
50 if [ "${CLEAN}" = "y" ]; then
51 # Test to make sure that the build directory was populated by jhalfs
52 if [ ! -d $JHALFSDIR ] || [ ! -d $BUILDDIR/sources ] ; then
53 echo "Looks like $BUILDDIR was not populated by a previous jhalfs run."
54 exit 1
55 else
56 # Clean the build directory
57 echo -n "Cleaning $BUILDDIR ..."
58 sudo rm -rf $BUILDDIR/{bin,boot,etc,home,lib,media,mnt,opt,root,sbin,srv,tmp,tools,cross-tools,usr,var}
59 echo "done"
60 echo -n "Cleaning $JHALFSDIR ..."
61 sudo rm -rf $JHALFSDIR
62 echo "done"
63 echo -n "Cleaning remainig extracted sources in $BUILDDIR/sources ..."
64 sudo rm -rf `find $BUILDDIR/sources/* -maxdepth 0 -type d`
65 echo "done"
66 fi
67 fi
68}
69
70VERBOSITY2=$VERBOSITY
71
72[[ $VERBOSITY2 > 0 ]] && echo ""
73
74[[ $VERBOSITY2 > 0 ]] && echo -n "Loading <func_book_parser>..."
75source $COMMON_DIR/libs/func_book_parser
76[[ $? > 0 ]] && echo "file libs/func_book_parser did not load.." && exit 1
77[[ $VERBOSITY2 > 0 ]] && echo "OK"
78
79
80[[ $VERBOSITY2 > 0 ]] && echo -n "Loading <func_download_pkgs>..."
81source $COMMON_DIR/libs/func_download_pkgs
82[[ $? > 0 ]] && echo "file libs/func_download_pkgs did not load.." && exit 1
83[[ $VERBOSITY2 > 0 ]] && echo "OK"
84
85
86[[ $VERBOSITY2 > 0 ]] && echo -n "Loading <func_wrt_Makefile>..."
87source $COMMON_DIR/libs/func_wrt_Makefile
88[[ $? > 0 ]] && echo "file libs/func_wrt_Makefile did not load.." && exit 1
89[[ $VERBOSITY2 > 0 ]] && echo "OK"
90
91
92[[ $VERBOSITY2 > 0 ]] && echo -n "Loading <func_blfs_deps>..."
93source $COMMON_DIR/libs/func_blfs_deps
94[[ $? > 0 ]] && echo "file libs/func_blfs_deps did not load.." && exit 1
95[[ $VERBOSITY2 > 0 ]] && echo "OK"
96
97[[ $VERBOSITY2 > 0 ]] && echo -n " ..."
Note: See TracBrowser for help on using the repository browser.