Ticket #15209: cairo-quartz-font-universal.diff

File cairo-quartz-font-universal.diff, 1.0 KB (added by nox@…, 16 years ago)

Now works when universal support is enabled

  • Portfile

     
    55name                    cairo
    66set my_name             cairo
    77version                 1.6.4
     8revision                1
    89categories              graphics
    910maintainers             ryandesign
    1011homepage                http://cairographics.org/
    1112master_sites            ${homepage}releases/
    12 platforms               darwin
     13platforms               macosx
    1314use_parallel_build      yes
    1415dist_subdir             ${my_name}
    1516distname                ${my_name}-${version}
     
    8889    }
    8990}
    9091
     92post-destroot {
     93    if {[variant_isset universal]} {
     94        set path ${workpath}/${first_arch}
     95    } else {
     96        set path ${worksrcpath}
     97    }
     98
     99    xinstall -m 0644 ${path}/src/cairo-quartz-font.pc \
     100        ${destroot}${prefix}/lib/pkgconfig/
     101}
     102
    91103set my_universal_archs {i386 ppc}
    92104set first_arch [lindex ${my_universal_archs} 0]
    93105set my_worksrcpaths {}