1 | # $Id: $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | name chkrootkit |
---|
5 | version 0.46a |
---|
6 | revision 0 |
---|
7 | categories sysutils |
---|
8 | maintainers darwinports@opendarwin.org |
---|
9 | description chkrootkit is a tool to locally check for signs of a rootkit |
---|
10 | long_description chkrootkit is a tool to locally check for signs of a rootkit. |
---|
11 | homepage http://www.chkrootkit.org/ |
---|
12 | master_sites ftp://ftp.pangeia.com.br/pub/seg/pac/ |
---|
13 | checksums md5 b73fb9e365d2edcd031d65b16e965a18 |
---|
14 | distname ${name} |
---|
15 | worksrcdir ${name}-${version} |
---|
16 | |
---|
17 | patchfiles patch-Makefile |
---|
18 | |
---|
19 | configure { } |
---|
20 | |
---|
21 | build.cmd { make sense } |
---|
22 | |
---|
23 | destroot { |
---|
24 | xinstall -m 755 -c ${worksrcpath}/check_wtmpx ${destroot}${prefix}/bin |
---|
25 | xinstall -m 755 -c ${worksrcpath}/chkdirs ${destroot}${prefix}/bin |
---|
26 | xinstall -m 755 -c ${worksrcpath}/chklastlog ${destroot}${prefix}/bin |
---|
27 | xinstall -m 755 -c ${worksrcpath}/chkproc ${destroot}${prefix}/bin |
---|
28 | xinstall -m 755 -c ${worksrcpath}/chkrootkit ${destroot}${prefix}/bin |
---|
29 | xinstall -m 755 -c ${worksrcpath}/chkutmp ${destroot}${prefix}/bin |
---|
30 | xinstall -m 755 -c ${worksrcpath}/chkwtmp ${destroot}${prefix}/bin |
---|
31 | xinstall -m 755 -c ${worksrcpath}/ifpromisc ${destroot}${prefix}/bin |
---|
32 | xinstall -m 755 -c ${worksrcpath}/strings-static ${destroot}${prefix}/bin |
---|
33 | |
---|
34 | xinstall -m 755 -d ${destroot}${prefix}/share/doc/chkrootkit |
---|
35 | |
---|
36 | xinstall -m 644 -c ${worksrcpath}/ACKNOWLEDGMENTS ${destroot}${prefix}/share/doc/chkrootkit |
---|
37 | xinstall -m 644 -c ${worksrcpath}/COPYRIGHT ${destroot}${prefix}/share/doc/chkrootkit |
---|
38 | xinstall -m 644 -c ${worksrcpath}/README ${destroot}${prefix}/share/doc/chkrootkit |
---|
39 | xinstall -m 644 -c ${worksrcpath}/README.chklastlog ${destroot}${prefix}/share/doc/chkrootkit |
---|
40 | xinstall -m 644 -c ${worksrcpath}/README.chkwtmp ${destroot}${prefix}/share/doc/chkrootkit |
---|
41 | } |
---|