[59293] trunk/dports/lang/ccl/Portfile
Ryan Schmidt
ryandesign at macports.org
Tue Oct 13 04:03:16 PDT 2009
On Oct 13, 2009, at 01:59, gwright at macports.org wrote:
> Revision: 59293
> http://trac.macports.org/changeset/59293
> Author: gwright at macports.org
> Date: 2009-10-12 23:59:27 -0700 (Mon, 12 Oct 2009)
> Log Message:
> -----------
> Clean port lint warning; reenable 64 bit variants.
>
> Modified Paths:
> --------------
> trunk/dports/lang/ccl/Portfile
> +platform darwin x86_64 {
> + svn.url http://svn.clozure.com/publicsvn/openmcl/release/${shortversion}/darwinx86/ccl
> + global bootimg
> + set bootimg dx86cl64
>
> + global ccl_script
> + set ccl_script ccl64
> +}
> +platform darwin ppc64 {
> + svn.url http://svn.clozure.com/publicsvn/openmcl/release/${shortversion}/darwinppc/ccl
> + global bootimg
> + set bootimg dppccl64
>
> + global ccl_script
> + set ccl_script ccl64
> +}
Remember that there is no such thing as "platform x86_64" or "platform
ppc64" and MacPorts will never select these variants for you. The only
Mac platforms MacPorts recognizes are "powerpc" (any PowerPC
processor, 32-bit or 64-bit) and "i386" (any Intel processor, 32-bit
or 64-bit). If you want to differentiate between 32-bit and 64-bit
architectures, examine the ${configure.build_arch} variable (if not
building universal) or ${configure.universal_archs} (if building
universal).
More information about the macports-dev
mailing list