From 94b2b8a10c2b8710a6059eba385544e893621e4c Mon Sep 17 00:00:00 2001 From: Geaaru Date: Tue, 28 Aug 2018 22:09:38 +0200 Subject: dev-db/cpp-driver: version bump to 2.9.0. Package-Manager: Portage-2.3.40, Repoman-2.3.9 Closes: https://github.com/gentoo/gentoo/pull/9723 --- dev-db/cpp-driver/cpp-driver-2.9.0.ebuild | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 dev-db/cpp-driver/cpp-driver-2.9.0.ebuild (limited to 'dev-db/cpp-driver/cpp-driver-2.9.0.ebuild') diff --git a/dev-db/cpp-driver/cpp-driver-2.9.0.ebuild b/dev-db/cpp-driver/cpp-driver-2.9.0.ebuild new file mode 100644 index 000000000000..66d76de1def7 --- /dev/null +++ b/dev-db/cpp-driver/cpp-driver-2.9.0.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="https://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="libressl ssl" + +RDEPEND=" + dev-libs/libuv:= + ssl? ( + !libressl? ( dev-libs/openssl:= ) + libressl? ( dev-libs/libressl:= ) + )" +DEPEND="${RDEPEND}" + +src_configure() { + local mycmakeargs=( -DCASS_USE_OPENSSL=$(usex ssl) ) + cmake-utils_src_configure +} -- cgit v1.2.3-65-gdbad