scripts/build/companion_libs/mpfr.sh
author Titus von Boxberg <tvb377@gmx.de>
Wed Feb 03 00:24:24 2010 +0100 (2010-02-03)
changeset 1797 42c618ca576e
parent 1449 8ad2773e7ae3
child 1808 a1370757e6a1
permissions -rw-r--r--
comp-libs/mpfr: fix build on Darwin
     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 do_mpfr_get() { :; }
     6 do_mpfr_extract() { :; }
     7 do_mpfr() { :; }
     8 do_mpfr_target() { :; }
     9 
    10 # Overide function depending on configuration
    11 if [ "${CT_GMP_MPFR}" = "y" ]; then
    12 
    13 # Download MPFR
    14 do_mpfr_get() {
    15     CT_GetFile "mpfr-${CT_MPFR_VERSION}" http://www.mpfr.org/mpfr-current/  \
    16                                  http://www.mpfr.org/mpfr-${CT_MPFR_VERSION}/
    17 }
    18 
    19 # Extract MPFR
    20 do_mpfr_extract() {
    21     CT_Extract "mpfr-${CT_MPFR_VERSION}"
    22     CT_Patch "mpfr-${CT_MPFR_VERSION}"
    23 
    24     # OK, Gentoo have a sanity check that libtool.m4 and ltmain.sh have the
    25     # same version number. Unfortunately, some tarballs of MPFR are not
    26     # built sanely, and thus ./configure fails on Gentoo.
    27     # See: http://sourceware.org/ml/crossgcc/2008-05/msg00080.html
    28     # and: http://sourceware.org/ml/crossgcc/2008-06/msg00005.html
    29     # This hack is not bad per se, but the MPFR guys would be better not to
    30     # do that in the future...
    31     # It seems that MPFR >= 2.4.0 do not need this...
    32     case "${CT_MPFR_VERSION}" in
    33         2.4.1)
    34             CT_Pushd "${CT_SRC_DIR}/mpfr-${CT_MPFR_VERSION}"
    35             if [ ! -f .autoreconf.ct-ng ]; then
    36                 CT_DoLog DEBUG "Running autoreconf"
    37                 CT_DoExecLog ALL autoreconf
    38                 touch .autoreconf.ct-ng
    39             fi
    40             CT_Popd
    41             ;;
    42         1.*|2.0.*|2.1.*|2.2.*|2.3.*)
    43             CT_Pushd "${CT_SRC_DIR}/mpfr-${CT_MPFR_VERSION}"
    44             if [ ! -f .autotools.ct-ng ]; then
    45                 CT_DoLog DEBUG "Re-building autotools files"
    46                 CT_DoExecLog ALL autoreconf -fi
    47                 # Starting with libtool-1.9f, config.{guess,sub} are no longer
    48                 # installed without -i, but starting with libtool-2.2.6, they
    49                 # are no longer removed without -i. Sight... Just use -i with
    50                 # libtool >=2
    51                 # See: http://sourceware.org/ml/crossgcc/2008-11/msg00046.html
    52                 # and: http://sourceware.org/ml/crossgcc/2008-11/msg00048.html
    53                 libtoolize_opt=
    54                 case "$(libtoolize --version |head -n 1 |awk '{ print $(NF); }')" in
    55                     0.*)    ;;
    56                     1.*)    ;;
    57                     *)      libtoolize_opt=-i;;
    58                 esac
    59                 CT_DoExecLog ALL libtoolize -f ${libtoolize_opt}
    60                 touch .autotools.ct-ng
    61             fi
    62             CT_Popd
    63             ;;
    64     esac
    65 }
    66 
    67 do_mpfr() {
    68     mkdir -p "${CT_BUILD_DIR}/build-mpfr"
    69     cd "${CT_BUILD_DIR}/build-mpfr"
    70 
    71     CT_DoStep INFO "Installing MPFR"
    72 
    73     mpfr_opt=
    74     # Under Cygwin, we can't build a thread-safe library
    75     case "${CT_HOST}" in
    76         *cygwin*)   mpfr_opt="--disable-thread-safe";;
    77         *mingw*)    mpfr_opt="--disable-thread-safe";;
    78         *darwin*)   mpfr_opt="--disable-thread-safe";;
    79         *)          mpfr_opt="--enable-thread-safe";;
    80     esac
    81 
    82     CT_DoLog EXTRA "Configuring MPFR"
    83     CC="${CT_HOST}-gcc"                                 \
    84     CFLAGS="${CT_CFLAGS_FOR_HOST}"                      \
    85     CT_DoExecLog ALL                                    \
    86     "${CT_SRC_DIR}/mpfr-${CT_MPFR_VERSION}/configure"   \
    87         --build=${CT_BUILD}                             \
    88         --host=${CT_HOST}                               \
    89         --prefix="${CT_PREFIX_DIR}"                     \
    90         ${mpfr_opt}                                     \
    91         --enable-shared                                 \
    92         --disable-static                                \
    93         --with-gmp="${CT_PREFIX_DIR}"
    94 
    95     CT_DoLog EXTRA "Building MPFR"
    96     CT_DoExecLog ALL make ${PARALLELMFLAGS}
    97 
    98     if [ "${CT_COMP_LIBS_CHECK}" = "y" ]; then
    99         CT_DoLog EXTRA "Checking MPFR"
   100         CT_DoExecLog ALL make ${PARALLELMFLAGS} -s check
   101     fi
   102 
   103     CT_DoLog EXTRA "Installing MPFR"
   104     CT_DoExecLog ALL make install
   105 
   106     CT_EndStep
   107 }
   108 
   109 if [ "${CT_COMP_LIBS_TARGET}" = "y" ]; then
   110 
   111 do_mpfr_target() {
   112     mkdir -p "${CT_BUILD_DIR}/build-mpfr-target"
   113     cd "${CT_BUILD_DIR}/build-mpfr-target"
   114 
   115     CT_DoStep INFO "Installing MPFR for the target"
   116 
   117     mpfr_opt=
   118     # Under Cygwin, we can't build a thread-safe library
   119     case "${CT_TARGET}" in
   120         *-cygwin)   mpfr_opt="--disable-thread-safe";;
   121         *)          mpfr_opt="--enable-thread-safe";;
   122     esac
   123 
   124     CT_DoLog EXTRA "Configuring MPFR"
   125     CC="${CT_TARGET}-gcc"                               \
   126     CFLAGS="${CT_CFLAGS_FOR_TARGET}"                    \
   127     CT_DoExecLog ALL                                    \
   128     "${CT_SRC_DIR}/mpfr-${CT_MPFR_VERSION}/configure"   \
   129         --build=${CT_BUILD}                             \
   130         --host=${CT_TARGET}                             \
   131         --prefix=/usr                                   \
   132         ${mpfr_opt}                                     \
   133         --disable-shared                                \
   134         --enable-static                                 \
   135         --with-gmp="${CT_SYSROOT_DIR}/usr"
   136 
   137     CT_DoLog EXTRA "Building MPFR"
   138     CT_DoExecLog ALL make ${PARALLELMFLAGS}
   139 
   140     # Not possible to check MPFR while X-compiling
   141 
   142     CT_DoLog EXTRA "Installing MPFR"
   143     CT_DoExecLog ALL make DESTDIR="${CT_SYSROOT_DIR}" install
   144 
   145     CT_EndStep
   146 }
   147 
   148 fi # CT_GMP_MPFR_TARGET == y
   149 
   150 fi # CT_GMP_MPFR == y