Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 31 May 2018 17:13:37 +0000 (UTC)
From:      Don Lewis <truckman@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r471219 - in head/devel: . fsmtrie
Message-ID:  <201805311713.w4VHDbI1006660@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: truckman
Date: Thu May 31 17:13:36 2018
New Revision: 471219
URL: https://svnweb.freebsd.org/changeset/ports/471219

Log:
  New port: devel/fsmtrie
  
  This is the Fast String Matcher Trie project. This C-based library
  provides a simple API for the storage and fast matching of ASCII,
  Extended ASCII, and 32-bit wide "token" strings.
  
  Sponsored by:	Farsight Security, Inc.

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Thu May 31 17:04:45 2018	(r471218)
+++ head/devel/Makefile	Thu May 31 17:13:36 2018	(r471219)
@@ -665,6 +665,7 @@
     SUBDIR += fpp
     SUBDIR += frama-c
     SUBDIR += frink
+    SUBDIR += fsmtrie
     SUBDIR += fstrm
     SUBDIR += ftjam
     SUBDIR += ftnchek

Added: head/devel/fsmtrie/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/fsmtrie/Makefile	Thu May 31 17:13:36 2018	(r471219)
@@ -0,0 +1,33 @@
+# $FreeBSD$
+
+PORTNAME=	fsmtrie
+PORTVERSION=	1.1.0
+CATEGORIES=	devel
+MASTER_SITES=	FARSIGHT LOCAL/truckman/farsight
+
+MAINTAINER=	truckman@FreeBSD.org
+COMMENT=	Fast String Matcher Trie project
+
+LICENSE=	APACHE20
+LICENSE_FILE=	${WRKSRC}/COPYRIGHT
+
+TEST_DEPENDS=	checkmk:devel/check
+
+GNU_CONFIGURE=	yes
+USES=		gmake libtool pkgconfig
+USE_LDCONFIG=	yes
+INSTALL_TARGET=	install-strip
+TEST_TARGET=	check
+
+PORTDOCS=	*
+
+OPTIONS_DEFINE=	DOXYGEN
+OPTIONS_DEFAULT=DOXYGEN
+
+DOXYGEN_BUILD_DEPENDS=	doxygen:devel/doxygen
+DOXYGEN_ALL_TARGET=	html-local
+
+CPPFLAGS+=	-I${LOCALBASE}/include
+LDFLAGS+=	-L${LOCALBASE}/lib
+
+.include <bsd.port.mk>

Added: head/devel/fsmtrie/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/fsmtrie/distinfo	Thu May 31 17:13:36 2018	(r471219)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1527734973
+SHA256 (fsmtrie-1.1.0.tar.gz) = 2ebc9616dacaaa710b5c18ee200ac0b1b9dae9c5abe903f85f4033090ab8640c
+SIZE (fsmtrie-1.1.0.tar.gz) = 384240

Added: head/devel/fsmtrie/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/fsmtrie/pkg-descr	Thu May 31 17:13:36 2018	(r471219)
@@ -0,0 +1,10 @@
+Farsight fsmtrie
+
+This is the Fast String Matcher Trie project. This C-based library
+provides a simple API for the storage and fast matching of ASCII,
+Extended ASCII, and 32-bit wide "token" strings.
+
+It was originally inspired from code found here:
+  http://www.geeksforgeeks.org/trie-insert-and-search/
+
+WWW: https://github.com/farsightsec/fsmtrie

Added: head/devel/fsmtrie/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/fsmtrie/pkg-plist	Thu May 31 17:13:36 2018	(r471219)
@@ -0,0 +1,7 @@
+include/fsmtrie/fsmtrie.h
+include/fsmtrie/version.h
+lib/libfsmtrie.a
+lib/libfsmtrie.so
+lib/libfsmtrie.so.1
+lib/libfsmtrie.so.1.1.0
+libdata/pkgconfig/libfsmtrie.pc



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