Ticket #10445: Portfile.2

File Portfile.2, 1.3 KB (added by joe@…, 18 years ago)

syslog-ng 2.x portfile

Line 
1# $Id: Portfile,v 1.3 2005/06/14 17:20:40 mww Exp $
2
3PortSystem 1.0
4
5name                    syslog-ng
6version                 2.0rc1
7categories              sysutils
8platforms               darwin
9maintainers             joe@macports.org
10description             Highly configurable syslog replacement.
11long_description        syslog-ng is the world's most flexible and scalable audit \
12                                        trail processing tool for organizations of any size. It \
13                                        provides a centralised, securely stored log of all devices \
14                                        on your network, whatever platform they run on. And \
15                                        syslog-ng also incorporates a host of powerful features, \
16                                        including filtering based on message content, as well as \
17                                        customisable data mining and analysis capabilities.
18
19homepage                        http://www.balabit.com/products/syslog_ng/
20master_sites            http://www.balabit.com/downloads/syslog-ng/2.0/src
21checksums                       md5 6904ed2c5c488b7c572a94620941fb61
22
23depends_lib                     lib:libol:libol port:eventlog
24
25
26configure.args          --mandir=${prefix}/share/man --enable-dynamic-linking
27
28variant powerpc {
29        configure.args-append           --host=powerpc
30}
31
32post-destroot   {
33        xinstall -m 644 ${worksrcpath}/doc/examples/syslog-ng.conf.sample \
34                ${destroot}${prefix}/etc
35        xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name}
36        xinstall -m 644 -W ${worksrcpath} ChangeLog README AUTHORS COPYING NEWS \
37                ${destroot}${prefix}/share/doc/${name}
38}