summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikle Kolyada <zlogene@gentoo.org>2021-05-02 18:34:45 +0300
committerMikle Kolyada <zlogene@gentoo.org>2021-05-02 18:38:32 +0300
commit48ebc66b9c93fe1488f354a2226261c6fcb8193b (patch)
tree11d4a920a39c563b6f8ffe6f89a3d93856e3c2dc /dev-libs/mongo-c-driver/mongo-c-driver-1.17.0.ebuild
parentdev-libs/libstrophe: remove libressl support (diff)
downloadgentoo-48ebc66b9c93fe1488f354a2226261c6fcb8193b.tar.gz
gentoo-48ebc66b9c93fe1488f354a2226261c6fcb8193b.tar.bz2
gentoo-48ebc66b9c93fe1488f354a2226261c6fcb8193b.zip
dev-libs/mongo-c-driver: remove libressl support
Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
Diffstat (limited to 'dev-libs/mongo-c-driver/mongo-c-driver-1.17.0.ebuild')
-rw-r--r--dev-libs/mongo-c-driver/mongo-c-driver-1.17.0.ebuild7
1 files changed, 3 insertions, 4 deletions
diff --git a/dev-libs/mongo-c-driver/mongo-c-driver-1.17.0.ebuild b/dev-libs/mongo-c-driver/mongo-c-driver-1.17.0.ebuild
index f58927b7e0fe..d61656b6f84b 100644
--- a/dev-libs/mongo-c-driver/mongo-c-driver-1.17.0.ebuild
+++ b/dev-libs/mongo-c-driver/mongo-c-driver-1.17.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/mongodb/mongo-c-driver/releases/download/${PV}/${P}.
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~s390 ~x86"
-IUSE="debug examples icu libressl sasl ssl static-libs test"
+IUSE="debug examples icu sasl ssl static-libs test"
REQUIRED_USE="test? ( static-libs )"
# No tests on x86 because tests require dev-db/mongodb which don't support
@@ -28,8 +28,7 @@ RDEPEND="app-arch/snappy:=
icu? ( dev-libs/icu:= )
sasl? ( dev-libs/cyrus-sasl:= )
ssl? (
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:0= )
+ dev-libs/openssl:0=
)"
DEPEND="${RDEPEND}
test? (
@@ -64,7 +63,7 @@ src_configure() {
-DENABLE_SNAPPY=SYSTEM
-DENABLE_ZLIB=SYSTEM
-DENABLE_SASL="$(usex sasl CYRUS OFF)"
- -DENABLE_SSL="$(usex ssl $(usex libressl LIBRESSL OPENSSL) OFF)"
+ -DENABLE_SSL="$(usex ssl OPENSSL OFF )"
-DENABLE_STATIC="$(usex static-libs ON OFF)"
-DENABLE_TESTS="$(usex test ON OFF)"
-DENABLE_TRACING="$(usex debug ON OFF)"