Bug 173544 - [new port] devel/liblognorm, a log normalizer
Summary: [new port] devel/liblognorm, a log normalizer
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-ports-bugs (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-11-11 02:10 UTC by pauls
Modified: 2013-01-15 15:50 UTC (History)
0 users

See Also:


Attachments
liblognorm.shar (1.71 KB, text/plain)
2012-11-11 02:10 UTC, pauls
no flags Details
shar.diff (337 bytes, patch)
2012-11-11 06:41 UTC, pauls
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description pauls 2012-11-11 02:10:00 UTC
	devel/liblognorm, new port submission
Comment 1 pauls 2012-11-11 06:41:17 UTC
There's an error in the shar file.  The attached patch will fix it.

Paul Schmehl (pauls@utdallas.edu)
Senior Information Security Analyst
The University of Texas at Dallas
http://www.utdallas.edu/ir/security/
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-01-15 15:46:25 UTC
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
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 Marcus von Appen freebsd_committer freebsd_triage 2013-01-15 15:46:37 UTC
State Changed
From-To: open->closed

New port added, with minor changes. Thanks!