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 A97AF13835A for ; Fri, 22 Jan 2021 21:42:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9A32DE0BDF; Fri, 22 Jan 2021 21:42:23 +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 7D096E0BDF for ; Fri, 22 Jan 2021 21:42:23 +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 DF1F43410F8 for ; Fri, 22 Jan 2021 21:42:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 44995476 for ; Fri, 22 Jan 2021 21:42:20 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1611351736.7bee70abcfad720bacea9273a4814bd42868ab6a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mail-filter/libmilter/ X-VCS-Repository: repo/gentoo X-VCS-Files: mail-filter/libmilter/libmilter-1.0.2_p1-r1.ebuild X-VCS-Directories: mail-filter/libmilter/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 7bee70abcfad720bacea9273a4814bd42868ab6a X-VCS-Branch: master Date: Fri, 22 Jan 2021 21:42:20 +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: 659756b1-f498-4a51-86a8-e4afd04ef116 X-Archives-Hash: 877981f7af3694b6cf6e3b94b1c4ee59 commit: 7bee70abcfad720bacea9273a4814bd42868ab6a Author: Sam James gentoo org> AuthorDate: Fri Jan 22 21:40:41 2021 +0000 Commit: Sam James gentoo org> CommitDate: Fri Jan 22 21:42:16 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bee70ab mail-filter/libmilter: add -DHAS_GETHOSTBYNAME2=1 Bug: https://bugs.gentoo.org/730890 Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> mail-filter/libmilter/libmilter-1.0.2_p1-r1.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mail-filter/libmilter/libmilter-1.0.2_p1-r1.ebuild b/mail-filter/libmilter/libmilter-1.0.2_p1-r1.ebuild index 7c9989b34c6..81714b3ad29 100644 --- a/mail-filter/libmilter/libmilter-1.0.2_p1-r1.ebuild +++ b/mail-filter/libmilter/libmilter-1.0.2_p1-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -14,14 +14,13 @@ SENDMAIL_VER=8.16.1 DESCRIPTION="The Sendmail Filter API (Milter)" HOMEPAGE="http://www.sendmail.org/" SRC_URI="ftp://ftp.sendmail.org/pub/sendmail/sendmail.${SENDMAIL_VER}.tar.gz" +S="${WORKDIR}/sendmail-${SENDMAIL_VER}" LICENSE="Sendmail" SLOT="0/${PV}" #KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" IUSE="ipv6 poll" -S="${WORKDIR}/sendmail-${SENDMAIL_VER}" - # build system patch copied from sendmail ebuild PATCHES=( "${FILESDIR}/sendmail-8.16.1-build-system.patch" @@ -32,7 +31,8 @@ src_prepare() { default local CC="$(tc-getCC)" - local ENVDEF="-DNETUNIX -DNETINET" + local ENVDEF="-DNETUNIX -DNETINET -DHAS_GETHOSTBYNAME2=1" + use ipv6 && ENVDEF="${ENVDEF} -DNETINET6" use poll && ENVDEF="${ENVDEF} -DSM_CONF_POLL=1"