1 | # $Id: Portfile 393 2011-08-11 00:40:00Z mfeiri $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name bmake |
---|
6 | version 20110622 |
---|
7 | categories devel |
---|
8 | platforms darwin |
---|
9 | license BSD |
---|
10 | maintainers gmail.com:tdflavius openmaintainer |
---|
11 | homepage http://www.crufty.net/help/sjg/bmake.html |
---|
12 | master_sites http://www.crufty.net/ftp/pub/sjg/ |
---|
13 | description Portable NetBSD make |
---|
14 | long_description bmake is the portable version of NetBSD make. |
---|
15 | |
---|
16 | distfiles ${distname}${extract.suffix} \ |
---|
17 | mk-${version}${extract.suffix} |
---|
18 | checksums ${distname}${extract.suffix} \ |
---|
19 | md5 d55361061d2a3bd8b1224e96148ddf38 \ |
---|
20 | sha1 0e8e4dfa284e49646d7180a247ea46b8816bef55 \ |
---|
21 | rmd160 944c115a657b910dcd4cf8915735138442a2ee72 \ |
---|
22 | mk-${version}${extract.suffix} \ |
---|
23 | md5 a985fa6208191d4551bea5c52e17df40 \ |
---|
24 | sha1 91775cefc12496501fecc04c7cb6cedb6bb5b678 \ |
---|
25 | rmd160 6cfc8bdcc55532d88483fd94699ca0073a1274bf |
---|
26 | |
---|
27 | use_configure no |
---|
28 | worksrcdir ${name} |
---|
29 | build.cmd ./boot-strap |
---|
30 | build.args --with-default-sys-path="${prefix}/share/mk" |
---|
31 | build.target |
---|
32 | |
---|
33 | destroot { |
---|
34 | file copy ${worksrcpath}/Darwin/bmake ${destroot}${prefix}/bin |
---|
35 | file copy ${worksrcpath}/bmake.cat1 ${destroot}${prefix}/share/man/cat1/bmake.1 |
---|
36 | file mkdir ${destroot}${prefix}/share/mk |
---|
37 | system "${workpath}/mk/install-mk ${destroot}${prefix}/share/mk" |
---|
38 | } |
---|