diff options
author | Fabian Groffen <grobian@gentoo.org> | 2018-07-22 19:44:30 +0200 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2018-07-22 19:45:58 +0200 |
commit | 6a45bb6f39d321ba5cd6cc3b1c6e4803a924fed1 (patch) | |
tree | 98bca6f27ad8740e9629f5d4122af526ecd6ecf9 /mail-mta | |
parent | app-emacs/php-mode: Version bump. (diff) | |
download | gentoo-6a45bb6f39d321ba5cd6cc3b1c6e4803a924fed1.tar.gz gentoo-6a45bb6f39d321ba5cd6cc3b1c6e4803a924fed1.tar.bz2 gentoo-6a45bb6f39d321ba5cd6cc3b1c6e4803a924fed1.zip |
mail-mta/exim: disallow USE='gnutls dane', bug #661164
Closes: https://bugs.gentoo.org/661164
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'mail-mta')
-rw-r--r-- | mail-mta/exim/exim-4.91-r2.ebuild | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/mail-mta/exim/exim-4.91-r2.ebuild b/mail-mta/exim/exim-4.91-r2.ebuild index 02c3148dd39b..a854a56cf373 100644 --- a/mail-mta/exim/exim-4.91-r2.ebuild +++ b/mail-mta/exim/exim-4.91-r2.ebuild @@ -8,13 +8,20 @@ inherit db-use eutils toolchain-funcs multilib pam systemd IUSE="arc dane dcc +dkim dlfunc dmarc +dnsdb doc dovecot-sasl dsn elibc_glibc exiscan-acl gnutls idn ipv6 ldap libressl lmtp maildir mbx mysql nis pam perl pkcs11 postgres +prdr proxy radius redis sasl selinux spf sqlite srs ssl syslog tcpd +tpda X" REQUIRED_USE=" arc? ( dkim spf ) - dane? ( ssl ) + dane? ( ssl !gnutls ) dmarc? ( dkim spf ) gnutls? ( ssl ) pkcs11? ( ssl ) spf? ( exiscan-acl ) srs? ( exiscan-acl ) " +# NOTE on USE="gnutls dane", gnutls[dane] is masked in base, unmasked +# for x86 and amd64 only, due to this, repoman won't allow depending on +# gnutls[dane] for all else. Because we cannot express USE=dane when +# USE=gnutls is in effect only in package.use.mask, the only option we +# have left is to a) ignore the dependency (but that results in bug +# #661164) or b) mask the usage of USE=dane with USE=gnutls. Both are +# incorrect, but b) is the only "correct" view from repoman. COMM_URI="https://downloads.exim.org/exim4$([[ ${PV} == *_rc* ]] && echo /test)" @@ -31,7 +38,7 @@ KEYWORDS="alpha amd64 arm ~hppa ia64 ~ppc ~ppc64 sparc x86 ~x86-fbsd ~x86-solari COMMON_DEPEND=">=sys-apps/sed-4.0.5 ( >=sys-libs/db-3.2:= <sys-libs/db-6:= ) dev-libs/libpcre - idn? ( net-dns/libidn net-dns/libidn2 ) + idn? ( net-dns/libidn:= net-dns/libidn2:= ) perl? ( dev-lang/perl:= ) pam? ( virtual/pam ) tcpd? ( sys-apps/tcp-wrappers ) @@ -40,7 +47,7 @@ COMMON_DEPEND=">=sys-apps/sed-4.0.5 libressl? ( dev-libs/libressl:= ) ) gnutls? ( - net-libs/gnutls[pkcs11?] + net-libs/gnutls:0=[pkcs11?] dev-libs/libtasn1 ) ldap? ( >=net-nds/openldap-2.0.7 ) |