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 D3D58198003 for ; Sat, 9 Mar 2013 01:48:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8E9F2E064B; Sat, 9 Mar 2013 01:48:55 +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 09CA7E064B for ; Sat, 9 Mar 2013 01:48:54 +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 F228F33E078 for ; Sat, 9 Mar 2013 01:48:53 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 69496E408F for ; Sat, 9 Mar 2013 01:48:51 +0000 (UTC) From: "Christoph Junghans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Christoph Junghans" Message-ID: <1362793710.6027a394862c98038f5253db95c8f1c9541b5321.ottxor@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-chemistry/votca-csg/ X-VCS-Repository: proj/sci X-VCS-Files: sci-chemistry/votca-csg/ChangeLog sci-chemistry/votca-csg/votca-csg-9999.ebuild X-VCS-Directories: sci-chemistry/votca-csg/ X-VCS-Committer: ottxor X-VCS-Committer-Name: Christoph Junghans X-VCS-Revision: 6027a394862c98038f5253db95c8f1c9541b5321 X-VCS-Branch: master Date: Sat, 9 Mar 2013 01:48:51 +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: 20380954-9302-4711-aa09-b9a7b01046ca X-Archives-Hash: d74777c0cb77e25e7abbe327e9059631 commit: 6027a394862c98038f5253db95c8f1c9541b5321 Author: Christoph Junghans gentoo org> AuthorDate: Sat Mar 9 01:48:30 2013 +0000 Commit: Christoph Junghans gentoo org> CommitDate: Sat Mar 9 01:48:30 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=6027a394 fix doc build on darwin Package-Manager: portage-2.2.0_alpha166 --- sci-chemistry/votca-csg/ChangeLog | 3 +++ sci-chemistry/votca-csg/votca-csg-9999.ebuild | 4 +++- 2 files changed, 6 insertions(+), 1 deletions(-) diff --git a/sci-chemistry/votca-csg/ChangeLog b/sci-chemistry/votca-csg/ChangeLog index 0e965ae..c290cab 100644 --- a/sci-chemistry/votca-csg/ChangeLog +++ b/sci-chemistry/votca-csg/ChangeLog @@ -2,6 +2,9 @@ # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 09 Mar 2013; Christoph Junghans votca-csg-9999.ebuild: + fix doc build on darwin + 30 Jan 2013; Christoph Junghans votca-csg-9999.ebuild: clean up + merge csg-{manual,tutorials} diff --git a/sci-chemistry/votca-csg/votca-csg-9999.ebuild b/sci-chemistry/votca-csg/votca-csg-9999.ebuild index 2a3c943..8c6d904 100644 --- a/sci-chemistry/votca-csg/votca-csg-9999.ebuild +++ b/sci-chemistry/votca-csg/votca-csg-9999.ebuild @@ -89,7 +89,9 @@ src_install() { if use doc; then if [[ ${PV} = *9999* ]]; then pushd "${WORKDIR}"/manual - emake PATH="${PATH}:${ED}/usr/bin" + [[ ${CHOST} = *-darwin* ]] && \ + export DYLD_LIBRARY_PATH="${DYLD_LIBRARY_PATH}${DYLD_LIBRARY_PATH:+:}${ED}/usr/$(get_libdir)" + emake PATH="${PATH}${PATH:+:}${ED}/usr/bin" newdoc manual.pdf "${PN}-manual-${PV}.pdf" popd > /dev/null else