configure
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Wed Jun 11 21:45:57 2008 +0000 (2008-06-11)
changeset 554 be6197b5b33b
parent 553 b2261f6f9bc2
child 614 ede871c1fd91
permissions -rwxr-xr-x
Include the full version number in the directory paths installed.
Change the version string so that it does not break 'make', and so that it has no '/' (it would be a hell if installed directories would mirror the SVN branches... :-/ )
Do not use implicit rules for the Makefile.
Simplify and enc=hance the --local test to refuse (un)installing.
Double-quotes variables, they are based on user input.
Eye-candy in the 'compile' and install messages.

/trunk/configure | 26 14 12 0 ++++++++++---------
/trunk/Makefile.in | 83 45 38 0 +++++++++++++++++++++++++++++++++---------------------------
2 files changed, 59 insertions(+), 50 deletions(-)
     1 #!/bin/sh
     2 
     3 VERSION=$(cat .version)
     4 DATE=$(date +%Y%m%d)
     5 
     6 PREFIX_DEFAULT=/usr/local
     7 
     8 BINDIR_set=
     9 LIBDIR_set=
    10 DOCDIR_set=
    11 MANDIR_set=
    12 LOCAL_set=
    13 
    14 get_optval(){
    15     local ret
    16     case "$1" in
    17         --*=?*)
    18             echo "${1}" |cut -d '=' -f 2-
    19             ret=0
    20             ;;
    21         *)
    22             echo "${2}"
    23             ret=1
    24             ;;
    25     esac
    26     return ${ret}
    27 }
    28 
    29 set_prefix() {
    30     PREFIX=$(get_optval "$1" "$2")
    31     return $?
    32 }
    33 
    34 set_bindir() {
    35     BINDIR_set=1
    36     BINDIR=$(get_optval "$1" "$2")
    37     return $?
    38 }
    39 
    40 set_libdir() {
    41     LIBDIR_set=1
    42     LIBDIR=$(get_optval "$1" "$2")
    43     return $?
    44 }
    45 
    46 set_docdir() {
    47     DOCDIR_set=1
    48     DOCDIR=$(get_optval "$1" "$2")
    49     return $?
    50 }
    51 
    52 set_mandir() {
    53     MANDIR_set=1
    54     MANDIR=$(get_optval "$1" "$2")
    55     return $?
    56 }
    57 
    58 do_help() {
    59     cat <<__EOF__
    60 \`configure' configures crosstool-NG ${VERSION} to adapt to many kind of systems.
    61 
    62 USAGE: ./configure [OPTION]...
    63 
    64 Defaults for the options are specified in brackets.
    65 
    66 Configuration:
    67   -h, --help              display this help and exit                                                                                                                  
    68   --prefix=PREFIX         install files in PREFIX [${PREFIX_DEFAULT}]
    69   --local                 don't install, and use current directory
    70 
    71 By default, \`make install' will install all the files in
    72 \`${PREFIX_DEFAULT}/bin', \`${PREFIX_DEFAULT}/lib' etc.  You can specify
    73 an installation prefix other than \`${PREFIX_DEFAULT}' using \`--prefix',
    74 for instance \`--prefix=\${HOME}'.
    75 
    76 For better control, use the options below.
    77 
    78 Fine tuning of the installation directories:
    79   --bindir=DIR           user executables [PREFIX/bin]
    80   --libdir=DIR           object code libraries [PREFIX/lib]
    81   --docdir=DIR           info documentation [PREFIX/share/doc]
    82   --mandir=DIR           man documentation [PREFIX/share/man]
    83 __EOF__
    84 }
    85 
    86 do_error() {
    87     echo "[ERROR] ${@}"
    88     exit 1
    89 }
    90 
    91 #---------------------------------------------------------------------
    92 # Set user's options
    93 
    94 while [ $# -ne 0 ]; do
    95     case "$1" in
    96         --prefix*)  set_prefix "$1" "$2" && shift || shift 2;;
    97         --bindir*)  set_bindir "$1" "$2" && shift || shift 2;;
    98         --libdir*)  set_libdir "$1" "$2" && shift || shift 2;;
    99         --docdir*)  set_docdir "$1" "$2" && shift || shift 2;;
   100         --mandir*)  set_mandir "$1" "$2" && shift || shift 2;;
   101         --local)    LOCAL_set=1; shift;;
   102         --help|-h)  do_help; exit 0;;
   103         *)          do_help; exit 1;;
   104     esac
   105 done
   106 
   107 [ -z "${PREFIX}" ] && set_prefix "" "${PREFIX_DEFAULT}"
   108 if [ "${LOCAL_set}" = "1" ]; then
   109     set_prefix "" $(pwd)
   110     set_bindir "" $(pwd)
   111     set_libdir "" $(pwd)
   112     set_docdir "" $(pwd)/docs
   113     set_mandir "" $(pwd)/docs
   114 fi
   115 
   116 #---------------------------------------------------------------------
   117 # Some sanity checks, now
   118 
   119 # If this version is a svn snapshot, try to get the revision number
   120 # If we can't get the revision number, use date
   121 echo -n "Computing version string... "
   122 case "${VERSION}" in
   123   *+svn)
   124     REVISION=$(LC_ALL=C svnversion)
   125     case "${REVISION}" in
   126       exported)
   127         VERSION="${VERSION}unknown@$(date +%Y%m%d.%H%M%S)";;
   128       *)
   129         URL=$(LC_ALL=C svn info 2>/dev/null |egrep 'URL: ' |cut -d ' ' -f 2-)
   130         ROOT=$(LC_ALL=C svn info 2>/dev/null |egrep 'Repository Root: ' |cut -d ' ' -f 3-)
   131         VERSION="${VERSION}${URL#${ROOT}}@${REVISION}"
   132         ;;
   133     esac
   134     VERSION="${VERSION/\//_}"
   135     ;;
   136 esac
   137 echo "${VERSION}"
   138 
   139 # Now we have the version string, we can buyild up the paths
   140 [ -z "${BINDIR_set}" ] && BINDIR="${PREFIX}/bin"
   141 [ -z "${LIBDIR_set}" ] && LIBDIR="${PREFIX}/lib/ct-ng-${VERSION}"
   142 [ -z "${DOCDIR_set}" ] && DOCDIR="${PREFIX}/share/doc/ct-ng-${VERSION}"
   143 [ -z "${MANDIR_set}" ] && MANDIR="${PREFIX}/share/man/man1"
   144 
   145 # Check bash is present, and at least version 3.0
   146 echo -n "Checking bash is at least bash-3.0... "
   147 [ -x /bin/bash ] || do_error "bash 3.0 or above was not found in /bin/bash"
   148 bash_version=$(/bin/bash -c 'echo ${BASH_VERSION}')
   149 bash_major=$(/bin/bash -c 'echo ${BASH_VERSINFO[0]}')
   150 [ ${bash_major} -ge 3 ] || do_error "bash 3.0 or above is needed (/bin/bash is ${bash_version})"
   151 echo "ok (${bash_version})"
   152 
   153 echo -n "Building up Makefile... "
   154 sed -r -e "s,@@BINDIR@@,${BINDIR},g;"   \
   155        -e "s,@@LIBDIR@@,${LIBDIR},g;"   \
   156        -e "s,@@DOCDIR@@,${DOCDIR},g;"   \
   157        -e "s,@@MANDIR@@,${MANDIR},g;"   \
   158        -e "s,@@VERSION@@,${VERSION},g;" \
   159        -e "s,@@DATE@@,${DATE},g;"       \
   160        -e "s,@@LOCAL@@,${LOCAL_set},g;" \
   161        Makefile.in >Makefile
   162 echo "ok"
   163 
   164 cat <<__EOF__
   165 crosstool-NG configured as follows:
   166   PREFIX='${PREFIX}'
   167   BINDIR='${BINDIR}'
   168   LIBDIR='${LIBDIR}'
   169   DOCDIR='${DOCDIR}'
   170   MANDIR='${MANDIR}'
   171 __EOF__