diff options
author | Stijn Tintel <stijn@linux-ipv6.be> | 2019-03-27 19:54:31 +0200 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2019-03-29 00:12:35 +0100 |
commit | b544f1de171519fa30bb99f5a5d266f123307ac9 (patch) | |
tree | 296cacee8dec65205047ed28a161ee3908b2b4fe /app-misc/mosquitto | |
parent | app-editors/nano: remove unused patch(es). (diff) | |
download | gentoo-b544f1de171519fa30bb99f5a5d266f123307ac9.tar.gz gentoo-b544f1de171519fa30bb99f5a5d266f123307ac9.tar.bz2 gentoo-b544f1de171519fa30bb99f5a5d266f123307ac9.zip |
app-misc/mosquitto: LibreSSL support.
Mosquitto supports LibreSSL since version 1.5.5.
Package-Manager: Portage-2.3.62, Repoman-2.3.11
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
Closes: https://github.com/gentoo/gentoo/pull/11519
Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'app-misc/mosquitto')
-rw-r--r-- | app-misc/mosquitto/mosquitto-1.5.6.ebuild | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/app-misc/mosquitto/mosquitto-1.5.6.ebuild b/app-misc/mosquitto/mosquitto-1.5.6.ebuild index 2a915dd90e43..7b6a16c2daf8 100644 --- a/app-misc/mosquitto/mosquitto-1.5.6.ebuild +++ b/app-misc/mosquitto/mosquitto-1.5.6.ebuild @@ -13,13 +13,19 @@ SRC_URI="https://mosquitto.org/files/source/${P}.tar.gz" LICENSE="EPL-1.0" SLOT="0" KEYWORDS="amd64 arm x86" -IUSE="bridge examples +persistence +srv ssl tcpd test websockets" +IUSE="bridge examples libressl +persistence +srv ssl tcpd test websockets" -REQUIRED_USE="test? ( bridge )" +REQUIRED_USE=" + libressl? ( ssl ) + test? ( bridge ) +" RDEPEND="tcpd? ( sys-apps/tcp-wrappers ) srv? ( net-dns/c-ares ) - ssl? ( dev-libs/openssl:0= )" + ssl? ( + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) + )" DEPEND="${RDEPEND} ${PYTHON_DEPS} websockets? ( net-libs/libwebsockets )" |