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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B98D8158086 for ; Sun, 21 Nov 2021 22:35:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DF2B7E08F4; Sun, 21 Nov 2021 22:35:43 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 412D2E08F4 for ; Sun, 21 Nov 2021 22:35:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 994EE342BE0 for ; Sun, 21 Nov 2021 22:35:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 211E31C8 for ; Sun, 21 Nov 2021 22:35:39 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1637534136.834518e670c13f7ccfcf8bff134074f36f404930.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/pam_wrapper/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/pam_wrapper/pam_wrapper-1.1.3-r2.ebuild sys-libs/pam_wrapper/pam_wrapper-1.1.3-r3.ebuild X-VCS-Directories: sys-libs/pam_wrapper/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 834518e670c13f7ccfcf8bff134074f36f404930 X-VCS-Branch: master Date: Sun, 21 Nov 2021 22:35:39 +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: 53853892-6d64-4010-88ef-ad6675829ba4 X-Archives-Hash: b208ddae2da05322a46e5ffed40046c1 commit: 834518e670c13f7ccfcf8bff134074f36f404930 Author: Mike Gilbert gentoo org> AuthorDate: Sun Nov 21 22:32:49 2021 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Sun Nov 21 22:35:36 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=834518e6 sys-libs/pam_wrapper: let cmake find libpam pam_wrapper will still need to be rebuilt when libpam changes location, but at least this lets it work after a rebuild. Closes: https://bugs.gentoo.org/825078 Signed-off-by: Mike Gilbert gentoo.org> .../{pam_wrapper-1.1.3-r2.ebuild => pam_wrapper-1.1.3-r3.ebuild} | 8 -------- 1 file changed, 8 deletions(-) diff --git a/sys-libs/pam_wrapper/pam_wrapper-1.1.3-r2.ebuild b/sys-libs/pam_wrapper/pam_wrapper-1.1.3-r3.ebuild similarity index 87% rename from sys-libs/pam_wrapper/pam_wrapper-1.1.3-r2.ebuild rename to sys-libs/pam_wrapper/pam_wrapper-1.1.3-r3.ebuild index d2d118a5478a..d71310d9c7c2 100644 --- a/sys-libs/pam_wrapper/pam_wrapper-1.1.3-r2.ebuild +++ b/sys-libs/pam_wrapper/pam_wrapper-1.1.3-r3.ebuild @@ -33,10 +33,7 @@ DEPEND=" multilib_src_configure() { configure_for_python() { - local libpam="${EPREFIX}/$(get_libdir)/libpam.so.0" - local mycmakeargs=( - -DPAM_LIBRARY="${libpam}" -DUNIT_TESTING=OFF ) @@ -50,12 +47,7 @@ multilib_src_configure() { fi # Do the regular build now - local libpam="${EPREFIX}" - multilib_is_native_abi || libpam+="/usr" - libpam+="/$(get_libdir)/libpam.so.0" - local mycmakeargs=( - -DPAM_LIBRARY="${libpam}" -DUNIT_TESTING=$(usex test) -DCMAKE_DISABLE_FIND_PACKAGE_Python{Libs,Interp,SiteLibs}=ON )