From owner-svn-ports-all@FreeBSD.ORG Sat Jun 20 08:02:20 2015 Return-Path: Delivered-To: svn-ports-all@hub.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 CC3C8D2D; Sat, 20 Jun 2015 08:02:20 +0000 (UTC) (envelope-from gahr@FreeBSD.org) 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 AECCF941; Sat, 20 Jun 2015 08:02:20 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t5K82KS5083718; Sat, 20 Jun 2015 08:02:20 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t5K82JPf083711; Sat, 20 Jun 2015 08:02:19 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201506200802.t5K82JPf083711@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Sat, 20 Jun 2015 08:02:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r390149 - in head/databases: . cassandra-cpp-driver 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.20 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: Sat, 20 Jun 2015 08:02:21 -0000 Author: gahr Date: Sat Jun 20 08:02:19 2015 New Revision: 390149 URL: https://svnweb.freebsd.org/changeset/ports/390149 Log: - New port: databases/cassandra-cpp-driver DataStax Cpp Driver is modern, feature-rich, and highly tunable C/C++ client library for Apache Cassandra (1.2+) and DataStax Enterprise (3.1+) using exclusively Cassandra's native protocol and Cassandra Query Language v3. WWW: http://datastax.github.io/cpp-driver/ Added: head/databases/cassandra-cpp-driver/ head/databases/cassandra-cpp-driver/Makefile (contents, props changed) head/databases/cassandra-cpp-driver/distinfo (contents, props changed) head/databases/cassandra-cpp-driver/pkg-descr (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Sat Jun 20 06:20:11 2015 (r390148) +++ head/databases/Makefile Sat Jun 20 08:02:19 2015 (r390149) @@ -26,6 +26,7 @@ SUBDIR += buzhug SUBDIR += c3p0 SUBDIR += cassandra + SUBDIR += cassandra-cpp-driver SUBDIR += cassandra2 SUBDIR += cdb SUBDIR += cego Added: head/databases/cassandra-cpp-driver/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/cassandra-cpp-driver/Makefile Sat Jun 20 08:02:19 2015 (r390149) @@ -0,0 +1,30 @@ +# Created by: gahr +# $FreeBSD$ + +PORTNAME= cassandra-cpp-driver +PORTVERSION= 1.0.2 +CATEGORIES= databases + +MAINTAINER= gahr@FreeBSD.org +COMMENT= DataStax C/C++ Driver for Apache Cassandra + +LICENSE= APACHE20 + +LIB_DEPENDS= libuv.so:${PORTSDIR}/devel/libuv + +USE_GITHUB= nodefault +GH_ACCOUNT= datastax +GH_PROJECT= cpp-driver + +USES= cmake:outsource +CMAKE_ARGS= -DCMAKE_INSTALL_LIBDIR:STRING=lib + +USE_LDCONFIG= yes +USE_OPENSSL= yes + +PLIST_FILES= include/cassandra.h \ + lib/libcassandra.so \ + lib/libcassandra.so.1 \ + lib/libcassandra.so.1.0.2 + +.include Added: head/databases/cassandra-cpp-driver/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/cassandra-cpp-driver/distinfo Sat Jun 20 08:02:19 2015 (r390149) @@ -0,0 +1,2 @@ +SHA256 (cassandra-cpp-driver-1.0.2_GH0.tar.gz) = 69a80dc857d3de975827c6c165e7844c8044e32de47cd702ffd97e7577de2672 +SIZE (cassandra-cpp-driver-1.0.2_GH0.tar.gz) = 1036892 Added: head/databases/cassandra-cpp-driver/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/cassandra-cpp-driver/pkg-descr Sat Jun 20 08:02:19 2015 (r390149) @@ -0,0 +1,5 @@ +DataStax Cpp Driver is modern, feature-rich, and highly tunable C/C++ client +library for Apache Cassandra (1.2+) and DataStax Enterprise (3.1+) using +exclusively Cassandra's native protocol and Cassandra Query Language v3. + +WWW: http://datastax.github.io/cpp-driver/