summaryrefslogtreecommitdiff
path: root/dev-db/cpp-driver/cpp-driver-2.4.3.ebuild
diff options
context:
space:
mode:
authorGeaaru <geaaru@gmail.com>2016-08-25 11:53:30 +0200
committerDavid Seifert <soap@gentoo.org>2016-08-25 19:05:17 +0200
commit0f002a7b695d84c99f248986e556cc7ebecc2430 (patch)
treee1391865424e6c90274b8cf918bb4a81904dfc73 /dev-db/cpp-driver/cpp-driver-2.4.3.ebuild
parentf9f601a8838ce9a1eea2e2e90532fd7618fd9b13 (diff)
downloadgentoo-0f002a7b695d84c99f248986e556cc7ebecc2430.tar.gz
gentoo-0f002a7b695d84c99f248986e556cc7ebecc2430.tar.bz2
gentoo-0f002a7b695d84c99f248986e556cc7ebecc2430.zip
dev-db/cpp-driver: Add ebuild of Cassandra C/C++ driver
Package-Manager: portage-2.3.0 Closes: https://github.com/gentoo/gentoo/pull/2140 Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-db/cpp-driver/cpp-driver-2.4.3.ebuild')
-rw-r--r--dev-db/cpp-driver/cpp-driver-2.4.3.ebuild29
1 files changed, 29 insertions, 0 deletions
diff --git a/dev-db/cpp-driver/cpp-driver-2.4.3.ebuild b/dev-db/cpp-driver/cpp-driver-2.4.3.ebuild
new file mode 100644
index 000000000000..c30a890a08a6
--- /dev/null
+++ b/dev-db/cpp-driver/cpp-driver-2.4.3.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit cmake-utils
+
+DESCRIPTION="DataStax C/C++ Driver for Cassandra"
+HOMEPAGE="http://datastax.github.io/cpp-driver/"
+SRC_URI="https://github.com/datastax/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="ssl libressl"
+
+RDEPEND="
+ dev-libs/libuv
+ ssl? (
+ !libressl? ( dev-libs/openssl:0= )
+ libressl? ( dev-libs/libressl:0= )
+ )"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+ local mycmakeargs=( -DCASS_USE_OPENSSL=$(usex ssl) )
+ cmake-utils_src_configure
+}