diff options
author | Christoph Junghans <ottxor@gentoo.org> | 2013-06-28 01:30:51 +0000 |
---|---|---|
committer | Christoph Junghans <ottxor@gentoo.org> | 2013-06-28 01:30:51 +0000 |
commit | 18fb56af7fa50acfaadb6da29f5a02ea22c0738c (patch) | |
tree | 2341565d8c8b78512a88ac1c268b4806dd4bc394 /sci-libs | |
parent | vanilla-3.9.7 genpatches-3.9-12 + grsecurity-2.9.1-3.9.7-201306261901 (diff) | |
download | gentoo-2-18fb56af7fa50acfaadb6da29f5a02ea22c0738c.tar.gz gentoo-2-18fb56af7fa50acfaadb6da29f5a02ea22c0738c.tar.bz2 gentoo-2-18fb56af7fa50acfaadb6da29f5a02ea22c0738c.zip |
fixed install of plugins, too
(Portage version: 2.2.0_alpha185/cvs/Linux x86_64, signed Manifest commit with key C2000586)
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/openmm/ChangeLog | 6 | ||||
-rw-r--r-- | sci-libs/openmm/openmm-5.0.1-r2.ebuild | 8 | ||||
-rw-r--r-- | sci-libs/openmm/openmm-5.1-r2.ebuild | 8 |
3 files changed, 15 insertions, 7 deletions
diff --git a/sci-libs/openmm/ChangeLog b/sci-libs/openmm/ChangeLog index b713fa76283d..9665960f98a0 100644 --- a/sci-libs/openmm/ChangeLog +++ b/sci-libs/openmm/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-libs/openmm # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/openmm/ChangeLog,v 1.13 2013/06/28 00:29:18 ottxor Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/openmm/ChangeLog,v 1.14 2013/06/28 01:30:51 ottxor Exp $ + + 28 Jun 2013; Christoph Junghans <ottxor@gentoo.org> openmm-5.0.1-r2.ebuild, + openmm-5.1-r2.ebuild: + fixed install of plugins, too 28 Jun 2013; Christoph Junghans <ottxor@gentoo.org> openmm-5.0.1-r2.ebuild, openmm-5.1-r2.ebuild: diff --git a/sci-libs/openmm/openmm-5.0.1-r2.ebuild b/sci-libs/openmm/openmm-5.0.1-r2.ebuild index f66797129dd7..015ef636c296 100644 --- a/sci-libs/openmm/openmm-5.0.1-r2.ebuild +++ b/sci-libs/openmm/openmm-5.0.1-r2.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/sci-libs/openmm/openmm-5.0.1-r2.ebuild,v 1.2 2013/06/28 00:29:18 ottxor Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/openmm/openmm-5.0.1-r2.ebuild,v 1.3 2013/06/28 01:30:51 ottxor Exp $ EAPI="5" @@ -35,8 +35,10 @@ src_prepare() { use cuda && cuda_src_prepare #475002 - find . -name CMakeLists.txt -exec sed -i -e \ - "/INSTALL/s@\(DESTINATION\|RUNTIME\)\(.*\)lib@\1\2$(get_libdir)@" {} + || die + find . -name CMakeLists.txt -exec sed -i \ + -e "/INSTALL/s@\(DESTINATION\|RUNTIME\)\(.*\)lib@\1\2$(get_libdir)@" \ + -e "/INSTALL_TARGETS/s@lib\(.*RUNTIME\)@$(get_libdir)\1@" \ + {} + || die default } diff --git a/sci-libs/openmm/openmm-5.1-r2.ebuild b/sci-libs/openmm/openmm-5.1-r2.ebuild index b2aa6b9fe778..0eff57d31804 100644 --- a/sci-libs/openmm/openmm-5.1-r2.ebuild +++ b/sci-libs/openmm/openmm-5.1-r2.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/sci-libs/openmm/openmm-5.1-r2.ebuild,v 1.2 2013/06/28 00:29:18 ottxor Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/openmm/openmm-5.1-r2.ebuild,v 1.3 2013/06/28 01:30:51 ottxor Exp $ EAPI="5" @@ -35,8 +35,10 @@ src_prepare() { use cuda && cuda_src_prepare #475002 - find . -name CMakeLists.txt -exec sed -i -e \ - "/INSTALL/s@\(DESTINATION\|RUNTIME\)\(.*\)lib@\1\2$(get_libdir)@" {} + || die + find . -name CMakeLists.txt -exec sed -i \ + -e "/INSTALL/s@\(DESTINATION\|RUNTIME\)\(.*\)lib@\1\2$(get_libdir)@" \ + -e "/INSTALL_TARGETS/s@lib\(.*RUNTIME\)@$(get_libdir)\1@" \ + {} + || die default } |