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 533FF138334 for ; Sun, 2 Jun 2019 09:15:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 55D62E07D4; Sun, 2 Jun 2019 09:15:24 +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 2B032E07D8 for ; Sun, 2 Jun 2019 09:15:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 51CD4345104 for ; Sun, 2 Jun 2019 09:15:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B4F2557B for ; Sun, 2 Jun 2019 09:15:19 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1559466908.e69f4ec1ce6dfd58a333517cb6d696512303fc38.grobian@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/perl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/perl/perl-5.30.0.ebuild X-VCS-Directories: dev-lang/perl/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: e69f4ec1ce6dfd58a333517cb6d696512303fc38 X-VCS-Branch: master Date: Sun, 2 Jun 2019 09:15:19 +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: 010cc186-186c-4b91-ac36-4a99091fa605 X-Archives-Hash: 213c892f6b735e1f4e25771d96affe29 commit: e69f4ec1ce6dfd58a333517cb6d696512303fc38 Author: Fabian Groffen gentoo org> AuthorDate: Sun Jun 2 09:14:14 2019 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Sun Jun 2 09:15:08 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e69f4ec1 dev-lang/perl: fix install on Darwin, bug #684030 Closes: https://bugs.gentoo.org/684030 Package-Manager: Portage-2.3.62-prefix, Repoman-2.3.13 Signed-off-by: Fabian Groffen gentoo.org> dev-lang/perl/perl-5.30.0.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev-lang/perl/perl-5.30.0.ebuild b/dev-lang/perl/perl-5.30.0.ebuild index f16a51d1a1a..8f0c0cb48d1 100644 --- a/dev-lang/perl/perl-5.30.0.ebuild +++ b/dev-lang/perl/perl-5.30.0.ebuild @@ -338,6 +338,11 @@ src_prepare() { sed -i -e 's/netbsd\*/netbsd*|solaris*/' Makefile.SH || die fi + if [[ ${CHOST} == *-darwin* ]] ; then + # fix install_name (soname) not to reference $D + sed -i -e '/install_name `pwd/s/`pwd`/\\$(shrpdir)/' Makefile.SH || die + fi + default }