From owner-svn-ports-all@freebsd.org Thu May 31 17:13:38 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A743FF764AD; Thu, 31 May 2018 17:13:38 +0000 (UTC) (envelope-from truckman@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 590A073866; Thu, 31 May 2018 17:13:38 +0000 (UTC) (envelope-from truckman@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3A4141D191; Thu, 31 May 2018 17:13:38 +0000 (UTC) (envelope-from truckman@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w4VHDcJ5006665; Thu, 31 May 2018 17:13:38 GMT (envelope-from truckman@FreeBSD.org) Received: (from truckman@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w4VHDbI1006660; Thu, 31 May 2018 17:13:37 GMT (envelope-from truckman@FreeBSD.org) Message-Id: <201805311713.w4VHDbI1006660@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: truckman set sender to truckman@FreeBSD.org using -f From: Don Lewis Date: Thu, 31 May 2018 17:13:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r471219 - in head/devel: . fsmtrie X-SVN-Group: ports-head X-SVN-Commit-Author: truckman X-SVN-Commit-Paths: in head/devel: . fsmtrie X-SVN-Commit-Revision: 471219 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 May 2018 17:13:38 -0000 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 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