Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/glog/
Date: Sun, 29 Dec 2019 19:34:09
Message-Id: 1577647894.e7e7c080bf7e86752b96b882e4d7ede6db33409e.floppym@gentoo
1 commit: e7e7c080bf7e86752b96b882e4d7ede6db33409e
2 Author: Arfrever Frehtes Taifersar Arahesis <Arfrever <AT> Apache <DOT> Org>
3 AuthorDate: Mon Dec 23 21:06:33 2019 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 29 19:31:34 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7e7c080
7
8 dev-cpp/glog: Restore "gflags" USE flag.
9
10 Fixes: 928b17486c5c731485befc769175476ee877c6fb
11 Signed-off-by: Arfrever Frehtes Taifersar Arahesis <Arfrever <AT> Apache.Org>
12 Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
13
14 dev-cpp/glog/glog-0.4.0.ebuild | 10 ++++++----
15 1 file changed, 6 insertions(+), 4 deletions(-)
16
17 diff --git a/dev-cpp/glog/glog-0.4.0.ebuild b/dev-cpp/glog/glog-0.4.0.ebuild
18 index c5097b33e78..77e95ec572f 100644
19 --- a/dev-cpp/glog/glog-0.4.0.ebuild
20 +++ b/dev-cpp/glog/glog-0.4.0.ebuild
21 @@ -1,4 +1,4 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 +# Copyright 2011-2019 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 EAPI="7"
27 @@ -12,10 +12,11 @@ SRC_URI="https://github.com/google/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
28 LICENSE="BSD"
29 SLOT="0"
30 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
31 -IUSE="static-libs test"
32 +IUSE="gflags static-libs test"
33 RESTRICT="test"
34
35 -RDEPENDS="sys-libs/libunwind[${MULTILIB_USEDEP}]"
36 +RDEPENDS="sys-libs/libunwind[${MULTILIB_USEDEP}]
37 + gflags? ( dev-cpp/gflags[${MULTILIB_USEDEP}] )"
38 DEPEND="${RDEPEND}
39 test? ( >=dev-cpp/gtest-1.8.0[${MULTILIB_USEDEP}] )"
40
41 @@ -32,7 +33,8 @@ src_prepare() {
42
43 multilib_src_configure() {
44 ECONF_SOURCE="${S}" econf \
45 - $(use_enable static-libs static)
46 + $(use_enable static-libs static) \
47 + ac_cv_lib_gflags_main="$(usex gflags)"
48 }
49
50 multilib_src_install_all() {