Ticket #18154: gmp-Portfile.diff

File gmp-Portfile.diff, 1.2 KB (added by MarcusCalhoun-Lopez (Marcus Calhoun-Lopez), 15 years ago)
  • Portfile

    old new  
    1 # $Id: Portfile 45254 2009-01-12 08:43:01Z mcalhoun@macports.org $
     1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
     2# $Id: Portfile 45214 2009-01-11 08:40:43Z mcalhoun@macports.org $
    23
    34PortSystem 1.0
     5PortGroup  merge_universal  1.0
    46
    57name            gmp
    68version         4.2.4
    79revision        1
    810categories      devel math
    9 maintainers     nomaintainer
     11maintainers     mcalhoun openmaintainer
    1012platforms       darwin
    1113description     GNU multiple precision arithmetic library
    1214long_description \
     
    3032use_bzip2       yes
    3133use_parallel_build yes
    3234
    33 configure.env   ABI=32
     35if {![variant_isset universal]} {
     36    configure.env   ABI=32
     37}
    3438
    3539configure.args  --infodir=${prefix}/share/info \
    3640                --enable-cxx
    3741
    38 universal_variant   no
    39 
    4042test.run        yes
    4143test.cmd        make
    4244test.target     check
     
    4446platform powerpc {
    4547    configure.cflags-append -force_cpusubtype_ALL
    4648}
     49
     50array set merger_configure_env {
     51    ppc     ABI=32
     52    i386    ABI=32
     53    ppc64   ABI=mode64
     54    x86_64  ABI=64
     55}