Ticket #1500: Portfile

File Portfile, 1.5 KB (added by lomion@…, 21 years ago)

Portfile for bonnie++

Line 
1PortSystem 1.0
2name                    bonnie++       
3version                 1.03a   
4revision                0
5categories              benchmarkss
6maintainers             lomion@mac.com
7homepage                http://www.coker.com.au/bonnie++/
8description             Disk and FS performance tester 
9long_description        Bonnie++ is a benchmark suite that is aimed at \
10                        performing a number of simple tests of hard drive \
11                        and file system performance. Then you can decide which\
12                         test is important and decide how to compare different\
13                         systems after running it. I have no plans to ever \
14                        have it produce a single number, because I don't think\
15                         that a single number can be useful when comparing \
16                        such things.
17platforms               darwin
18master_sites            http://www.coker.com.au/bonnie++
19checksums               md5 00b1eee7f98b68fa762c4efb3b34caa1
20extract.suffix          .tgz
21
22destroot                { file mkdir "${destroot}${prefix}/bin"
23                          file mkdir "${destroot}${prefix}/share/man/man1"
24                          file mkdir "${destroot}${prefix}/share/man/man8"
25                          xinstall -m 755 ${workpath}/${name}-${version}/bonnie++ ${destroot}${prefix}/bin
26                          xinstall -m 755 ${workpath}/${name}-${version}/zcav ${destroot}${prefix}/bin
27                          xinstall -m 644 ${workpath}/${name}-${version}/bon_csv2html.1 ${destroot}${prefix}/share/man/man1
28                          xinstall -m 644 ${workpath}/${name}-${version}/bon_csv2txt.1 ${destroot}${prefix}/share/man/man1
29                          xinstall -m 644 ${workpath}/${name}-${version}/bonnie++.8 ${destroot}${prefix}/share/man/man8
30                          xinstall -m 644 ${workpath}/${name}-${version}/zcav.8 ${destroot}${prefix}/share/man/man8
31                        }