New Ticket     Tickets     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Changeset 80127


Ignore:
Timestamp:
07/04/11 17:39:43 (4 years ago)
Author:
jeremyhu@…
Message:

apple-gcc40: Updated to version 5493

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dports/lang/apple-gcc40/Portfile

    r61327 r80127  
    44 
    55name                    apple-gcc40 
    6 version                 5465 
     6version                 5493 
    77categories              lang 
    88platforms               darwin 
     
    1212                        version 4.0. Supports C and Objective-C only. 
    1313 
    14 homepage                http://developer.apple.com/documentation/DeveloperTools/gcc-4.0/gcc/ 
    15 master_sites            http://www.opensource.apple.com/darwinsource/tarballs/other/ 
     14homepage                http://opensource.apple.com/ 
     15master_sites            http://opensource.apple.com/tarballs/gcc 
    1616distname                gcc-${version} 
    17 checksums               sha1 7452d5a5a8f8b125cf2ab31781c78da9b6d84bbe 
     17checksums               md5     66651c04639a222434f21e62f4cf0419 \ 
     18                        sha1    e3b1f67ff250730f5b4ee9674a1970aa7d9db399 \ 
     19                        rmd160  3566d6e5c74bdb442cfb6b20450c2b2137ef0627 
    1820 
    1921post-extract { file mkdir ${workpath}/build } 
     
    4143destroot.dir            ${build.dir} 
    4244 
     45# STAGE1_CFLAGS="-O2 -fkeep-inline-functions" : from configure.ac 
     46# BOOT_CFLAGS="-O2 -g" : from Makefile.tpl 
     47# -std=gnu89 : for building with compilers that default to c99 (clang) 
     48# -D_FORTIFY_SOURCE=0 : The built compiler might not understand newer builtins 
     49#                       exposed in libc headers for fortified string functions. 
     50#                       Yes, we need to set both BOOT_CFLAGS and STAGE1_CFLAGS 
     51#                       because STAGE1_CFLAGS is used with xgcc for libgcc 
     52build.args-append BOOT_CFLAGS="-O2 -g -D_FORTIFY_SOURCE=0" STAGE1_CFLAGS="-O2 -fkeep-inline-functions -D_FORTIFY_SOURCE=0 -std=gnu89" 
     53 
    4354post-destroot { 
    4455        file delete -force \ 
     
    4758} 
    4859 
    49 livecheck.type          moddate 
    50 livecheck.url           ${master_sites} 
    51  
     60# It's difficult to distinguish between Apple's gcc-4.0 and gcc-4.2 releases 
     61livecheck.type  none 
Note: See TracChangeset for help on using the changeset viewer.