Ticket #14180: boost-jam-update.patch
File boost-jam-update.patch, 2.2 KB (added by jon.olsson@…, 17 years ago) |
---|
-
Portfile
old new 2 2 3 3 PortSystem 1.0 4 4 name boost-jam 5 version 3.1.1 55 version 3.1.16 6 6 categories devel 7 7 maintainers gmail.com:jon.olsson 8 8 description Boost.Jam (BJam) is a build tool based on FTJam 9 9 long_description \ 10 11 12 13 14 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. 15 15 homepage http://www.boost.org 16 16 master_sites sourceforge:boost 17 17 extract.suffix .tgz 18 checksums md5 dbf3f5a36df4c96c555e365773f54ba7 \19 rmd160 a149d44d92358a967d135d05852f66be425fb96f \20 sha1 61c723048f3a358dfb461acf2d96bd59df11c1e118 checksums md5 1fd96a38b1a33c365e8142eec53197e7 \ 19 rmd160 dd602c5e01a004dbf6e6ee542c5f6bdb0bd1348f \ 20 sha1 e2dd6ef9c56b18c7be7669aba374bcd24745ae95 21 21 platforms darwin 22 22 23 23 post-patch { 24 25 24 reinplace "s|/usr/share/boost-build|${prefix}/share/boost-build|" \ 25 ${worksrcpath}/jambase.c 26 26 } 27 27 28 28 use_configure no … … 32 32 build.target 33 33 34 34 destroot { 35 36 35 xinstall -d -m 0755 ${destroot}${prefix}/bin 36 xinstall -m 0755 ${worksrcpath}/bin/bjam ${destroot}${prefix}/bin 37 37 38 39 38 xinstall -d -m 0755 ${destroot}${prefix}/lib/bjam/bin/ 39 xinstall -m 0755 ${worksrcpath}/bin/bjam ${destroot}${prefix}/lib/bjam/bin/jam 40 40 }