diff options
author | 2016-06-25 19:44:09 -0400 | |
---|---|---|
committer | 2016-06-25 19:44:09 -0400 | |
commit | 19239aaef7013ca1a51fd6d0b55c55c7382104c0 (patch) | |
tree | 6108625a33449a80bb7a9815934c91137e29715f /dev-libs/mongo-c-driver/mongo-c-driver-0.98.2.ebuild | |
parent | dev-libs/libxr: bump EAPI and add libressl support (diff) | |
download | gentoo-19239aaef7013ca1a51fd6d0b55c55c7382104c0.tar.gz gentoo-19239aaef7013ca1a51fd6d0b55c55c7382104c0.tar.bz2 gentoo-19239aaef7013ca1a51fd6d0b55c55c7382104c0.zip |
dev-libs/mongo-c-driver: add libressl support
Package-Manager: portage-2.2.28
Diffstat (limited to 'dev-libs/mongo-c-driver/mongo-c-driver-0.98.2.ebuild')
-rw-r--r-- | dev-libs/mongo-c-driver/mongo-c-driver-0.98.2.ebuild | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/dev-libs/mongo-c-driver/mongo-c-driver-0.98.2.ebuild b/dev-libs/mongo-c-driver/mongo-c-driver-0.98.2.ebuild index 0bb5f3ecb4eb..2b0d4acb7df0 100644 --- a/dev-libs/mongo-c-driver/mongo-c-driver-0.98.2.ebuild +++ b/dev-libs/mongo-c-driver/mongo-c-driver-0.98.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -13,11 +13,14 @@ SRC_URI="https://github.com/mongodb/${PN}/releases/download/${PV}/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~hppa ~x86" -IUSE="debug examples sasl ssl static-libs test" +IUSE="debug examples libressl sasl ssl static-libs test" RDEPEND=">=dev-libs/libbson-0.98.0 sasl? ( dev-libs/cyrus-sasl ) - ssl? ( dev-libs/openssl:= )" + ssl? ( + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) + )" DEPEND="${RDEPEND} test? ( dev-db/mongodb )" |