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 6FBFB1382C5 for ; Thu, 27 May 2021 16:58:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B7C38E092F; Thu, 27 May 2021 16:58:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 A08CBE092F for ; Thu, 27 May 2021 16:58:41 +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 A89C0335CEA for ; Thu, 27 May 2021 16:58:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4620D793 for ; Thu, 27 May 2021 16:58:39 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1622134712.23509d62abd700b44aa20769e7f5febfe6328918.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/isync/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-mail/isync/isync-1.4.1.ebuild X-VCS-Directories: net-mail/isync/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 23509d62abd700b44aa20769e7f5febfe6328918 X-VCS-Branch: master Date: Thu, 27 May 2021 16:58:39 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a52ad0d1-4f94-4724-b3a1-eaff977a2c9a X-Archives-Hash: 55d67ea1f5378e001af6437730a671b3 commit: 23509d62abd700b44aa20769e7f5febfe6328918 Author: Georgy Yakovlev gentoo org> AuthorDate: Thu May 27 16:54:57 2021 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Thu May 27 16:58:32 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23509d62 net-mail/isync: backport berkdb flag to 1.4.1 Signed-off-by: Georgy Yakovlev gentoo.org> net-mail/isync/isync-1.4.1.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/net-mail/isync/isync-1.4.1.ebuild b/net-mail/isync/isync-1.4.1.ebuild index 9525e6613cd..07b35974fe6 100644 --- a/net-mail/isync/isync-1.4.1.ebuild +++ b/net-mail/isync/isync-1.4.1.ebuild @@ -16,10 +16,10 @@ else KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" fi -IUSE="sasl ssl zlib" +IUSE="berkdb sasl ssl zlib" RDEPEND=" - >=sys-libs/db-4.2:= + berkdb? ( >=sys-libs/db-4.2:= ) sasl? ( dev-libs/cyrus-sasl ) ssl? ( >=dev-libs/openssl-0.9.6:0= ) zlib? ( sys-libs/zlib:0= ) @@ -35,6 +35,7 @@ src_prepare() { } src_configure() { + use berkdb || export ac_cv_berkdb4=no econf \ $(use_with ssl) \ $(use_with sasl) \