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 BCBD1158090 for ; Tue, 3 May 2022 20:21:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DCEC0E076B; Tue, 3 May 2022 20:21:39 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 BD6A0E076B for ; Tue, 3 May 2022 20:21:39 +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 BF8843418DF for ; Tue, 3 May 2022 20:21:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 23FBF3BF for ; Tue, 3 May 2022 20:21:37 +0000 (UTC) From: "Alessandro Barbieri" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alessandro Barbieri" Message-ID: <1651609293.fc9580728b4fba5bc2b00416a7966d29b7a6ada4.Alessandro-Barbieri@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: sci-mathematics/minisatp/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sci-mathematics/minisatp/minisatp-0.1_p20121002.ebuild X-VCS-Directories: sci-mathematics/minisatp/ X-VCS-Committer: Alessandro-Barbieri X-VCS-Committer-Name: Alessandro Barbieri X-VCS-Revision: fc9580728b4fba5bc2b00416a7966d29b7a6ada4 X-VCS-Branch: dev Date: Tue, 3 May 2022 20:21:37 +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: 72c24783-2ed6-4b82-aabe-893817a501ff X-Archives-Hash: 7ab0174e82654a2cd8211fcfa6ffb679 commit: fc9580728b4fba5bc2b00416a7966d29b7a6ada4 Author: Alessandro Barbieri gmail com> AuthorDate: Tue May 3 18:02:03 2022 +0000 Commit: Alessandro Barbieri gmail com> CommitDate: Tue May 3 20:21:33 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fc958072 sci-mathematics/minisatp: fix rpath Closes: https://bugs.gentoo.org/842345 Signed-off-by: Alessandro Barbieri gmail.com> sci-mathematics/minisatp/minisatp-0.1_p20121002.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sci-mathematics/minisatp/minisatp-0.1_p20121002.ebuild b/sci-mathematics/minisatp/minisatp-0.1_p20121002.ebuild index ed2fa8bd3..fdba51c50 100644 --- a/sci-mathematics/minisatp/minisatp-0.1_p20121002.ebuild +++ b/sci-mathematics/minisatp/minisatp-0.1_p20121002.ebuild @@ -22,6 +22,7 @@ RDEPEND=" sys-libs/zlib " DEPEND="${RDEPEND}" +BDEPEND="app-admin/chrpath" PATCHES=( "${FILESDIR}/${PF}-find-gmp.patch" @@ -43,4 +44,6 @@ src_install() { dolib.so "${BUILD_DIR}/libminisatp.so.1" dolib.so "${BUILD_DIR}/libminisatp.so.1.1.0" dobin "${BUILD_DIR}/minisatp" + + chrpath -d "${ED}/usr/bin/minisat" || die }