From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 9830258973 for ; Thu, 28 Jan 2016 10:44:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9920721C001; Thu, 28 Jan 2016 10:44:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3F9B621C001 for ; Thu, 28 Jan 2016 10:44:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F2BFA34098F for ; Thu, 28 Jan 2016 10:44:33 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B386B842 for ; Thu, 28 Jan 2016 10:44:31 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1453977869.1f67abae389ea963151bc15e727d5a5055321155.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/czmq/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/czmq/czmq-3.0.2.ebuild X-VCS-Directories: net-libs/czmq/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 1f67abae389ea963151bc15e727d5a5055321155 X-VCS-Branch: master Date: Thu, 28 Jan 2016 10:44:31 +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: 498242c2-dd5f-486d-8ae3-9c9752dc8bb9 X-Archives-Hash: 7716801360645e5e28feab9163ed597a commit: 1f67abae389ea963151bc15e727d5a5055321155 Author: Justin Lecher gentoo org> AuthorDate: Thu Jan 28 10:40:35 2016 +0000 Commit: Justin Lecher gentoo org> CommitDate: Thu Jan 28 10:44:29 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f67abae net-libs/czmq: Fix creation of manpages fix underlinking detected by ld.gold Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=572862 Package-Manager: portage-2.2.27 Signed-off-by: Justin Lecher gentoo.org> net-libs/czmq/czmq-3.0.2.ebuild | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/net-libs/czmq/czmq-3.0.2.ebuild b/net-libs/czmq/czmq-3.0.2.ebuild index b0d1819..7a85625 100644 --- a/net-libs/czmq/czmq-3.0.2.ebuild +++ b/net-libs/czmq/czmq-3.0.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -8,7 +8,7 @@ AUTOTOOLS_AUTORECONF=true inherit autotools-utils -DESCRIPTION=" High-level C Binding for ZeroMQ" +DESCRIPTION="High-level C Binding for ZeroMQ" HOMEPAGE="http://czmq.zeromq.org" SRC_URI="http://download.zeromq.org/${P}.tar.gz" @@ -22,10 +22,9 @@ RDEPEND=" net-libs/zeromq " DEPEND="${RDEPEND} - doc? ( - app-text/asciidoc - app-text/xmlto - )" + app-text/asciidoc + app-text/xmlto +" DOCS=( NEWS AUTHORS ) @@ -35,6 +34,11 @@ RESTRICT=test src_prepare() { use test && AUTOTOOLS_IN_SOURCE_BUILD=1 sed -i -e 's|-Werror||g' configure.ac || die + + cat >> src/Makemodule-local.am <<-EOF + src_libczmq_la_LDFLAGS += -pthread + EOF + autotools-utils_src_prepare }