[73036] trunk/dports/devel/MacPorts_Framework/Portfile

Ryan Schmidt ryandesign at macports.org
Mon Nov 1 18:46:25 PDT 2010


On Nov 1, 2010, at 19:46, Ryan Schmidt wrote:

> On Nov 1, 2010, at 16:51, juanger at macports.org wrote:
> 
>> Revision: 73036
>>         http://trac.macports.org/changeset/73036
>> Author:   juanger at macports.org
>> Date:     2010-11-01 14:51:04 -0700 (Mon, 01 Nov 2010)
>> Log Message:
>> -----------
>> New version of the framework. Faster load of ports list and more reliable.
> 
> 
>> @@ -31,7 +31,7 @@
>>  } elseif {8 == ${os.major}} {
>>    xcode.configuration     Release-Tiger
>>  } else {
>> -    ui_error "You need Mac OS X Tiger at least to build this port."
>> +    ui_error "You need at least Mac OS X Tiger to build this port."
>>    return -code error "incompatible Mac OS X version"
>>  }
>> }
> 
> MacPorts itself needs at least Tiger at this point, so this whole block can be removed.

Er, I see we can't just remove the block, since it sets a different xcode.configuration on Tiger. So perhaps the simpler way to do this is to replace the "if {"darwin" == ${os.platform}}" block with:


xcode.configuration     Release

platform darwin 8 {
    xcode.configuration Release-Tiger
}




More information about the macports-dev mailing list