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 57DAB13832E for ; Tue, 19 Jul 2016 18:49:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3020F21C08E; Tue, 19 Jul 2016 18:49:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B29C921C08E for ; Tue, 19 Jul 2016 18:49:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 71752340C3C for ; Tue, 19 Jul 2016 18:49:20 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 005117CB for ; Tue, 19 Jul 2016 18:49:18 +0000 (UTC) From: "Ian Stakenvicius" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ian Stakenvicius" Message-ID: <1468953136.d3bb7a04b04600e1531e82bc9623d05ba05e5651.axs@gentoo> Subject: [gentoo-commits] proj/mozilla:master commit in: www-client/seamonkey/ X-VCS-Repository: proj/mozilla X-VCS-Files: www-client/seamonkey/seamonkey-2.42.2.0_p0.ebuild X-VCS-Directories: www-client/seamonkey/ X-VCS-Committer: axs X-VCS-Committer-Name: Ian Stakenvicius X-VCS-Revision: d3bb7a04b04600e1531e82bc9623d05ba05e5651 X-VCS-Branch: master Date: Tue, 19 Jul 2016 18:49:18 +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: 1fee60e5-0551-4316-8426-cfab3d0933bc X-Archives-Hash: 04cc47fb2a8e5104c34972908c921499 commit: d3bb7a04b04600e1531e82bc9623d05ba05e5651 Author: Ian Stakenvicius gentoo org> AuthorDate: Tue Jul 19 18:30:07 2016 +0000 Commit: Ian Stakenvicius gentoo org> CommitDate: Tue Jul 19 18:32:16 2016 +0000 URL: https://gitweb.gentoo.org/proj/mozilla.git/commit/?id=d3bb7a04 seamonkey-2.42.2.0 - forced LD_DEBUG output on xpcshell call, for LD_LIBRARY_PATH related install failure www-client/seamonkey/seamonkey-2.42.2.0_p0.ebuild | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/www-client/seamonkey/seamonkey-2.42.2.0_p0.ebuild b/www-client/seamonkey/seamonkey-2.42.2.0_p0.ebuild index 5a752e1..0da02e4 100644 --- a/www-client/seamonkey/seamonkey-2.42.2.0_p0.ebuild +++ b/www-client/seamonkey/seamonkey-2.42.2.0_p0.ebuild @@ -298,11 +298,29 @@ src_install() { if ! use gmp-autoupdate ; then for plugin in gmp-gmpopenh264 ; do echo "pref(\"media.${plugin}.autoupdate\", false);" >> \ - "${S}/${BUILD_OBJ_DIR}/dist/bin/browser/defaults/preferences/all-gentoo.js" \ + "${BUILD_OBJ_DIR}/dist/bin/browser/defaults/preferences/all-gentoo.js" \ || dir done fi + # DEBUGGING xpcshell libxul error + cat <"${BUILD_OBJ_DIR}"/dist/bin/xpcshell.sh +#!/bin/bash +echo "****** XPCSHELL CALLING ENVIRONMENT:" +env +echo "****** STAT XPCSHELL:" +stat ${BUILD_OBJ_DIR}/dist/bin/xpcshell +echo "****** MOUNTINFO:" +cat /proc/self/mountinfo +echo "****** XPCSHELL COMMAND CALL WITH LD_DEBUG:" +export LD_DEBUG=all +exec ${BUILD_OBJ_DIR}/dist/bin/xpcshell "\$@" +EOF + chmod +x "${BUILD_OBJ_DIR}"/dist/bin/xpcshell.sh + sed -i -e '/launcher.launch/s/xpcshell/xpcshell.sh/' \ + "${S}"/mozilla/toolkit/mozapps/installer/packager.py || die + + MOZ_MAKE_FLAGS="${MAKEOPTS}" \ emake DESTDIR="${D}" install cp "${FILESDIR}"/${PN}.desktop "${T}" || die