1 | # $Id: Portfile,v 1.3 2005/06/14 17:20:40 mww Exp $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name syslog-ng |
---|
6 | version 2.0rc1 |
---|
7 | categories sysutils |
---|
8 | platforms darwin |
---|
9 | maintainers jd@lifehertz.com |
---|
10 | description Highly configurable syslog replacement. |
---|
11 | long_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 | |
---|
19 | homepage http://www.balabit.com/products/syslog_ng/ |
---|
20 | master_sites http://www.balabit.com/downloads/syslog-ng/2.0/src |
---|
21 | checksums md5 6904ed2c5c488b7c572a94620941fb61 |
---|
22 | |
---|
23 | depends_lib lib:libol:libol |
---|
24 | |
---|
25 | configure.args --mandir=${prefix}/share/man --enable-dynamic-linking |
---|
26 | |
---|
27 | variant powerpc { |
---|
28 | configure.args-append --host=powerpc |
---|
29 | } |
---|
30 | |
---|
31 | post-destroot { |
---|
32 | xinstall -m 644 ${worksrcpath}/doc/examples/syslog-ng.conf.sample \ |
---|
33 | ${destroot}${prefix}/etc |
---|
34 | xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} |
---|
35 | xinstall -m 644 -W ${worksrcpath} ChangeLog README AUTHORS COPYING NEWS \ |
---|
36 | ${destroot}${prefix}/share/doc/${name} |
---|
37 | } |
---|