New Ticket     Tickets     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Ticket #14180: boost-jam-update.patch

File boost-jam-update.patch, 2.2 KB (added by jon.olsson@…, 5 years ago)
  • Portfile

    old new  
    22 
    33PortSystem 1.0 
    44name             boost-jam 
    5 version          3.1.15 
     5version          3.1.16 
    66categories       devel 
    77maintainers      gmail.com:jon.olsson 
    88description      Boost.Jam (BJam) is a build tool based on FTJam 
    99long_description \ 
    10         Boost.Jam (BJam) is a build tool based on FTJam, \ 
    11         which in turn is based on Perforce Jam. It contains \ 
    12         significant improvements made to facilitate its use \ 
    13         in the Boost Build System, but should be backward \ 
    14         compatible with Perforce Jam. 
     10        Boost.Jam (BJam) is a build tool based on FTJam, \ 
     11        which in turn is based on Perforce Jam. It contains \ 
     12        significant improvements made to facilitate its use \ 
     13        in the Boost Build System, but should be backward \ 
     14        compatible with Perforce Jam. 
    1515homepage         http://www.boost.org 
    1616master_sites     sourceforge:boost 
    1717extract.suffix   .tgz 
    18 checksums        md5 dbf3f5a36df4c96c555e365773f54ba7 \ 
    19                  rmd160 a149d44d92358a967d135d05852f66be425fb96f \ 
    20                  sha1 61c723048f3a358dfb461acf2d96bd59df11c1e1 
     18checksums        md5 1fd96a38b1a33c365e8142eec53197e7 \ 
     19                 rmd160 dd602c5e01a004dbf6e6ee542c5f6bdb0bd1348f \ 
     20                 sha1 e2dd6ef9c56b18c7be7669aba374bcd24745ae95 
    2121platforms        darwin 
    2222 
    2323post-patch { 
    24         reinplace "s|/usr/share/boost-build|${prefix}/share/boost-build|" \ 
    25                 ${worksrcpath}/jambase.c 
     24        reinplace "s|/usr/share/boost-build|${prefix}/share/boost-build|" \ 
     25                ${worksrcpath}/jambase.c 
    2626} 
    2727 
    2828use_configure    no 
     
    3232build.target 
    3333 
    3434destroot { 
    35         xinstall -d -m 0755 ${destroot}${prefix}/bin 
    36         xinstall -m 0755 ${worksrcpath}/bin/bjam ${destroot}${prefix}/bin 
     35        xinstall -d -m 0755 ${destroot}${prefix}/bin 
     36        xinstall -m 0755 ${worksrcpath}/bin/bjam ${destroot}${prefix}/bin 
    3737 
    38         xinstall -d -m 0755 ${destroot}${prefix}/lib/bjam/bin/ 
    39         xinstall -m 0755 ${worksrcpath}/bin/bjam ${destroot}${prefix}/lib/bjam/bin/jam 
     38        xinstall -d -m 0755 ${destroot}${prefix}/lib/bjam/bin/ 
     39        xinstall -m 0755 ${worksrcpath}/bin/bjam ${destroot}${prefix}/lib/bjam/bin/jam 
    4040}