Ticket #10474: Portfile

File Portfile, 2.1 KB (added by aschenke@…, 18 years ago)

Portfile for chkrootkit 0.46a

Line 
1# $Id: $
2
3PortSystem       1.0
4name                 chkrootkit
5version              0.46a
6revision             0
7categories           sysutils
8maintainers          darwinports@opendarwin.org
9description          chkrootkit is a tool to locally check for signs of a rootkit
10long_description chkrootkit is a tool to locally check for signs of a rootkit.
11homepage         http://www.chkrootkit.org/
12master_sites     ftp://ftp.pangeia.com.br/pub/seg/pac/
13checksums            md5 b73fb9e365d2edcd031d65b16e965a18
14distname         ${name}
15worksrcdir       ${name}-${version}
16                   
17patchfiles       patch-Makefile
18
19configure        { }
20
21build.cmd        { make sense }
22
23destroot         {
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                 }