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 3D3CE1381F3 for ; Tue, 24 Sep 2013 22:55:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C4295E0BF5; Tue, 24 Sep 2013 22:55:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5F4C6E0BF5 for ; Tue, 24 Sep 2013 22:55:39 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 50B2C33ED62 for ; Tue, 24 Sep 2013 22:55:38 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 06B0DE468F for ; Tue, 24 Sep 2013 22:55:37 +0000 (UTC) From: "Jory Pratt" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jory Pratt" Message-ID: <1380063296.bfb300777441f9e5de71c0d12d32615787fad940.anarchy@gentoo> Subject: [gentoo-commits] proj/mozilla:master commit in: dev-libs/jemalloc/ X-VCS-Repository: proj/mozilla X-VCS-Files: dev-libs/jemalloc/jemalloc-3.4.0.ebuild X-VCS-Directories: dev-libs/jemalloc/ X-VCS-Committer: anarchy X-VCS-Committer-Name: Jory Pratt X-VCS-Revision: bfb300777441f9e5de71c0d12d32615787fad940 X-VCS-Branch: master Date: Tue, 24 Sep 2013 22:55: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-Archives-Salt: c52dd7d1-c07c-49ca-af69-fdeb5bebf1bc X-Archives-Hash: 2205424a55d74d9b35c21134338e8167 commit: bfb300777441f9e5de71c0d12d32615787fad940 Author: Jory A. Pratt gentoo org> AuthorDate: Tue Sep 24 22:54:56 2013 +0000 Commit: Jory Pratt gentoo org> CommitDate: Tue Sep 24 22:54:56 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/mozilla.git;a=commit;h=bfb30077 Sync jemalloc with tree --- dev-libs/jemalloc/jemalloc-3.4.0.ebuild | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/dev-libs/jemalloc/jemalloc-3.4.0.ebuild b/dev-libs/jemalloc/jemalloc-3.4.0.ebuild index 5874024..68445fa 100644 --- a/dev-libs/jemalloc/jemalloc-3.4.0.ebuild +++ b/dev-libs/jemalloc/jemalloc-3.4.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/jemalloc/jemalloc-3.3.0.ebuild,v 1.2 2013/01/28 20:17:28 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/jemalloc/jemalloc-3.4.0.ebuild,v 1.1 2013/09/24 22:51:43 anarchy Exp $ EAPI=4 @@ -12,7 +12,7 @@ SRC_URI="http://www.canonware.com/download/${PN}/${P}.tar.bz2" LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~x86" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~x86 ~x64-macos" IUSE="debug static-libs stats" src_prepare() { @@ -35,5 +35,11 @@ src_install() { default dohtml doc/jemalloc.html + if [[ ${CHOST} == *-darwin* ]] ; then + # fixup install_name, #437362 + install_name_tool \ + -id "${EPREFIX}"/usr/$(get_libdir)/libjemalloc.1.dylib \ + "${ED}"/usr/$(get_libdir)/libjemalloc.1.dylib || die + fi use static-libs || find "${ED}" -name '*.a' -delete }