Ticket #28907: gforth-Portfile.diff
File gforth-Portfile.diff, 909 bytes (added by daitakahashi, 14 years ago) |
---|
-
lang/gforth/Portfile
1 1 # $Id: Portfile 74248 2010-12-09 01:44:05Z jmr@macports.org $ 2 2 3 3 PortSystem 1.0 4 PortGroup muniversal 1.0 4 5 name gforth 5 6 version 0.7.0 6 7 categories lang … … 35 36 } 36 37 37 38 platform darwin { 38 if {$build_arch == "x86_64"} { 39 configure.args-append --build=${build_arch}-apple-${os.platform}${os.version} 39 if { [variant_isset universal] } { 40 foreach arch ${universal_archs_supported} { 41 lappend merger_configure_args($arch) --build=${arch}-apple-${os.platform}${os.version} 42 lappend merger_host($arch) ${arch}-apple-${os.platform}${os.version} 43 } 44 } else { 45 configure.args-append --build=${configure.build_arch}-apple-${os.platform}${os.version} 40 46 } 41 47 }