diff options
Diffstat (limited to 'dev-db/cpp-driver')
| -rw-r--r-- | dev-db/cpp-driver/Manifest | 1 | ||||
| -rw-r--r-- | dev-db/cpp-driver/cpp-driver-2.8.1.ebuild | 28 |
2 files changed, 29 insertions, 0 deletions
diff --git a/dev-db/cpp-driver/Manifest b/dev-db/cpp-driver/Manifest index 104338a97446..98cce5c188e3 100644 --- a/dev-db/cpp-driver/Manifest +++ b/dev-db/cpp-driver/Manifest @@ -1 +1,2 @@ DIST cpp-driver-2.8.0.tar.gz 1515087 BLAKE2B ce8a2afb1c8c97104b4622e1d3499a402e31a91689fe01ba22de24846c33aaf80057425aa6f3a7f08ca73d484e9a431a62ee5dab517fc6a02a6e569a813de50f SHA512 373f5e462053768c9d092f4621f8d78d94a7736770740d8b1366a4fc233c83de4dee952a58e1c6a29a599810bd3701ebbd16b8c02ebdc54a80fb5885494a7e0e +DIST cpp-driver-2.8.1.tar.gz 1526453 BLAKE2B 8ab4332f00a1da9f35be6fa8651ace54d71fbac76223c1665089096376dcfd6f5976beb83c25094f531786a4aa628aa4e288540ef7bcb8cc5221625dcd1ccf78 SHA512 1b303e874d6b24cb429ec92d6030880ad7d7b28b167a25c62060626c206f623863ecf58eab33e89b0efea4a474ca9500e1701b719ac203c76b0875c2b5d0a1c8 diff --git a/dev-db/cpp-driver/cpp-driver-2.8.1.ebuild b/dev-db/cpp-driver/cpp-driver-2.8.1.ebuild new file mode 100644 index 000000000000..454caab7dba4 --- /dev/null +++ b/dev-db/cpp-driver/cpp-driver-2.8.1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +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 +} |
