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 13A301386AF for ; Fri, 21 Oct 2016 17:58:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C5ACAE0888; Fri, 21 Oct 2016 17:58:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A7FD1E0888 for ; Fri, 21 Oct 2016 17:58:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9FCB234168A for ; Fri, 21 Oct 2016 17:58:22 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9CA7C300 for ; Fri, 21 Oct 2016 17:58:20 +0000 (UTC) From: "Alon Bar-Lev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alon Bar-Lev" Message-ID: <1477072643.fb80dd5a2d4ef90e0401d408e6ed12f0d6e5cde4.alonbl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/crypto++/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/crypto++/crypto++-5.6.4-r3.ebuild dev-libs/crypto++/crypto++-5.6.4-r4.ebuild X-VCS-Directories: dev-libs/crypto++/ X-VCS-Committer: alonbl X-VCS-Committer-Name: Alon Bar-Lev X-VCS-Revision: fb80dd5a2d4ef90e0401d408e6ed12f0d6e5cde4 X-VCS-Branch: master Date: Fri, 21 Oct 2016 17:58:20 +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: 5c6425d3-3388-473f-92db-23f0f698c11a X-Archives-Hash: acb908926ba244ce8a03af1b9f67b349 commit: fb80dd5a2d4ef90e0401d408e6ed12f0d6e5cde4 Author: Alon Bar-Lev gentoo org> AuthorDate: Fri Oct 21 17:57:06 2016 +0000 Commit: Alon Bar-Lev gentoo org> CommitDate: Fri Oct 21 17:57:23 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb80dd5a dev-libs/crypto++: fix shared library on non intel Bug: 597514 .../crypto++/{crypto++-5.6.4-r3.ebuild => crypto++-5.6.4-r4.ebuild} | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev-libs/crypto++/crypto++-5.6.4-r3.ebuild b/dev-libs/crypto++/crypto++-5.6.4-r4.ebuild similarity index 95% rename from dev-libs/crypto++/crypto++-5.6.4-r3.ebuild rename to dev-libs/crypto++/crypto++-5.6.4-r4.ebuild index f19fedd..a119cd7 100644 --- a/dev-libs/crypto++/crypto++-5.6.4-r3.ebuild +++ b/dev-libs/crypto++/crypto++-5.6.4-r4.ebuild @@ -4,7 +4,7 @@ EAPI=6 -inherit cmake-multilib +inherit cmake-multilib flag-o-matic DESCRIPTION="C++ class library of cryptographic schemes" HOMEPAGE="http://cryptopp.com" @@ -20,6 +20,8 @@ DEPEND="app-arch/unzip" S="${WORKDIR}" src_configure() { + append-flags -fPIC # bug#597514 + local mycmakeargs=( -DBUILD_SHARED=ON -DBUILD_STATIC=$(usex static-libs ON $(usex test ON OFF))