From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1SLOQk-0007MM-4Q for garchives@archives.gentoo.org; Sat, 21 Apr 2012 00:44:02 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3E31BE08D2; Sat, 21 Apr 2012 00:43:55 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 0F904E08D1 for ; Sat, 21 Apr 2012 00:43: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 608C61B40D0 for ; Sat, 21 Apr 2012 00:43:54 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 2804BE5403 for ; Sat, 21 Apr 2012 00:43:53 +0000 (UTC) From: "Justin Bronder" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Bronder" Message-ID: <1334961689.9a1ce8ac96b6f889a1da7c5bcc610e2e8355b4c9.jsbronder@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sys-cluster/mpich2/ X-VCS-Repository: proj/sci X-VCS-Files: sys-cluster/mpich2/ChangeLog sys-cluster/mpich2/mpich2-1.4.1_p1.ebuild X-VCS-Directories: sys-cluster/mpich2/ X-VCS-Committer: jsbronder X-VCS-Committer-Name: Justin Bronder X-VCS-Revision: 9a1ce8ac96b6f889a1da7c5bcc610e2e8355b4c9 X-VCS-Branch: master Date: Sat, 21 Apr 2012 00:43:53 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: b90edbfa-89f9-42ca-9314-e617360c3af7 X-Archives-Hash: 1764525ef982b34c6677b61969fed87c commit: 9a1ce8ac96b6f889a1da7c5bcc610e2e8355b4c9 Author: Justin Bronder gentoo org> AuthorDate: Fri Apr 20 22:41:29 2012 +0000 Commit: Justin Bronder gentoo org> CommitDate: Fri Apr 20 22:41:29 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/sci.git;a=3Dc= ommit;h=3D9a1ce8ac Fix docdir for prefix. Thanks to Robert McGehee for reporting. (Portage version: 2.1.10.11/git/Linux x86_64, signed Manifest commit with= key 4D7043C9) --- sys-cluster/mpich2/ChangeLog | 3 +++ sys-cluster/mpich2/mpich2-1.4.1_p1.ebuild | 9 +++++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/sys-cluster/mpich2/ChangeLog b/sys-cluster/mpich2/ChangeLog index a56b0e4..39cb67f 100644 --- a/sys-cluster/mpich2/ChangeLog +++ b/sys-cluster/mpich2/ChangeLog @@ -2,6 +2,9 @@ # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ =20 + 20 Apr 2012; Justin Bronder mpich2-1.4.1_p1.ebu= ild: + Fix docdir for prefix. Thanks to Robert McGehee for reporting. + 07 Mar 2012; Justin Bronder mpich2-1.4.1_p1.ebu= ild, metadata.xml: Enable all fortran with single USE flag, fix license. diff --git a/sys-cluster/mpich2/mpich2-1.4.1_p1.ebuild b/sys-cluster/mpic= h2/mpich2-1.4.1_p1.ebuild index 95c85ed..0a3903e 100644 --- a/sys-cluster/mpich2/mpich2-1.4.1_p1.ebuild +++ b/sys-cluster/mpich2/mpich2-1.4.1_p1.ebuild @@ -108,9 +108,14 @@ src_configure() { c=3D"${c} --enable-threads=3Dsingle" fi =20 - ! mpi_classed && c=3D"${c} --sysconfdir=3D${EPREFIX}/etc/${PN}" + if ! mpi_classed; then + c=3D"${c} --sysconfdir=3D${EPREFIX}/etc/${PN}" + c=3D"${c} --docdir=3D${EPREFIX}/usr/share/doc/${PF}" + else + c=3D"${c} --docdir=3D$(mpi_root)/usr/share/doc/${PF}" + fi + econf $(mpi_econf_args) ${c} ${romio_conf} \ - --docdir=3D$(mpi_root)/usr/share/doc/${PF} \ --with-pm=3Dhydra \ --disable-mpe \ --with-hwloc-prefix=3D"${EPREFIX}/usr" \