Gentoo's Bugzilla – Bug 770379
which forces an exact match. However, curl can be built without sslv3 support (which is the better option) against an openssl with sslv3 support (should this be needed for other use cases).
A better choice would be
openssl? (
dev-libs/openssl:0=[sslv3?,static-libs?,${MULTILIB_USEDEP}]
which forces on sslv3 on openssl if it's enabled for curl, but ignores it otherwise.
For future reference:
-sslv3 on curl does not do what one would expect. It does not *disable* sslv3 support in curl, as that is still autodetected from an OpenSSL with enables SSLv3 support.
What Ionen describes is the situation where a user installs an OpenSSL with sslv3 useflag, builds curl against it, then disables sslv3 on OpenSSL. Portage has no way to understand that libcurl requires OpenSSL with SSLv3 support (as curl is build with -sslv3), and thus a rebuild failes to consider it.
The proper solution would be to create a patch for curl that actually force-disables sslv3 support on top of the requested change.
+ This is irrelevant with openssl 3
+ All versions of cURL for the last two years (almost to the day) refuse to do sslv3 connections
+ Blanket disabling sslv3 to prevent an unlikely issue from occurring is unpalatable; someone, somewhere, may want to enable it
+ I don't want to maintain a curl build system patch that won't be upstreamed
+ Just use a modern / decent TLS implementation