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 24590138334 for ; Fri, 14 Jun 2019 13:39:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 214A1E07BA; Fri, 14 Jun 2019 13:39:44 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 E7F83E07BA for ; Fri, 14 Jun 2019 13:39:43 +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 AFAB33460D1 for ; Fri, 14 Jun 2019 13:39:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9A5685E6 for ; Fri, 14 Jun 2019 13:39:40 +0000 (UTC) From: "Michael Orlitzky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" Message-ID: <1560519229.129704fc9faf6d415a66b48171c1840e30ebf399.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mail-filter/opendkim/ X-VCS-Repository: repo/gentoo X-VCS-Files: mail-filter/opendkim/opendkim-2.10.3-r13.ebuild mail-filter/opendkim/opendkim-2.10.3-r14.ebuild X-VCS-Directories: mail-filter/opendkim/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: 129704fc9faf6d415a66b48171c1840e30ebf399 X-VCS-Branch: master Date: Fri, 14 Jun 2019 13:39:40 +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: d6b4e75f-52c5-413e-8f38-987c84dcdc28 X-Archives-Hash: ef4df3c5ee4c3c2df44c8d3ee79dc808 commit: 129704fc9faf6d415a66b48171c1840e30ebf399 Author: Michael Orlitzky gentoo org> AuthorDate: Fri Jun 14 13:28:33 2019 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Fri Jun 14 13:33:49 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=129704fc mail-filter/opendkim: fix building against BerkeleyDB. Our ebuild was doing something strange with USE=berkdb set, and as a result, the ./configure script for OpenDKIM was not being passed the correct location for the BerkeleyDB headers. This seems like a simple fix; to set --with-db-incdir="$(db_includedir)" in the ebuild. I've made that change in a new revision, and tested that the OpenDKIM build system can pick up the right version of BerkeleyDB: checking for BerkeleyDB db.h... /usr/include/db6.0 Seems to work. Closes: https://bugs.gentoo.org/684958 Signed-off-by: Michael Orlitzky gentoo.org> Package-Manager: Portage-2.3.66, Repoman-2.3.11 .../{opendkim-2.10.3-r13.ebuild => opendkim-2.10.3-r14.ebuild} | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mail-filter/opendkim/opendkim-2.10.3-r13.ebuild b/mail-filter/opendkim/opendkim-2.10.3-r14.ebuild similarity index 99% rename from mail-filter/opendkim/opendkim-2.10.3-r13.ebuild rename to mail-filter/opendkim/opendkim-2.10.3-r14.ebuild index 037a1b0f98c..ff45f1dac4d 100644 --- a/mail-filter/opendkim/opendkim-2.10.3-r13.ebuild +++ b/mail-filter/opendkim/opendkim-2.10.3-r14.ebuild @@ -68,8 +68,7 @@ src_configure() { local myconf=() if use berkdb ; then myconf+=( - $(db_includedir) - --with-db-incdir=${myconf#-I} + --with-db-incdir=$(db_includedir) --enable-popauth --enable-query_cache --enable-stats