Ticket #17770: Portfile.diff
File Portfile.diff, 1.9 KB (added by MarcusCalhoun-Lopez (Marcus Calhoun-Lopez), 16 years ago) |
---|
-
Portfile
old new 3 3 PortSystem 1.0 4 4 5 5 name boost-jam 6 version 3.1.1 66 version 3.1.17 7 7 categories devel 8 8 maintainers gmail.com:jon.olsson 9 9 description Boost.Jam (BJam) is a build tool based on FTJam … … 13 13 significant improvements made to facilitate its use \ 14 14 in the Boost Build System, but should be backward \ 15 15 compatible with Perforce Jam. 16 homepage http://www.boost.org 16 homepage http://www.boost.org/ 17 17 master_sites sourceforge:boost 18 18 extract.suffix .tgz 19 checksums md5 1fd96a38b1a33c365e8142eec53197e7\20 rmd160 dd602c5e01a004dbf6e6ee542c5f6bdb0bd1348f\21 sha1 e2dd6ef9c56b18c7be7669aba374bcd24745ae9519 checksums md5 f4afd896788f2327fd35c128ddc6e340 \ 20 rmd160 79a265c4427bf48858d288d5b0ac82c5119af7c8 \ 21 sha1 407be994b1239fa944c14c464a9ce7f46f692a1e 22 22 platforms darwin 23 23 24 patchfiles patch-strings.c25 24 post-patch { 26 25 reinplace "s|/usr/share/boost-build|${prefix}/share/boost-build|" \ 27 26 ${worksrcpath}/jambase.c … … 29 28 30 29 use_configure no 31 30 31 post-configure { 32 reinplace "s|BOOST_JAM_CC=.*|BOOST_JAM_CC=${configure.cc}|" ${worksrcpath}/build.sh 33 } 34 32 35 build.env LOCATE_TARGET=bin 33 36 build.cmd ./build.sh 34 37 build.target 35 38 36 39 destroot { 37 xinstall -d -m 0755 ${destroot}${prefix}/bin38 40 xinstall -m 0755 ${worksrcpath}/bin/bjam ${destroot}${prefix}/bin 39 41 42 # Port netxx still expects to find program jam (removed in r13734) 40 43 xinstall -d -m 0755 ${destroot}${prefix}/lib/bjam/bin/ 41 xinstall -m 0755 ${worksrcpath}/bin/bjam ${destroot}${prefix}/lib/bjam/bin/jam44 ln -s ${prefix}/bin/bjam ${destroot}${prefix}/lib/bjam/bin/jam 42 45 } 46 47 livecheck.regex "<title>${name} (.*) released.*</title>"