Ticket #22287: Portfile-snowleopard.patch

File Portfile-snowleopard.patch, 917 bytes (added by wyldfire@…, 15 years ago)

Patch to the portfile (disable parallel build, allow building depdom by removing -L(prefix)/lib, add -b 64 on Snow Leopard)

  • (a) /Users/bluefire/Downloads/Portfile.txt vs. (b) Portfile

    a b  
    1 # $Id$
     1# $Id: Portfile 50984 2009-05-14 21:08:43Z and.damore@macports.org $
    22
    33PortSystem 1.0
    44name                    xercesc
     
    1919checksums               md5 5daf514b73f3e0de9e3fce704387c0d2
    2020platforms               darwin
    2121
     22patchfiles              macsvn.diff
     23
    2224configure.dir           ${worksrcpath}/src/xercesc
    2325configure.env           XERCESCROOT=${worksrcpath}
    2426configure.pre_args      -P "${prefix}"
    2527configure.cmd           ./runConfigure
     28configure.ldflags-delete    -L${prefix}/lib
    2629
    2730build.dir               ${worksrcpath}/src/xercesc
    2831build.env               ${configure.env}
    2932build.type              gnu
     33use_parallel_build      no
    3034
    3135platform darwin {
    3236        configure.pre_args-append       -p macosx -n native
    3337}
    3438
     39platform darwin 10 {
     40        configure.pre_args-append       -b 64
     41}
     42
    3543platform darwin 8 {
    3644        configure.pre_args-append       -c /usr/bin/gcc-4.0 -x /usr/bin/g++-4.0
    3745}