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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5317E158086 for ; Fri, 29 Oct 2021 16:50:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A4A1BE0824; Fri, 29 Oct 2021 16:50:19 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3949DE0824 for ; Fri, 29 Oct 2021 16:50:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2F955343132 for ; Fri, 29 Oct 2021 16:50:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B8C7F144 for ; Fri, 29 Oct 2021 16:50:16 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1635526203.27705d180ffd4c6c1fe1f4bc040563b72e052320.blueness@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/ipv6calc/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/ipv6calc/ipv6calc-4.0.0.ebuild X-VCS-Directories: net-misc/ipv6calc/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 27705d180ffd4c6c1fe1f4bc040563b72e052320 X-VCS-Branch: master Date: Fri, 29 Oct 2021 16:50:16 +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: 19a6f0de-8e5e-4f11-908b-40786645e3ec X-Archives-Hash: 48aab0844c8ccba56ee557e21a0f0d7d commit: 27705d180ffd4c6c1fe1f4bc040563b72e052320 Author: Anthony G. Basile gentoo org> AuthorDate: Fri Oct 29 16:50:03 2021 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Fri Oct 29 16:50:03 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27705d18 net-misc/ipv6calc: add USE=cgi to build web interface Closes: https://bugs.gentoo.org/820584 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Anthony G. Basile gentoo.org> net-misc/ipv6calc/ipv6calc-4.0.0.ebuild | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/net-misc/ipv6calc/ipv6calc-4.0.0.ebuild b/net-misc/ipv6calc/ipv6calc-4.0.0.ebuild index 42eca99cbb1..15e5f6214b2 100644 --- a/net-misc/ipv6calc/ipv6calc-4.0.0.ebuild +++ b/net-misc/ipv6calc/ipv6calc-4.0.0.ebuild @@ -10,10 +10,14 @@ SRC_URI="https://github.com/pbiering/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" -IUSE="geoip test" +IUSE="cgi geoip test" RESTRICT="!test? ( test )" RDEPEND=" + cgi? ( + dev-perl/URI + dev-perl/Digest-SHA1 + ) dev-libs/openssl:= geoip? ( >=dev-libs/geoip-1.4.7 ) " @@ -21,8 +25,6 @@ DEPEND="${RDEPEND} test? ( dev-perl/Digest-SHA1 ) " -#dev-perl/URI is needed for web interface, that is not installed now - src_configure() { # These options are broken. You can't disable them. That's # okay because we want then force enabled. @@ -44,6 +46,7 @@ src_configure() { --disable-dbip2 \ --disable-external \ --disable-ip2location \ + $(use_enable cgi mod_ipv6calc ) \ ${myconf} }