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 EEEC41396D0 for ; Wed, 27 Sep 2017 06:26:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 46429E0D90; Wed, 27 Sep 2017 06:26:24 +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 22D30E0D90 for ; Wed, 27 Sep 2017 06:26: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 0F9E6341130 for ; Wed, 27 Sep 2017 06:26:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 709BA9083 for ; Wed, 27 Sep 2017 06:26:21 +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: <1506493424.5b10e387f08d002da5eae39ed70b28386bdee7fd.blueness@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-vpn/i2pd/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-vpn/i2pd/i2pd-2.15.0.ebuild X-VCS-Directories: net-vpn/i2pd/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 5b10e387f08d002da5eae39ed70b28386bdee7fd X-VCS-Branch: master Date: Wed, 27 Sep 2017 06:26:21 +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-Archives-Salt: 0addb11c-809c-4e6e-a849-1b6b1aa152a7 X-Archives-Hash: 72f53d68c26845b3795f893a82ed4d88 commit: 5b10e387f08d002da5eae39ed70b28386bdee7fd Author: Alexey Korepanov yandex ru> AuthorDate: Tue Sep 26 18:50:40 2017 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Wed Sep 27 06:23:44 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b10e387 net-vpn/i2pd: drop pch use flag net-vpn/i2pd/i2pd-2.15.0.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net-vpn/i2pd/i2pd-2.15.0.ebuild b/net-vpn/i2pd/i2pd-2.15.0.ebuild index e1cd433f275..4dbcc37bd00 100644 --- a/net-vpn/i2pd/i2pd-2.15.0.ebuild +++ b/net-vpn/i2pd/i2pd-2.15.0.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://github.com/PurpleI2P/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~arm ~x86" -IUSE="cpu_flags_x86_aes i2p-hardening libressl pch static +upnp websocket" +IUSE="cpu_flags_x86_aes i2p-hardening libressl static +upnp websocket" RDEPEND="!static? ( >=dev-libs/boost-1.49[threads] !libressl? ( dev-libs/openssl:0[-bindist] ) @@ -39,7 +39,7 @@ src_configure() { mycmakeargs=( -DWITH_AESNI=$(usex cpu_flags_x86_aes ON OFF) -DWITH_HARDENING=$(usex i2p-hardening ON OFF) - -DWITH_PCH=$(usex pch ON OFF) + -DWITH_PCH=OFF -DWITH_STATIC=$(usex static ON OFF) -DWITH_UPNP=$(usex upnp ON OFF) -DWITH_WEBSOCKETS=$(usex websocket ON OFF)