From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Dec 29 22:10:01 2012 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9C1354CC for ; Sat, 29 Dec 2012 22:10:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 816F78FC17 for ; Sat, 29 Dec 2012 22:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id qBTMA1lB035727 for ; Sat, 29 Dec 2012 22:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id qBTMA1th035726; Sat, 29 Dec 2012 22:10:01 GMT (envelope-from gnats) Date: Sat, 29 Dec 2012 22:10:01 GMT Message-Id: <201212292210.qBTMA1th035726@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/174652: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Dec 2012 22:10:01 -0000 The following reply was made to PR ports/174652; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/174652: commit references a PR Date: Sat, 29 Dec 2012 22:06:19 +0000 (UTC) Author: pawel Date: Sat Dec 29 22:06:04 2012 New Revision: 309633 URL: http://svnweb.freebsd.org/changeset/ports/309633 Log: This is an alternative C driver for MongoDB, with slightly different goals than the official one: libmongo-client is meant to be a stable (API, ABI and quality alike), clean, well documented and well tested shared library, that strives to make the most common use cases as convenient as possible. WWW: https://github.com/algernon/libmongo-client PR: ports/174652 Submitted by: Denis Generalov Added: head/databases/libmongo-client/ head/databases/libmongo-client/Makefile (contents, props changed) head/databases/libmongo-client/distinfo (contents, props changed) head/databases/libmongo-client/pkg-descr (contents, props changed) head/databases/libmongo-client/pkg-plist (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Sat Dec 29 20:57:20 2012 (r309632) +++ head/databases/Makefile Sat Dec 29 22:06:04 2012 (r309633) @@ -170,6 +170,7 @@ SUBDIR += libiodbc SUBDIR += libmemcache SUBDIR += libmemcached + SUBDIR += libmongo-client SUBDIR += libodbc++ SUBDIR += libpbl SUBDIR += libsdb Added: head/databases/libmongo-client/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/libmongo-client/Makefile Sat Dec 29 22:06:04 2012 (r309633) @@ -0,0 +1,34 @@ +# Created by: Denis Generalov +# $FreeBSD$ + +PORTNAME= libmongo-client +PORTVERSION= 0.1.6.2 +CATEGORIES= databases + +MAINTAINER= gd@rambler-co.ru +COMMENT= Alternative C driver for MongoDB + +LIB_DEPENDS= pcre:${PORTSDIR}/devel/pcre + +USE_GITHUB= yes +GH_ACCOUNT= algernon +GH_TAGNAME= ${PORTNAME}-${PORTVERSION} +GH_COMMIT= 13cc0ee + +USE_AUTOTOOLS= automake autoconf libtool +GNU_CONFIGURE= yes +USE_PKGCONFIG= build +USE_GMAKE= yes +USE_ICONV= yes +USE_GETTEXT= yes +USE_GNOME= glib20 +USE_LDCONFIG= yes +CONFIGURE_ENV+= PKG_CONFIG_DIR=${LOCALBASE}/libdata/pkgconfig + +run-autotools: + @${REINPLACE_CMD} 's|(libdir)/pkgconfig|(prefix)/libdata/pkgconfig|' \ + ${WRKSRC}/src/Makefile.am + @cd ${CONFIGURE_WRKSRC} && \ + ${SETENV} ${AUTOTOOLS_ENV} ${AUTORECONF} -i + +.include Added: head/databases/libmongo-client/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/libmongo-client/distinfo Sat Dec 29 22:06:04 2012 (r309633) @@ -0,0 +1,2 @@ +SHA256 (libmongo-client-0.1.6.2.tar.gz) = dc68c3f6c508fce3d8bf295b77f2e244521b94be940deb32442553426cbcebee +SIZE (libmongo-client-0.1.6.2.tar.gz) = 120477 Added: head/databases/libmongo-client/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/libmongo-client/pkg-descr Sat Dec 29 22:06:04 2012 (r309633) @@ -0,0 +1,8 @@ +This is an alternative C driver for MongoDB, with slightly different goals +than the official one: + +libmongo-client is meant to be a stable (API, ABI and quality alike), clean, +well documented and well tested shared library, that strives to make the most +common use cases as convenient as possible. + +WWW: https://github.com/algernon/libmongo-client Added: head/databases/libmongo-client/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/libmongo-client/pkg-plist Sat Dec 29 22:06:04 2012 (r309633) @@ -0,0 +1,17 @@ +include/mongo-client/bson.h +include/mongo-client/mongo-wire.h +include/mongo-client/mongo-client.h +include/mongo-client/mongo-utils.h +include/mongo-client/mongo-sync.h +include/mongo-client/mongo-sync-cursor.h +include/mongo-client/mongo-sync-pool.h +include/mongo-client/sync-gridfs.h +include/mongo-client/sync-gridfs-chunk.h +include/mongo-client/sync-gridfs-stream.h +include/mongo-client/mongo.h +lib/libmongo-client.so.3 +lib/libmongo-client.so +lib/libmongo-client.la +lib/libmongo-client.a +libdata/pkgconfig/libmongo-client.pc +@dirrm include/mongo-client _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"