Ticket #18154: gmp-Portfile.diff
File gmp-Portfile.diff, 1.2 KB (added by MarcusCalhoun-Lopez (Marcus Calhoun-Lopez), 16 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 $ 2 3 3 4 PortSystem 1.0 5 PortGroup merge_universal 1.0 4 6 5 7 name gmp 6 8 version 4.2.4 7 9 revision 1 8 10 categories devel math 9 maintainers nomaintainer11 maintainers mcalhoun openmaintainer 10 12 platforms darwin 11 13 description GNU multiple precision arithmetic library 12 14 long_description \ … … 30 32 use_bzip2 yes 31 33 use_parallel_build yes 32 34 33 configure.env ABI=32 35 if {![variant_isset universal]} { 36 configure.env ABI=32 37 } 34 38 35 39 configure.args --infodir=${prefix}/share/info \ 36 40 --enable-cxx 37 41 38 universal_variant no39 40 42 test.run yes 41 43 test.cmd make 42 44 test.target check … … 44 46 platform powerpc { 45 47 configure.cflags-append -force_cpusubtype_ALL 46 48 } 49 50 array set merger_configure_env { 51 ppc ABI=32 52 i386 ABI=32 53 ppc64 ABI=mode64 54 x86_64 ABI=64 55 }