From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id CFD151388BF for ; Thu, 14 Jan 2016 12:44:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 63001E0825; Thu, 14 Jan 2016 12:44:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0F93AE0825 for ; Thu, 14 Jan 2016 12:43:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EB1E3340775 for ; Thu, 14 Jan 2016 12:43:58 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0E6FFC89 for ; Thu, 14 Jan 2016 12:43:55 +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: <1452775424.67fa138e34ed1681e009c4e8ab99b017ae57afe5.grobian@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/help2man/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/help2man/help2man-1.47.3.ebuild X-VCS-Directories: sys-apps/help2man/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 67fa138e34ed1681e009c4e8ab99b017ae57afe5 X-VCS-Branch: master Date: Thu, 14 Jan 2016 12:43:55 +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: bcc91f36-037d-43fa-864a-bf46e9db4f1a X-Archives-Hash: 0e748aecfda8265db2c24604492d5f4b commit: 67fa138e34ed1681e009c4e8ab99b017ae57afe5 Author: Fabian Groffen gentoo org> AuthorDate: Thu Jan 14 12:42:30 2016 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Thu Jan 14 12:43:44 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67fa138e sys-apps/help2man: fix installation on Darwin Package-Manager: portage-2.2.20-prefix sys-apps/help2man/help2man-1.47.3.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sys-apps/help2man/help2man-1.47.3.ebuild b/sys-apps/help2man/help2man-1.47.3.ebuild index c9efdba..9cdd157 100644 --- a/sys-apps/help2man/help2man-1.47.3.ebuild +++ b/sys-apps/help2man/help2man-1.47.3.ebuild @@ -21,6 +21,11 @@ DEPEND=${RDEPEND} DOCS="debian/changelog NEWS README THANKS" #385753 src_prepare() { + if [[ ${CHOST} == *-darwin* ]] ; then + sed -i \ + -e 's/-shared/-bundle/' \ + Makefile.in || die + fi epatch \ "${FILESDIR}"/${PN}-1.46.1-linguas.patch }