svn commit: r418237 - in head/devel: . marisa-trie marisa-trie/files

Kurt Jaeger pi at FreeBSD.org
Fri Jul 8 17:23:21 UTC 2016


Author: pi
Date: Fri Jul  8 17:23:19 2016
New Revision: 418237
URL: https://svnweb.freebsd.org/changeset/ports/418237

Log:
  New port: devel/marisa-trie
  
  Matching Algorithm with Recursively Implemented StorAge (MARISA)
  is a static and space-efficient trie data structure. And libmarisa
  is a C++ library to provide an implementation of MARISA. Also, the
  package of libmarisa contains a set of command line tools for
  building and operating a MARISA-based dictionary.
  
  WWW: https://github.com/s-yata/marisa-trie
  
  PR:		210780
  Submitted by:	Iblis Lin <iblis at hs.ntnu.edu.tw>

Added:
  head/devel/marisa-trie/
  head/devel/marisa-trie/Makefile   (contents, props changed)
  head/devel/marisa-trie/distinfo   (contents, props changed)
  head/devel/marisa-trie/files/
  head/devel/marisa-trie/files/patch-Makefile.am   (contents, props changed)
  head/devel/marisa-trie/pkg-descr   (contents, props changed)
  head/devel/marisa-trie/pkg-plist   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Fri Jul  8 17:01:44 2016	(r418236)
+++ head/devel/Makefile	Fri Jul  8 17:23:19 2016	(r418237)
@@ -1465,6 +1465,7 @@
     SUBDIR += magit
     SUBDIR += make++
     SUBDIR += makedepend
+    SUBDIR += marisa-trie
     SUBDIR += mate-common
     SUBDIR += matreshka
     SUBDIR += maven-wrapper

Added: head/devel/marisa-trie/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/marisa-trie/Makefile	Fri Jul  8 17:23:19 2016	(r418237)
@@ -0,0 +1,55 @@
+# Created by: Iblis Lin <iblis at hs.ntnu.edu.tw>
+# $FreeBSD$
+
+PORTNAME=	marisa-tire
+PORTVERSION=	0.24
+CATEGORIES=	devel
+MASTER_SITES=	GH
+
+MAINTAINER=	iblis at hs.ntnu.edu.tw
+COMMENT=	MARISA: Matching Algorithm with Recursively Implemented StorAge
+
+LICENSE=	BSD2CLAUSE LGPL21+
+LICENSE_COMB=	dual
+LICENSE_FILE=	${WRKSRC}/COPYING.md
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	s-yata
+GH_PROJECT=	marisa-trie
+GH_TAGNAME=	961ed33
+
+USES=	autoreconf libtool:build
+USE_LDCONFIG=	yes
+
+GNU_CONFIGURE=	yes
+CONFIGURE_ARGS=	--with-pkg-config-dir=${PREFIX}/libdata/pkgconfig
+
+INSTALL_TARGET=	install-strip
+
+OPTIONS_DEFINE=	SSE2 SSE3 SSSE3 SSE4 SSE41 SSE42 SSE4A POPCNT
+
+SSE2_DESC=	Support for SSE2
+SSE2_CONFIGURE_ENABLE=	sse2
+
+SSE3_DESC=	Support for SSE3
+SSE3_CONFIGURE_ENABLE=	sse3
+
+SSSE3_DESC=	Support for SSSE3
+SSSE3_CONFIGURE_ENABLE=	sse3
+
+SSE4_DESC=	Support for SSE4
+SSE4_CONFIGURE_ENABLE=	sse4
+
+SSE41_DESC=	Support for SSE4.1
+SSE41_CONFIGURE_ENABLE=	sse4.1
+
+SSE42_DESC=	Support for SSE4.2
+SSE42_CONFIGURE_ENABLE=	sse4.2
+
+SSE4A_DESC=	Support for SSE4a
+SSE4A_CONFIGURE_ENABLE=	sse4a
+
+POPCNT_DESC=	Support for POPCNT
+POPCNT_CONFIGURE_ENABLE=	POPCNT
+
+.include <bsd.port.mk>

Added: head/devel/marisa-trie/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/marisa-trie/distinfo	Fri Jul  8 17:23:19 2016	(r418237)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1467536118
+SHA256 (s-yata-marisa-trie-0.24-961ed33_GH0.tar.gz) = f9e48330b2f58df68fbb02adff70cdcb87f7cdfa401afb7afcf104ee117aeb94
+SIZE (s-yata-marisa-trie-0.24-961ed33_GH0.tar.gz) = 167449

Added: head/devel/marisa-trie/files/patch-Makefile.am
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/marisa-trie/files/patch-Makefile.am	Fri Jul  8 17:23:19 2016	(r418237)
@@ -0,0 +1,11 @@
+--- Makefile.am.orig	2016-07-03 09:34:09 UTC
++++ Makefile.am
+@@ -2,7 +2,7 @@ ACLOCAL_AMFLAGS = -I m4
+ 
+ SUBDIRS = include lib tools tests
+ 
+-pkgconfigdir = ${libdir}/pkgconfig
++pkgconfigdir = ${prefix}/libdata/pkgconfig
+ pkgconfig_DATA = marisa.pc
+ 
+ EXTRA_DIST = \

Added: head/devel/marisa-trie/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/marisa-trie/pkg-descr	Fri Jul  8 17:23:19 2016	(r418237)
@@ -0,0 +1,7 @@
+Matching Algorithm with Recursively Implemented StorAge (MARISA)
+is a static and space-efficient trie data structure. And libmarisa
+is a C++ library to provide an implementation of MARISA. Also, the
+package of libmarisa contains a set of command line tools for
+building and operating a MARISA-based dictionary.
+
+WWW: https://github.com/s-yata/marisa-trie

Added: head/devel/marisa-trie/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/marisa-trie/pkg-plist	Fri Jul  8 17:23:19 2016	(r418237)
@@ -0,0 +1,24 @@
+bin/marisa-benchmark
+bin/marisa-build
+bin/marisa-common-prefix-search
+bin/marisa-dump
+bin/marisa-lookup
+bin/marisa-predictive-search
+bin/marisa-reverse-lookup
+include/marisa.h
+include/marisa/agent.h
+include/marisa/base.h
+include/marisa/exception.h
+include/marisa/iostream.h
+include/marisa/key.h
+include/marisa/keyset.h
+include/marisa/query.h
+include/marisa/scoped-array.h
+include/marisa/scoped-ptr.h
+include/marisa/stdio.h
+include/marisa/trie.h
+lib/libmarisa.a
+lib/libmarisa.so
+lib/libmarisa.so.0
+lib/libmarisa.so.0.0.0
+libdata/pkgconfig/marisa.pc


More information about the svn-ports-all mailing list