diff options
author | Wesley Shields <wxs@FreeBSD.org> | 2013-07-05 19:43:36 +0000 |
---|---|---|
committer | Wesley Shields <wxs@FreeBSD.org> | 2013-07-05 19:43:36 +0000 |
commit | 14f11a7a297ce9f27665f62f57b486343f02bdbc (patch) | |
tree | c87ca0f54ae6a4923ecccbca0782854e91162ca1 /devel/mongo-c-driver/Makefile | |
parent | Update to 1.8.3.2. (diff) |
Official Mongo C Driver (Development Version)
PR: ports/175613
Submitted by: Waitman Gobble <uzimac@da3m0n8t3r.com>
Notes
Notes:
svn path=/head/; revision=322352
Diffstat (limited to 'devel/mongo-c-driver/Makefile')
-rw-r--r-- | devel/mongo-c-driver/Makefile | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/devel/mongo-c-driver/Makefile b/devel/mongo-c-driver/Makefile new file mode 100644 index 000000000000..bbc507ae0073 --- /dev/null +++ b/devel/mongo-c-driver/Makefile @@ -0,0 +1,36 @@ +# Created by: "Waitman Gobble" <uzimac@da3m0n8t3r.com> +# $FreeBSD$ + +PORTNAME= mongo-c-driver +PORTVERSION= 0.7.1 +CATEGORIES= devel +MASTER_SITES= GH +PKGNAMESUFFIX= -devel +DISTNAME= ${GH_ACCOUNT}-${GH_PROJECT}-${PORTVERSION}-0-g${GH_COMMIT} + +MAINTAINER= wxs@FreeBSD.org +COMMENT= C Driver for MongoDB + +USE_GITHUB= yes +GH_ACCOUNT= mongodb +GH_PROJECT= mongo-c-driver +GH_TAGNAME= v0.7.1 +GH_COMMIT= g98826a + +WRKSRC= ${WRKDIR}/mongodb-mongo-c-driver-17ff925 +USE_GMAKE= yes + +USE_LDCONFIG= yes + +PLIST_FILES= include/mongo.h \ + include/bson.h \ + lib/libmongoc.a \ + lib/libmongoc.so.0.7 \ + lib/libmongoc.so.0.7.1 \ + lib/libmongoc.so \ + lib/libbson.a \ + lib/libbson.so.0.7.1 \ + lib/libbson.so.0.7 \ + lib/libbson.so + +.include <bsd.port.mk> |