Index: head/devel/pire/Makefile =================================================================== --- head/devel/pire/Makefile (revision 413208) +++ head/devel/pire/Makefile (revision 413209) @@ -1,28 +1,28 @@ # Created by: Dmitry Marakasov # $FreeBSD$ PORTNAME= pire PORTVERSION= 0.0.5 DISTVERSIONPREFIX= release- PORTREVISION= 1 CATEGORIES= devel MAINTAINER= amdmi3@FreeBSD.org COMMENT= Perl Incompatible Regular Expressions library -USE_GITHUB= yes -GH_ACCOUNT= dprokoptsev - LICENSE= LGPL3+ LICENSE_FILE= ${WRKSRC}/COPYING + +USE_GITHUB= yes +GH_ACCOUNT= dprokoptsev GNU_CONFIGURE= yes INSTALL_TARGET= install-strip USES= autoreconf bison gmake libtool USE_LDCONFIG= yes TEST_TARGET= check ONLY_FOR_ARCHS= amd64 i386 ia64 ONLY_FOR_ARCHS_REASON= not yet ported to big-endian platforms .include Index: head/devel/pire/files/patch-pire__stub__stl.h =================================================================== --- head/devel/pire/files/patch-pire__stub__stl.h (nonexistent) +++ head/devel/pire/files/patch-pire__stub__stl.h (revision 413209) @@ -0,0 +1,11 @@ +--- pire/stub/stl.h.orig 2013-11-08 17:46:23 UTC ++++ pire/stub/stl.h +@@ -97,7 +97,7 @@ namespace Pire { + ylist(Arg1 arg1, Arg2 arg2, Arg3 arg3): std::list(arg1, arg2, arg3) {} + }; + +- template< class K, class V, class C = std::less, class A = std::allocator< std::pair > > ++ template< class K, class V, class C = std::less, class A = std::allocator< std::pair > > + class ymap: public std::map { + public: + ymap(): std::map() {} Property changes on: head/devel/pire/files/patch-pire__stub__stl.h ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property 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 Index: head/devel/pire/pkg-descr =================================================================== --- head/devel/pire/pkg-descr (revision 413208) +++ head/devel/pire/pkg-descr (revision 413209) @@ -1,23 +1,20 @@ This is PIRE, Perl Incompatible Regular Expressions library. This library is aimed at checking a huge amount of text against relatively many regular expressions. Roughly speaking, it can just check whether given text maches the certain regexp, but can do it really fast (more than 400 MB/s on our hardware is common). Even more, multiple regexps can be combined together, giving capability to check the text against apx.10 regexps in a single pass (and mantaining the same speed). Since Pire examines each character only once, without any lookaheads or rollbacks, spending about five machine instructions per each character, it can be used even in realtime tasks. On the other hand, Pire has very limited functionality (compared to other regexp libraries). Pire does not have any Perlish conditional regexps, lookaheads & backtrackings, greedy/nongreedy matches; neither has it any capturing facilities. -Pire was developed in Yandex (http://company.yandex.ru/) as a part -of its web crawler. - -WWW: https://github.com/dprokoptsev/pire +WWW: https://github.com/yandex/pire