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 79EF5198005 for ; Fri, 15 Mar 2013 09:30:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 78255E066E; Fri, 15 Mar 2013 09:30:18 +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 0F236E066E for ; Fri, 15 Mar 2013 09:30:17 +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 25A8033DB46 for ; Fri, 15 Mar 2013 09:30:17 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 81598E4079 for ; Fri, 15 Mar 2013 09:30:15 +0000 (UTC) From: "Alexey Shvetsov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexey Shvetsov" Message-ID: <1363339795.fa1afc31593c42a91ff3cbc04edbadf77c3568b6.alexxy@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-chemistry/gromacs/ X-VCS-Repository: proj/sci X-VCS-Files: sci-chemistry/gromacs/ChangeLog sci-chemistry/gromacs/gromacs-4.6.9999.ebuild X-VCS-Directories: sci-chemistry/gromacs/ X-VCS-Committer: alexxy X-VCS-Committer-Name: Alexey Shvetsov X-VCS-Revision: fa1afc31593c42a91ff3cbc04edbadf77c3568b6 X-VCS-Branch: master Date: Fri, 15 Mar 2013 09:30:15 +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: 6b4596d9-dcfd-4cee-9db1-187ec067cc72 X-Archives-Hash: 36fd7c13ba07ecf811278353cebd08dc commit: fa1afc31593c42a91ff3cbc04edbadf77c3568b6 Author: Alexey Shvetsov gentoo org> AuthorDate: Fri Mar 15 09:29:55 2013 +0000 Commit: Alexey Shvetsov gentoo org> CommitDate: Fri Mar 15 09:29:55 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=fa1afc31 Fix build with cuda enabled Package-Manager: portage-2.2.0_alpha166 --- sci-chemistry/gromacs/ChangeLog | 4 ++++ sci-chemistry/gromacs/gromacs-4.6.9999.ebuild | 2 +- 2 files changed, 5 insertions(+), 1 deletions(-) diff --git a/sci-chemistry/gromacs/ChangeLog b/sci-chemistry/gromacs/ChangeLog index bc0c784..f9bd96e 100644 --- a/sci-chemistry/gromacs/ChangeLog +++ b/sci-chemistry/gromacs/ChangeLog @@ -2,6 +2,10 @@ # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 15 Mar 2013; Alexey Shvetsov gromacs-4.6.9999.ebuild, + gromacs-9999.ebuild: + Fix build with cuda enabled + 10 Mar 2013; Christoph Junghans gromacs-4.6.9999.ebuild: added cuda build fix from gx86 diff --git a/sci-chemistry/gromacs/gromacs-4.6.9999.ebuild b/sci-chemistry/gromacs/gromacs-4.6.9999.ebuild index ca14997..552ffca 100644 --- a/sci-chemistry/gromacs/gromacs-4.6.9999.ebuild +++ b/sci-chemistry/gromacs/gromacs-4.6.9999.ebuild @@ -182,7 +182,7 @@ src_configure() { local p [[ ${x} = "double" ]] && p="-DGMX_DOUBLE=ON" || p="-DGMX_DOUBLE=OFF" local cuda=( "-DGMX_GPU=OFF" ) - [[ ${x} = "single" ]] && use cuda && \ + [[ ${x} = "float" ]] && use cuda && \ cuda=( -DGMX_GPU=ON -DCUDA_HOST_COMPILER_OPTIONS="${NVCCFLAGS}" ) mycmakeargs=( ${mycmakeargs_pre[@]} ${p} -DGMX_MPI=OFF $(cmake-utils_use threads GMX_THREAD_MPI) "${cuda[@]}" -DGMX_OPENMM=OFF