Date: Fri, 3 Jul 2015 04:12:58 +0000 (UTC) From: Wen Heping <wen@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r391214 - in head/devel: . libbson Message-ID: <201507030412.t634CwRO024257@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: wen Date: Fri Jul 3 04:12:57 2015 New Revision: 391214 URL: https://svnweb.freebsd.org/changeset/ports/391214 Log: libbson is a library providing useful routines related to building, parsing, and iterating BSON documents. It is a useful base for those wanting to write high-performance C extensions to higher level languages such as python, ruby, or perl. https://github.com/mongodb/libbson PR: 200338 Submitted by: pusateri@bangj.com Added: head/devel/libbson/ head/devel/libbson/Makefile (contents, props changed) head/devel/libbson/distinfo (contents, props changed) head/devel/libbson/pkg-descr (contents, props changed) head/devel/libbson/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Jul 3 01:12:09 2015 (r391213) +++ head/devel/Makefile Fri Jul 3 04:12:57 2015 (r391214) @@ -1042,6 +1042,7 @@ SUBDIR += libbobcat SUBDIR += libbonobo SUBDIR += libbonobo-reference + SUBDIR += libbson SUBDIR += libburn SUBDIR += libc++ SUBDIR += libccid Added: head/devel/libbson/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libbson/Makefile Fri Jul 3 04:12:57 2015 (r391214) @@ -0,0 +1,26 @@ +# Created by: "Waitman Gobble" <uzimac@da3m0n8t3r.com> +# $FreeBSD$ + +PORTNAME= libbson +PORTVERSION= 1.1.9 +CATEGORIES= devel + +MAINTAINER= waitman@waitman.net +COMMENT= BSON utility library + +LICENSE= APACHE20 + +USE_GITHUB= yes +GH_ACCOUNT= mongodb + +USES= gmake pkgconfig autoreconf libtool +GNU_CONFIGURE= yes +INSTALL_TARGET= install-strip +USE_LDCONFIG= yes + +pre-configure: +# cd ${WRKSRC} && ./autogen.sh + +MAKE_ARGS= pkgconfigdir="${PREFIX}/libdata/pkgconfig" + +.include <bsd.port.mk> Added: head/devel/libbson/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libbson/distinfo Fri Jul 3 04:12:57 2015 (r391214) @@ -0,0 +1,2 @@ +SHA256 (mongodb-libbson-1.1.9_GH0.tar.gz) = 3d293f54902a59e38a2e6c5a84a781e1e4514d344927d69b3e054ebe7967a064 +SIZE (mongodb-libbson-1.1.9_GH0.tar.gz) = 4037659 Added: head/devel/libbson/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libbson/pkg-descr Fri Jul 3 04:12:57 2015 (r391214) @@ -0,0 +1,6 @@ +libbson is a library providing useful routines related to building, +parsing, and iterating BSON documents. It is a useful base for those +wanting to write high-performance C extensions to higher level +languages such as python, ruby, or perl. + +https://github.com/mongodb/libbson Added: head/devel/libbson/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libbson/pkg-plist Fri Jul 3 04:12:57 2015 (r391214) @@ -0,0 +1,31 @@ +include/libbson-1.0/bcon.h +include/libbson-1.0/bson-atomic.h +include/libbson-1.0/bson-clock.h +include/libbson-1.0/bson-compat.h +include/libbson-1.0/bson-config.h +include/libbson-1.0/bson-context.h +include/libbson-1.0/bson-endian.h +include/libbson-1.0/bson-error.h +include/libbson-1.0/bson-iter.h +include/libbson-1.0/bson-json.h +include/libbson-1.0/bson-keys.h +include/libbson-1.0/bson-macros.h +include/libbson-1.0/bson-md5.h +include/libbson-1.0/bson-memory.h +include/libbson-1.0/bson-oid.h +include/libbson-1.0/bson-reader.h +include/libbson-1.0/bson-stdint.h +include/libbson-1.0/bson-string.h +include/libbson-1.0/bson-types.h +include/libbson-1.0/bson-utf8.h +include/libbson-1.0/bson-value.h +include/libbson-1.0/bson-version.h +include/libbson-1.0/bson-writer.h +include/libbson-1.0/bson.h +lib/libbson-1.0.so +lib/libbson-1.0.so.0 +lib/libbson-1.0.so.0.0.0 +libdata/pkgconfig/libbson-1.0.pc +%%PORTDOCS%%%%DOCSDIR%%/COPYING +%%PORTDOCS%%%%DOCSDIR%%/NEWS +%%PORTDOCS%%%%DOCSDIR%%/README
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201507030412.t634CwRO024257>