svn commit: r378688 - in head/devel: . p5-Router-R3
Kurt Jaeger
pi at FreeBSD.org
Sun Feb 8 21:30:29 UTC 2015
Author: pi
Date: Sun Feb 8 21:30:27 2015
New Revision: 378688
URL: https://svnweb.freebsd.org/changeset/ports/378688
QAT: https://qat.redports.org/buildarchive/r378688/
Log:
New port: devel/p5-Router-R3
R3 is an URL router library with high performance, thus, it's
implemented in C. It compiles your route paths into a prefix trie.
By using the constructed prefix trie in the start-up time, you can
dispatch routes with efficiency.
WWW: http://search.cpan.org/dist/Router-R3/
PR: 194230
Submitted by: Gasol Wu <gasol.wu at gmail.com>
Reviewed by: marino
Added:
head/devel/p5-Router-R3/
head/devel/p5-Router-R3/Makefile (contents, props changed)
head/devel/p5-Router-R3/distinfo (contents, props changed)
head/devel/p5-Router-R3/pkg-descr (contents, props changed)
head/devel/p5-Router-R3/pkg-plist (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Sun Feb 8 21:29:24 2015 (r378687)
+++ head/devel/Makefile Sun Feb 8 21:30:27 2015 (r378688)
@@ -2745,6 +2745,7 @@
SUBDIR += p5-Role-Tiny
SUBDIR += p5-Rose-DateTime
SUBDIR += p5-Rose-Object
+ SUBDIR += p5-Router-R3
SUBDIR += p5-RunApp
SUBDIR += p5-SDL
SUBDIR += p5-SNMP-Persist
Added: head/devel/p5-Router-R3/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/p5-Router-R3/Makefile Sun Feb 8 21:30:27 2015 (r378688)
@@ -0,0 +1,27 @@
+# Created by: Gasol Wu <gasol.wu at gmail.com>
+# $FreeBSD$
+
+PORTNAME= Router-R3
+PORTVERSION= 0.011001
+CATEGORIES= devel perl5
+MASTER_SITES= CPAN
+PKGNAMEPREFIX= p5-
+
+MAINTAINER= gasol.wu at gmail.com
+COMMENT= XS wrapper around a C library R3
+
+LICENSE= ART10 GPLv1
+LICENSE_COMB= dual
+
+BUILD_DEPENDS= p5-ExtUtils-MakeMaker>=0:${PORTSDIR}/devel/p5-ExtUtils-MakeMaker \
+ p5-ExtUtils-PkgConfig>=0:${PORTSDIR}/devel/p5-ExtUtils-PkgConfig
+LIB_DEPENDS= libr3.so:${PORTSDIR}/devel/libr3
+
+USES= perl5
+USE_PERL5= configure
+CFLAGS+= -std=c99
+
+post-install:
+ ${STRIP_CMD} ${STAGEDIR}${SITE_ARCH}/auto/Router/R3/R3.so
+
+.include <bsd.port.mk>
Added: head/devel/p5-Router-R3/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/p5-Router-R3/distinfo Sun Feb 8 21:30:27 2015 (r378688)
@@ -0,0 +1,2 @@
+SHA256 (Router-R3-0.011001.tar.gz) = decf8c58ecbe3b2e4318ca8f809903c9f1f0e4765cee7f3067810060b2f5c3c7
+SIZE (Router-R3-0.011001.tar.gz) = 68206
Added: head/devel/p5-Router-R3/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/p5-Router-R3/pkg-descr Sun Feb 8 21:30:27 2015 (r378688)
@@ -0,0 +1,7 @@
+R3 is an URL router library with high performance, thus, it's
+implemented in C. It compiles your route paths into a prefix trie.
+
+By using the constructed prefix trie in the start-up time, you can
+dispatch routes with efficiency.
+
+WWW: http://search.cpan.org/dist/Router-R3/
Added: head/devel/p5-Router-R3/pkg-plist
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/p5-Router-R3/pkg-plist Sun Feb 8 21:30:27 2015 (r378688)
@@ -0,0 +1,4 @@
+%%PERL5_MAN3%%/Router::R3.3.gz
+%%SITE_ARCH%%/Router/R3.pm
+%%SITE_ARCH%%/auto/Router/R3/R3.so
+%%SITE_ARCH%%/auto/Router/R3/autosplit.ix
More information about the svn-ports-all
mailing list