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 D3D86138350 for ; Thu, 12 Mar 2020 17:04:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1D451E093A; Thu, 12 Mar 2020 17:04:27 +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 F1D94E093A for ; Thu, 12 Mar 2020 17:04:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 ED92434EF8A for ; Thu, 12 Mar 2020 17:04:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8503C2B for ; Thu, 12 Mar 2020 17:04:24 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1584032657.756e6ca788ec65b8b43ce412b324b27d28a78419.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/nss-pem/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/nss-pem/nss-pem-1.0.5.ebuild X-VCS-Directories: dev-libs/nss-pem/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 756e6ca788ec65b8b43ce412b324b27d28a78419 X-VCS-Branch: master Date: Thu, 12 Mar 2020 17:04:24 +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: 7095f58b-434f-4ade-9197-ffe17a2a2cd0 X-Archives-Hash: 898bcfdf5b6858d39ea7a5247e95a8bb commit: 756e6ca788ec65b8b43ce412b324b27d28a78419 Author: Lars Wendler gentoo org> AuthorDate: Thu Mar 12 17:02:58 2020 +0000 Commit: Lars Wendler gentoo org> CommitDate: Thu Mar 12 17:04:17 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=756e6ca7 dev-libs/nss-pem: Fixed installation in multilib environment Closes: https://bugs.gentoo.org/712258 Package-Manager: Portage-2.3.93, Repoman-2.3.20 Signed-off-by: Lars Wendler gentoo.org> dev-libs/nss-pem/nss-pem-1.0.5.ebuild | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/dev-libs/nss-pem/nss-pem-1.0.5.ebuild b/dev-libs/nss-pem/nss-pem-1.0.5.ebuild index 0364f65447a..8c408455b23 100644 --- a/dev-libs/nss-pem/nss-pem-1.0.5.ebuild +++ b/dev-libs/nss-pem/nss-pem-1.0.5.ebuild @@ -3,6 +3,8 @@ EAPI=7 +CMAKE_ECLASS="cmake" + inherit cmake-multilib DESCRIPTION="PEM file reader for Network Security Services (NSS)" @@ -21,3 +23,10 @@ DEPEND="!<=dev-libs/nss-3.50 ${RDEPEND}" S="${WORKDIR}/${P}/src" + +multilib_src_configure() { + local mycmakeargs=( + -DLIB_INSTALL_DIR="$(get_libdir)" + ) + cmake_src_configure +}