[Midnightbsd-cvs] mports [18222] trunk/devel: add libdatrie

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Wed Mar 18 08:37:22 EDT 2015


Revision: 18222
          http://svnweb.midnightbsd.org/mports/?rev=18222
Author:   laffer1
Date:     2015-03-18 08:37:21 -0400 (Wed, 18 Mar 2015)
Log Message:
-----------
add libdatrie

Modified Paths:
--------------
    trunk/devel/Makefile

Added Paths:
-----------
    trunk/devel/libdatrie/
    trunk/devel/libdatrie/Makefile
    trunk/devel/libdatrie/distinfo
    trunk/devel/libdatrie/pkg-descr
    trunk/devel/libdatrie/pkg-plist

Modified: trunk/devel/Makefile
===================================================================
--- trunk/devel/Makefile	2015-03-18 12:29:51 UTC (rev 18221)
+++ trunk/devel/Makefile	2015-03-18 12:37:21 UTC (rev 18222)
@@ -140,6 +140,7 @@
 SUBDIR += libcheck
 SUBDIR += libconfuse
 SUBDIR += libdaemon
+SUBDIR += libdatrie
 SUBDIR += libdispatch
 SUBDIR += libdbusmenu-qt
 SUBDIR += libdlna

Added: trunk/devel/libdatrie/Makefile
===================================================================
--- trunk/devel/libdatrie/Makefile	                        (rev 0)
+++ trunk/devel/libdatrie/Makefile	2015-03-18 12:37:21 UTC (rev 18222)
@@ -0,0 +1,27 @@
+# $MidnightBSD$
+
+PORTNAME=	libdatrie
+PORTVERSION=	0.2.8
+CATEGORIES=	devel
+MASTER_SITES=	http://linux.thai.net/pub/thailinux/software/libthai/
+
+MAINTAINER=	ports at MidnightBSD.org
+COMMENT=	Double-array trie implementation library
+
+LICENSE=	lgpl2.1
+
+OPTIONS_DEFINE=	DOCS
+
+GNU_CONFIGURE=	yes
+USE_LDCONFIG=	yes
+USES=		iconv libtool pathfix tar:xz
+
+CPPFLAGS+=	-I${LOCALBASE}/include
+LDFLAGS+=	-L${LOCALBASE}/lib ${ICONV_LIB}
+
+PORTDOCS=	README.migration
+
+post-install:
+	${STRIP_CMD} ${PREFIX}/lib/libdatrie.so
+
+.include <bsd.port.mk>


Property changes on: trunk/devel/libdatrie/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/devel/libdatrie/distinfo
===================================================================
--- trunk/devel/libdatrie/distinfo	                        (rev 0)
+++ trunk/devel/libdatrie/distinfo	2015-03-18 12:37:21 UTC (rev 18222)
@@ -0,0 +1,2 @@
+SHA256 (libdatrie-0.2.8.tar.xz) = 6a14d55c5687fc325216fffb5db0cf55d31b108cce65314a6d5c8042417ab7c2
+SIZE (libdatrie-0.2.8.tar.xz) = 286428


Property changes on: trunk/devel/libdatrie/distinfo
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/devel/libdatrie/pkg-descr
===================================================================
--- trunk/devel/libdatrie/pkg-descr	                        (rev 0)
+++ trunk/devel/libdatrie/pkg-descr	2015-03-18 12:37:21 UTC (rev 18222)
@@ -0,0 +1,10 @@
+This is an implementation of double-array structure for representing trie,
+as proposed by Junichi Aoe.
+
+Trie is a kind of digital search tree, an efficient indexing method with
+O(1) time complexity for searching.  Comparably as efficient as hashing,
+trie also provides flexibility on incremental matching and key spelling
+manipulation.  This makes it ideal for lexical analyzers, as well as
+spelling dictionaries.
+
+WWW: http://linux.thai.net/projects/datrie/


Property changes on: trunk/devel/libdatrie/pkg-descr
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/devel/libdatrie/pkg-plist
===================================================================
--- trunk/devel/libdatrie/pkg-plist	                        (rev 0)
+++ trunk/devel/libdatrie/pkg-plist	2015-03-18 12:37:21 UTC (rev 18222)
@@ -0,0 +1,11 @@
+bin/trietool-0.2
+man/man1/trietool-0.2.1.gz
+include/datrie/alpha-map.h
+include/datrie/trie.h
+include/datrie/triedefs.h
+include/datrie/typedefs.h
+lib/libdatrie.a
+lib/libdatrie.so
+lib/libdatrie.so.1
+lib/libdatrie.so.1.3.1
+libdata/pkgconfig/datrie-0.2.pc


Property changes on: trunk/devel/libdatrie/pkg-plist
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property


More information about the Midnightbsd-cvs mailing list