diff options
author | itetcu <itetcu@FreeBSD.org> | 2006-08-06 22:17:12 +0800 |
---|---|---|
committer | itetcu <itetcu@FreeBSD.org> | 2006-08-06 22:17:12 +0800 |
commit | 707efa3f53b4979bdad4130148fe804e7880ad68 (patch) | |
tree | 33bfab026b192c4cd25c1dba18f64677661c7750 /devel | |
parent | aaa7eade2e10ac55ab1018f03c7f3d1cb6c03a3f (diff) | |
download | freebsd-ports-graphics-707efa3f53b4979bdad4130148fe804e7880ad68.tar.gz freebsd-ports-graphics-707efa3f53b4979bdad4130148fe804e7880ad68.tar.zst freebsd-ports-graphics-707efa3f53b4979bdad4130148fe804e7880ad68.zip |
This package implements frequent string operations: searching, replacing,
splitting, matching. It is independent from the Str library, and can
replace Str in many cases. Unlike Str, xstr is thread-safe. xstr does
not implement regular expressions in general, but an important subset.
Some operations of xstr are performed as quickly as by Str; if the string
to be processed is small, xstr is often faster than Str; if the string is
big, xstr is upto half as fast than Str.
Author: Gerd Stolpmann <gerd@gerd-stolpmann.de>
WWW: http://www.ocaml-programming.de/packages/
PR: ports/101032
Submitted by: Stanislav Sedov <ssedov at mbsd.msk.ru>
Diffstat (limited to 'devel')
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/ocaml-xstr/Makefile | 25 | ||||
-rw-r--r-- | devel/ocaml-xstr/distinfo | 3 | ||||
-rw-r--r-- | devel/ocaml-xstr/pkg-descr | 10 | ||||
-rw-r--r-- | devel/ocaml-xstr/pkg-plist | 8 |
5 files changed, 47 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 8be20cddffc..52849e829cd 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -708,6 +708,7 @@ SUBDIR += ocaml-sem SUBDIR += ocaml-sexplib SUBDIR += ocaml-ulex + SUBDIR += ocaml-xstr SUBDIR += ocaml-xstrp4 SUBDIR += ocamlweb SUBDIR += ode diff --git a/devel/ocaml-xstr/Makefile b/devel/ocaml-xstr/Makefile new file mode 100644 index 00000000000..6b35c17ae54 --- /dev/null +++ b/devel/ocaml-xstr/Makefile @@ -0,0 +1,25 @@ +# New ports collection makefile for: ocaml-xstr +# Date created: 2006-07-29 +# Whom: Stanislav Sedov <ssedov@mbsd.msk.ru> +# +# $MBSDlabs$ +# $FreeBSD$ +# + +PORTNAME= xstr +PORTVERSION= 0.2.1 +CATEGORIES= devel +MASTER_SITES= http://www.ocaml-programming.de/packages/ +PKGNAMEPREFIX= ocaml- + +MAINTAINER= ssedov@mbsd.msk.ru +COMMENT= Thread-safe implementation of string searching/matching + +WRKSRC= ${WRKDIR}/${PORTNAME} +USE_GMAKE= yes +USE_OCAML= yes +USE_OCAML_FINDLIB=yes + +.include <bsd.port.pre.mk> +.include "${PORTSDIR}/lang/ocaml/bsd.ocaml.mk" +.include <bsd.port.post.mk> diff --git a/devel/ocaml-xstr/distinfo b/devel/ocaml-xstr/distinfo new file mode 100644 index 00000000000..c7f007f1462 --- /dev/null +++ b/devel/ocaml-xstr/distinfo @@ -0,0 +1,3 @@ +MD5 (xstr-0.2.1.tar.gz) = 81598c438d6ab5c5d544ea7cc6ed8a34 +SHA256 (xstr-0.2.1.tar.gz) = 796f77589af651d1bb627444fa48c76d887c97d98a58cb95913d86103fb168be +SIZE (xstr-0.2.1.tar.gz) = 14703 diff --git a/devel/ocaml-xstr/pkg-descr b/devel/ocaml-xstr/pkg-descr new file mode 100644 index 00000000000..aff7dbf9189 --- /dev/null +++ b/devel/ocaml-xstr/pkg-descr @@ -0,0 +1,10 @@ +This package implements frequent string operations: searching, replacing, +splitting, matching. It is independent from the Str library, and can +replace Str in many cases. Unlike Str, xstr is thread-safe. xstr does +not implement regular expressions in general, but an important subset. +Some operations of xstr are performed as quickly as by Str; if the string +to be processed is small, xstr is often faster than Str; if the string is +big, xstr is upto half as fast than Str. + +Author: Gerd Stolpmann <gerd@gerd-stolpmann.de> +WWW: http://www.ocaml-programming.de/packages/ diff --git a/devel/ocaml-xstr/pkg-plist b/devel/ocaml-xstr/pkg-plist new file mode 100644 index 00000000000..f08a5b521f8 --- /dev/null +++ b/devel/ocaml-xstr/pkg-plist @@ -0,0 +1,8 @@ +%%OCAML_SITELIBDIR%%/xstr/META +%%OCAML_SITELIBDIR%%/xstr/xstr.cma +%%OCAML_SITELIBDIR%%/xstr/xstr_match.cmi +%%OCAML_SITELIBDIR%%/xstr/xstr_match.mli +%%OCAML_SITELIBDIR%%/xstr/xstr_search.cmi +%%OCAML_SITELIBDIR%%/xstr/xstr_search.mli +%%OCAML_SITELIBDIR%%/xstr/xstr_split.cmi +%%OCAML_SITELIBDIR%%/xstr/xstr_split.mli |