Ticket #48977: Portfile

File Portfile, 1.1 KB (added by Schamschula (Marius Schamschula), 9 years ago)
Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
2# $Id$
3
4PortSystem          1.0
5
6name                oinkmaster
7version             2.0
8categories          net
9license             BSD
10maintainers         gmail.com:mschamschula openmaintainer
11description         Oinkmaster is a script that will help you update and manage your \
12                    Snort rules.
13long_description    ${description}
14platforms           darwin
15homepage            http://oinkmaster.sourceforge.net/
16master_sites        sourceforge
17
18checksums           rmd160  a3292cfc2e6b175008a7172be5809ca6e2fc85b7 \
19                    sha256  3d52f0426aa7c81b122cef22b80d708d8bb8337537e48754a065804f46c46162
20
21patchfiles          patch-oinkmaster.pl.diff
22
23use_configure       no
24
25build               {}
26
27destroot {
28   xinstall -m 755 ${worksrcpath}/oinkmaster.pl ${destroot}${prefix}/bin
29   xinstall -m 755 ${worksrcpath}/oinkmaster.conf ${destroot}${prefix}/etc
30   xinstall -m 755 ${worksrcpath}/oinkmaster.1 ${destroot}${prefix}/share/man/man1
31}