diff options
author | miwi <miwi@FreeBSD.org> | 2006-11-14 20:40:41 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2006-11-14 20:40:41 +0800 |
commit | cd30247779120e1d09a30cc368edc9ec19023a1e (patch) | |
tree | 945dd8a264b947a64d5775bedc63d69095af18e0 | |
parent | 4298d0f7ba291da18ef2161150ea29a7989e36b8 (diff) | |
download | freebsd-ports-gnome-cd30247779120e1d09a30cc368edc9ec19023a1e.tar.gz freebsd-ports-gnome-cd30247779120e1d09a30cc368edc9ec19023a1e.tar.zst freebsd-ports-gnome-cd30247779120e1d09a30cc368edc9ec19023a1e.zip |
The EventLog library aims to be a replacement of the simple syslog() API
provided on UNIX systems. The major difference between EventLog and syslog
is that EventLog tries to add structure to messages.
Where you had a simple non-structrured string in syslog() you have a
combination of description and tag/value pairs.
EventLog provides an interface to build, format and output an event record.
The exact format and output method can be customized by the administrator
via a configuration file.
PR: ports/105370
Submitted by: Ivan Lago <ivan.lago at ifom-ieo-campus.it>
-rw-r--r-- | sysutils/Makefile | 1 | ||||
-rw-r--r-- | sysutils/eventlog/Makefile | 20 | ||||
-rw-r--r-- | sysutils/eventlog/distinfo | 3 | ||||
-rw-r--r-- | sysutils/eventlog/pkg-descr | 10 | ||||
-rw-r--r-- | sysutils/eventlog/pkg-plist | 8 |
5 files changed, 42 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile index 7c93e8c6cef9..342105ccfc02 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -155,6 +155,7 @@ SUBDIR += est SUBDIR += estctrl SUBDIR += etcmerge + SUBDIR += eventlog SUBDIR += eventwatcher SUBDIR += evtviewer SUBDIR += extipl diff --git a/sysutils/eventlog/Makefile b/sysutils/eventlog/Makefile new file mode 100644 index 000000000000..afd4c369a1b7 --- /dev/null +++ b/sysutils/eventlog/Makefile @@ -0,0 +1,20 @@ +# New ports collection makefile for: eventlog +# Date created: 10 november 2006 +# Whom: Ivan Lago <ivan.lago@ifom-ieo-campus.it> +# +# $FreeBSD$ +# + +PORTNAME= eventlog +PORTVERSION= 0.2.5 +CATEGORIES= sysutils +MASTER_SITES= http://www.balabit.com/downloads/syslog-ng/2.0/src/ + +MAINTAINER= ivan.lago@ifom-ieo-campus.it +COMMENT= Replacement of the simple syslog() API providing structure to messages. + +GNU_CONFIGURE= yes +USE_GNOME= gnomehack pkgconfig +USE_LDCONFIG= yes + +.include <bsd.port.mk> diff --git a/sysutils/eventlog/distinfo b/sysutils/eventlog/distinfo new file mode 100644 index 000000000000..5a737c8995bb --- /dev/null +++ b/sysutils/eventlog/distinfo @@ -0,0 +1,3 @@ +MD5 (eventlog-0.2.5.tar.gz) = a6bdba91f88540cc69b398fd138d86cd +SHA256 (eventlog-0.2.5.tar.gz) = 914319726bcd01a4055b1c5e09671085875af6de2b0d8589841916139574ee11 +SIZE (eventlog-0.2.5.tar.gz) = 312164 diff --git a/sysutils/eventlog/pkg-descr b/sysutils/eventlog/pkg-descr new file mode 100644 index 000000000000..b19cc4cb6257 --- /dev/null +++ b/sysutils/eventlog/pkg-descr @@ -0,0 +1,10 @@ +The EventLog library aims to be a replacement of the simple syslog() API +provided on UNIX systems. The major difference between EventLog and syslog +is that EventLog tries to add structure to messages. + +Where you had a simple non-structrured string in syslog() you have a +combination of description and tag/value pairs. + +EventLog provides an interface to build, format and output an event record. +The exact format and output method can be customized by the administrator +via a configuration file. diff --git a/sysutils/eventlog/pkg-plist b/sysutils/eventlog/pkg-plist new file mode 100644 index 000000000000..5212696d7c18 --- /dev/null +++ b/sysutils/eventlog/pkg-plist @@ -0,0 +1,8 @@ +include/eventlog/evtlog.h +include/eventlog/evtmaps.h +lib/libevtlog.a +lib/libevtlog.la +lib/libevtlog.so +lib/libevtlog.so.0 +libdata/pkgconfig/eventlog.pc +@dirrm include/eventlog |