scripts/build/mpfr.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon May 19 21:41:19 2008 +0000 (2008-05-19)
changeset 522 0ebb814eb9f8
parent 468 c310ff1d697f
child 524 5f7fec79ca88
permissions -rw-r--r--
In the future, we'll be able to download /old/ MPFR versions.

/trunk/scripts/build/mpfr.sh | 3 2 1 0 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
     1 # This file adds the functions to build the MPFR library
     2 # Copyright 2008 Yann E. MORIN
     3 # Licensed under the GPL v2. See COPYING in the root of this package
     4 
     5 if [ "${CT_CC_GCC_GMP_MPFR}" = "y" ]; then
     6 
     7 do_print_filename() {
     8     [ "${CT_CC_GCC_GMP_MPFR}" = "y" ] || return 0
     9     echo "mpfr-${CT_MPFR_VERSION}"
    10 }
    11 
    12 # Download MPFR
    13 do_mpfr_get() {
    14     CT_GetFile "${CT_MPFR_FILE}" http://www.mpfr.org/mpfr-current/          \
    15                                  http://www.mpfr.org/mpfr-${CT_MPFR_VERSION}/
    16 }
    17 
    18 # Extract MPFR
    19 do_mpfr_extract() {
    20     CT_ExtractAndPatch "${CT_MPFR_FILE}"
    21 }
    22 
    23 do_mpfr() {
    24     mkdir -p "${CT_BUILD_DIR}/build-mpfr"
    25     cd "${CT_BUILD_DIR}/build-mpfr"
    26 
    27     CT_DoStep INFO "Installing MPFR"
    28 
    29     CT_DoLog EXTRA "Configuring MPFR"
    30     CFLAGS="${CT_CFLAGS_FOR_HOST}"                          \
    31     "${CT_SRC_DIR}/${CT_MPFR_FILE}/configure"               \
    32         --build=${CT_BUILD}                                 \
    33         --host=${CT_HOST}                                   \
    34         --prefix="${CT_PREFIX_DIR}"                         \
    35         --disable-shared --enable-static                    \
    36         --with-gmp="${CT_PREFIX_DIR}"                       2>&1 |CT_DoLog ALL
    37 
    38     CT_DoLog EXTRA "Building MPFR"
    39     make ${PARALLELMFLAGS}  2>&1 |CT_DoLog ALL
    40 
    41     if [ "${CT_MPFR_CHECK}" = "y" ]; then
    42         CT_DoLog EXTRA "Checking MPFR"
    43         make -s check       2>&1 |CT_DoLog ALL
    44     fi
    45 
    46     CT_DoLog EXTRA "Installing MPFR"
    47     make install            2>&1 |CT_DoLog ALL
    48 
    49     CT_EndStep
    50 }
    51 
    52 else # No MPFR
    53 
    54 do_print_filename() { :; }
    55 do_mpfr_get() { :; }
    56 do_mpfr_extract() { :; }
    57 do_mpfr() { :; }
    58 
    59 fi