Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 15 Jan 2013 15:46:17 +0000 (UTC)
From:      Marcus von Appen <mva@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r310447 - in head/devel: . liblognorm
Message-ID:  <201301151546.r0FFkHYg080018@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mva
Date: Tue Jan 15 15:46:16 2013
New Revision: 310447
URL: http://svnweb.freebsd.org/changeset/ports/310447

Log:
  liblognorm shall help to make sense out of syslog data, or, actually,
  any event data that is present in text form.
  
  In short words, one will be able to throw arbitrary log message to liblognorm,
  one at a time, and for each message it will output well-defined name-value
  pairs and a set of tags describing the message.
  
  WWW: http://www.liblognorm.com
  
  PR:		ports/173544
  Submitted by:	Paul Schmehl <pauls@utdallas.edu>

Added:
  head/devel/liblognorm/
  head/devel/liblognorm/Makefile   (contents, props changed)
  head/devel/liblognorm/distinfo   (contents, props changed)
  head/devel/liblognorm/pkg-descr   (contents, props changed)
  head/devel/liblognorm/pkg-plist   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Tue Jan 15 14:50:08 2013	(r310446)
+++ head/devel/Makefile	Tue Jan 15 15:46:16 2013	(r310447)
@@ -1003,6 +1003,7 @@
     SUBDIR += libleaftag
     SUBDIR += liblnk
     SUBDIR += liblogging
+    SUBDIR += liblognorm
     SUBDIR += liblouis
     SUBDIR += liblouisxml
     SUBDIR += libltdl

Added: head/devel/liblognorm/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/liblognorm/Makefile	Tue Jan 15 15:46:16 2013	(r310447)
@@ -0,0 +1,21 @@
+# $FreeBSD$
+
+PORTNAME=	liblognorm
+PORTVERSION=	0.3.5
+CATEGORIES=	devel net security
+MASTER_SITES=	http://www.liblognorm.com/download/files/download/
+
+MAINTAINER=	pauls@utdallas.edu
+COMMENT=	A log normalizer
+
+LICENSE=	GPLv2
+
+LIB_DEPENDS=	ee:${PORTSDIR}/devel/libee \
+		estr:${PORTSDIR}/devel/libestr
+
+USE_PKGCONFIG=	build
+USE_GNOME=	gnomehack
+USE_LDCONFIG=	yes
+GNU_CONFIGURE=	yes
+
+.include <bsd.port.mk>

Added: head/devel/liblognorm/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/liblognorm/distinfo	Tue Jan 15 15:46:16 2013	(r310447)
@@ -0,0 +1,2 @@
+SHA256 (liblognorm-0.3.5.tar.gz) = 5714f145b379adb64fe1d87ea6adec9e8d91e5fe1bc0654febb85960dc34dd06
+SIZE (liblognorm-0.3.5.tar.gz) = 322410

Added: head/devel/liblognorm/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/liblognorm/pkg-descr	Tue Jan 15 15:46:16 2013	(r310447)
@@ -0,0 +1,8 @@
+liblognorm shall help to make sense out of syslog data, or, actually,
+any event data that is present in text form. 
+
+In short words, one will be able to throw arbitrary log message to liblognorm,
+one at a time, and for each message it will output well-defined name-value
+pairs and a set of tags describing the message.
+
+WWW: http://www.liblognorm.com

Added: head/devel/liblognorm/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/liblognorm/pkg-plist	Tue Jan 15 15:46:16 2013	(r310447)
@@ -0,0 +1,11 @@
+bin/lognormalizer
+include/annot.h
+include/liblognorm.h
+include/lognorm.h
+include/ptree.h
+include/samp.h
+lib/liblognorm.a
+lib/liblognorm.la
+lib/liblognorm.so
+lib/liblognorm.so.0
+libdata/pkgconfig/lognorm.pc



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201301151546.r0FFkHYg080018>