From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BA44B1382C5 for ; Mon, 16 Apr 2018 16:38:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DAECCE01B5; Mon, 16 Apr 2018 16:38:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BCB5BE01B5 for ; Mon, 16 Apr 2018 16:38:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 962D3335C07 for ; Mon, 16 Apr 2018 16:38:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E658B260 for ; Mon, 16 Apr 2018 16:38:36 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1523896710.3077289440d70b8f87a042cdfed42dae72b7ce49.grobian@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mail-mta/exim/ X-VCS-Repository: repo/gentoo X-VCS-Files: mail-mta/exim/exim-4.91.ebuild X-VCS-Directories: mail-mta/exim/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 3077289440d70b8f87a042cdfed42dae72b7ce49 X-VCS-Branch: master Date: Mon, 16 Apr 2018 16:38:36 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 150df597-69d5-48de-ab1a-763c3c8888dd X-Archives-Hash: b5fe282309b51367e105b971ee6c0987 commit: 3077289440d70b8f87a042cdfed42dae72b7ce49 Author: Fabian Groffen gentoo org> AuthorDate: Mon Apr 16 16:38:19 2018 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Mon Apr 16 16:38:30 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30772894 mail-mta/exim: specify best matching db version, bug #653252 Upstream banned >=db-6 for various reasons, so we need to tell explicitly which version of db is available (<6) to be used. Closes: https://bugs.gentoo.org/653252 Package-Manager: Portage-2.3.24, Repoman-2.3.6 mail-mta/exim/exim-4.91.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/mail-mta/exim/exim-4.91.ebuild b/mail-mta/exim/exim-4.91.ebuild index ff66e6daa53..d4c8a7abd70 100644 --- a/mail-mta/exim/exim-4.91.ebuild +++ b/mail-mta/exim/exim-4.91.ebuild @@ -3,7 +3,7 @@ EAPI="6" -inherit eutils toolchain-funcs multilib pam systemd +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=" @@ -196,9 +196,11 @@ src_configure() { # use the "native" interfaces to the DBM and CDB libraries, support # passwd and directory lookups by default + local DB_VERS="5.3 5.1 4.8 4.7 4.6 4.5 4.4 4.3 4.2 3.2" cat >> Makefile <<- EOC USE_DB=yes - DBMLIB=-ldb + CFLAGS+=-I$(db_includedir ${DB_VERS}) + DBMLIB=-l$(db_libname ${DB_VERS}) LOOKUP_CDB=yes LOOKUP_PASSWD=yes LOOKUP_DSEARCH=yes