From owner-svn-ports-all@FreeBSD.ORG Fri Nov 28 12:02:37 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 56E05A0A; Fri, 28 Nov 2014 12:02:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 43538DDD; Fri, 28 Nov 2014 12:02:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sASC2bOS076945; Fri, 28 Nov 2014 12:02:37 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sASC2aPF076940; Fri, 28 Nov 2014 12:02:36 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201411281202.sASC2aPF076940@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Fri, 28 Nov 2014 12:02:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r373562 - in head/devel: . libr3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2014 12:02:37 -0000 Author: marino Date: Fri Nov 28 12:02:35 2014 New Revision: 373562 URL: https://svnweb.freebsd.org/changeset/ports/373562 QAT: https://qat.redports.org/buildarchive/r373562/ Log: Add new port devel/libr3 PR: 194212 Submitted by: Gasol Wu R3 is an URL router library with high performance implemented in C. It compiles route paths into a prefix trie. By using the constructed prefix trie in the start-up time, you can dispatch routes with efficiency. Added: head/devel/libr3/ head/devel/libr3/Makefile (contents, props changed) head/devel/libr3/distinfo (contents, props changed) head/devel/libr3/pkg-descr (contents, props changed) head/devel/libr3/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Nov 28 11:57:42 2014 (r373561) +++ head/devel/Makefile Fri Nov 28 12:02:35 2014 (r373562) @@ -1118,6 +1118,7 @@ SUBDIR += libpthread-stubs SUBDIR += libqcow SUBDIR += libqxt + SUBDIR += libr3 SUBDIR += librcc SUBDIR += librcd SUBDIR += libreadline-java Added: head/devel/libr3/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libr3/Makefile Fri Nov 28 12:02:35 2014 (r373562) @@ -0,0 +1,36 @@ +# Created by: Gasol Wu +# $FreeBSD$ + +PORTNAME= libr3 +PORTVERSION= 1.0.0 +CATEGORIES= devel + +MAINTAINER= gasol.wu@gmail.com +COMMENT= URL router library with high performance + +LICENSE= MIT + +LIB_DEPENDS= libcheck.so:${PORTSDIR}/devel/libcheck \ + libgvc.so:${PORTSDIR}/graphics/graphviz \ + libpcre.so:${PORTSDIR}/devel/pcre + +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --enable-graphviz +USES= libtool pkgconfig +INSTALL_TARGET= install-strip +USE_AUTOTOOLS= aclocal:env autoconf:env autoheader:env automake:env libtoolize:env + +USE_GITHUB= yes +GH_ACCOUNT= c9s +GH_TAGNAME= ${PORTVERSION} +GH_COMMIT= ad8faeb +GH_PROJECT= r3 + +post-patch: + @${REINPLACE_CMD} 's,^pkgconfigdir = .*,pkgconfigdir=$${prefix}/libdata/pkgconfig,' \ + ${WRKSRC}/Makefile.am + +pre-configure: + (cd ${WRKSRC} && ./autogen.sh) + +.include Added: head/devel/libr3/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libr3/distinfo Fri Nov 28 12:02:35 2014 (r373562) @@ -0,0 +1,2 @@ +SHA256 (libr3-1.0.0.tar.gz) = 8fa891adbbfe0a471c8d5de217983afb656412959f537120ed7a3e965cc80ca2 +SIZE (libr3-1.0.0.tar.gz) = 65255 Added: head/devel/libr3/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libr3/pkg-descr Fri Nov 28 12:02:35 2014 (r373562) @@ -0,0 +1,5 @@ +R3 is an URL router library with high performance implemented in C. It +compiles route paths into a prefix trie. By using the constructed prefix +trie in the start-up time, you can dispatch routes with efficiency. + +WWW: https://github.com/c9s/r3 Added: head/devel/libr3/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libr3/pkg-plist Fri Nov 28 12:02:35 2014 (r373562) @@ -0,0 +1,8 @@ +include/r3/r3.h +include/r3/r3_str.h +include/r3/str_array.h +lib/libr3.a +lib/libr3.so +lib/libr3.so.0 +lib/libr3.so.0.0.0 +libdata/pkgconfig/r3.pc