summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Bronder <jsbronder@gentoo.org>2012-11-02 05:32:01 +0000
committerJustin Bronder <jsbronder@gentoo.org>2012-11-02 05:32:01 +0000
commit80d00d8928d28886962c9b7e4f3e9eb231789920 (patch)
tree58451caaca4f3e2be542745b7158ee1a22359b0d /dev-cpp
parentFix #371647, no response from maintainer since Oct 17. (diff)
downloadgentoo-2-80d00d8928d28886962c9b7e4f3e9eb231789920.tar.gz
gentoo-2-80d00d8928d28886962c9b7e4f3e9eb231789920.tar.bz2
gentoo-2-80d00d8928d28886962c9b7e4f3e9eb231789920.zip
Resolve #361703 by enabling threads unconditionally.
(Portage version: 2.1.11.30/cvs/Linux x86_64, signed Manifest commit with key 4D7043C9)
Diffstat (limited to 'dev-cpp')
-rw-r--r--dev-cpp/gtest/ChangeLog5
-rw-r--r--dev-cpp/gtest/gtest-1.6.0-r1.ebuild7
2 files changed, 7 insertions, 5 deletions
diff --git a/dev-cpp/gtest/ChangeLog b/dev-cpp/gtest/ChangeLog
index 0fc2564a28a2..2ae115895c44 100644
--- a/dev-cpp/gtest/ChangeLog
+++ b/dev-cpp/gtest/ChangeLog
@@ -1,5 +1,8 @@
# ChangeLog for dev-cpp/gtest
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtest/ChangeLog,v 1.15 2012/11/02 05:09:23 jsbronder Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtest/ChangeLog,v 1.16 2012/11/02 05:32:01 jsbronder Exp $
+
+ 02 Nov 2012; Justin Bronder <jsbronder@gentoo.org> gtest-1.6.0-r1.ebuild:
+ Resolve #361703 by enabling threads unconditionally.
*gtest-1.6.0-r1 (02 Nov 2012)
diff --git a/dev-cpp/gtest/gtest-1.6.0-r1.ebuild b/dev-cpp/gtest/gtest-1.6.0-r1.ebuild
index 9907f6617a64..9fe5e7dab6e4 100644
--- a/dev-cpp/gtest/gtest-1.6.0-r1.ebuild
+++ b/dev-cpp/gtest/gtest-1.6.0-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtest/gtest-1.6.0-r1.ebuild,v 1.1 2012/11/02 05:09:23 jsbronder Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtest/gtest-1.6.0-r1.ebuild,v 1.2 2012/11/02 05:32:01 jsbronder Exp $
EAPI="4"
PYTHON_DEPEND="2"
@@ -14,7 +14,7 @@ SRC_URI="http://googletest.googlecode.com/files/${P}.zip"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~ppc-macos"
-IUSE="examples threads static-libs"
+IUSE="examples static-libs"
DEPEND="app-arch/unzip"
RDEPEND=""
@@ -37,8 +37,7 @@ src_prepare() {
src_configure() {
econf \
- $(use_enable static-libs static) \
- $(use_with threads pthreads)
+ $(use_enable static-libs static)
}
src_test() {