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 C431F138334 for ; Sun, 29 Dec 2019 19:34:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 67DF3E0A85; Sun, 29 Dec 2019 19:34:07 +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 C50E5E0A87 for ; Sun, 29 Dec 2019 19:34:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 4F03E34DCFB for ; Sun, 29 Dec 2019 19:34:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D1AC888 for ; Sun, 29 Dec 2019 19:34:00 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1577647894.e7e7c080bf7e86752b96b882e4d7ede6db33409e.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/glog/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-cpp/glog/glog-0.4.0.ebuild X-VCS-Directories: dev-cpp/glog/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: e7e7c080bf7e86752b96b882e4d7ede6db33409e X-VCS-Branch: master Date: Sun, 29 Dec 2019 19:34:00 +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: 87b5ae68-d0f5-4ad9-a49b-661f40d67325 X-Archives-Hash: bb71784157258455746506a272c20d0c commit: e7e7c080bf7e86752b96b882e4d7ede6db33409e Author: Arfrever Frehtes Taifersar Arahesis Apache Org> AuthorDate: Mon Dec 23 21:06:33 2019 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Sun Dec 29 19:31:34 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7e7c080 dev-cpp/glog: Restore "gflags" USE flag. Fixes: 928b17486c5c731485befc769175476ee877c6fb Signed-off-by: Arfrever Frehtes Taifersar Arahesis Apache.Org> Signed-off-by: Mike Gilbert gentoo.org> dev-cpp/glog/glog-0.4.0.ebuild | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/dev-cpp/glog/glog-0.4.0.ebuild b/dev-cpp/glog/glog-0.4.0.ebuild index c5097b33e78..77e95ec572f 100644 --- a/dev-cpp/glog/glog-0.4.0.ebuild +++ b/dev-cpp/glog/glog-0.4.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 2011-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="7" @@ -12,10 +12,11 @@ SRC_URI="https://github.com/google/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux" -IUSE="static-libs test" +IUSE="gflags static-libs test" RESTRICT="test" -RDEPENDS="sys-libs/libunwind[${MULTILIB_USEDEP}]" +RDEPENDS="sys-libs/libunwind[${MULTILIB_USEDEP}] + gflags? ( dev-cpp/gflags[${MULTILIB_USEDEP}] )" DEPEND="${RDEPEND} test? ( >=dev-cpp/gtest-1.8.0[${MULTILIB_USEDEP}] )" @@ -32,7 +33,8 @@ src_prepare() { multilib_src_configure() { ECONF_SOURCE="${S}" econf \ - $(use_enable static-libs static) + $(use_enable static-libs static) \ + ac_cv_lib_gflags_main="$(usex gflags)" } multilib_src_install_all() {