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 3D899138359 for ; Wed, 30 Sep 2020 21:49:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8A802E091B; Wed, 30 Sep 2020 21:49:24 +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 73C47E091B for ; Wed, 30 Sep 2020 21:49:24 +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 95380340845 for ; Wed, 30 Sep 2020 21:49:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0F8C92EC for ; Wed, 30 Sep 2020 21:49:22 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1601502558.5b9f3e48eadc54ce3d63f3b147616d6442cf1cd0.robbat2@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/bind/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dns/bind/bind-9.16.6-r3.ebuild X-VCS-Directories: net-dns/bind/ X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: 5b9f3e48eadc54ce3d63f3b147616d6442cf1cd0 X-VCS-Branch: master Date: Wed, 30 Sep 2020 21:49:22 +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: 61228b13-ebc8-4e07-af8c-f2671c545d4a X-Archives-Hash: 2f4b0fd2cd1744bd51fa1cf98327c7ae commit: 5b9f3e48eadc54ce3d63f3b147616d6442cf1cd0 Author: Robin H. Johnson gentoo org> AuthorDate: Wed Sep 30 21:48:51 2020 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Wed Sep 30 21:49:18 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b9f3e48 net-dns/bind: compile-fix for GeoIP builds Closes: https://bugs.gentoo.org/745759 Signed-off-by: Robin H. Johnson gentoo.org> net-dns/bind/bind-9.16.6-r3.ebuild | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/net-dns/bind/bind-9.16.6-r3.ebuild b/net-dns/bind/bind-9.16.6-r3.ebuild index ff2089ac70a..d23c253ecf1 100644 --- a/net-dns/bind/bind-9.16.6-r3.ebuild +++ b/net-dns/bind/bind-9.16.6-r3.ebuild @@ -152,11 +152,14 @@ bind_configure() { # This is for users to start to migrate back to USE=geoip, rather than # USE=geoip2 if use geoip ; then - myeconfargs+=( $(use_with geoip maxminddb) ) + myeconfargs+=( $(use_with geoip maxminddb) --enable-geoip ) elif use geoip2 ; then - myeconfargs+=( $(use_with geoip2 maxminddb) ) + # Added 2020/09/30 + # Remove USE=geoip2 support after 2020/03/01 + ewarn "USE=geoip2 is deprecated; update your USE flags!" + myeconfargs+=( $(use_with geoip2 maxminddb) --enable-geoip ) else - myeconfargs+=( --without-maxminddb ) + myeconfargs+=( --without-maxminddb --disable-geoip ) fi # bug #158664