diff options
author | Justin Lecher <jlec@gentoo.org> | 2014-03-06 10:26:48 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2014-03-06 10:26:48 +0000 |
commit | 8c455dc67e57ad8bd34c246042705577af312b23 (patch) | |
tree | 2a5c0d3b4fae44270917c7afb2c0d3183fd65c7d /sci-chemistry | |
parent | Stable for ppc64, wrt bug #500298 (diff) | |
download | gentoo-2-8c455dc67e57ad8bd34c246042705577af312b23.tar.gz gentoo-2-8c455dc67e57ad8bd34c246042705577af312b23.tar.bz2 gentoo-2-8c455dc67e57ad8bd34c246042705577af312b23.zip |
sci-chemistry/relax: Version Bump
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Diffstat (limited to 'sci-chemistry')
-rw-r--r-- | sci-chemistry/relax/ChangeLog | 7 | ||||
-rw-r--r-- | sci-chemistry/relax/relax-3.1.6.ebuild | 70 |
2 files changed, 76 insertions, 1 deletions
diff --git a/sci-chemistry/relax/ChangeLog b/sci-chemistry/relax/ChangeLog index 62dc3bb87553..8f34d505a7ce 100644 --- a/sci-chemistry/relax/ChangeLog +++ b/sci-chemistry/relax/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-chemistry/relax # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/relax/ChangeLog,v 1.19 2014/02/05 10:59:15 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/relax/ChangeLog,v 1.20 2014/03/06 10:26:48 jlec Exp $ + +*relax-3.1.6 (06 Mar 2014) + + 06 Mar 2014; Justin Lecher <jlec@gentoo.org> +relax-3.1.6.ebuild: + Version Bump *relax-3.1.5 (05 Feb 2014) diff --git a/sci-chemistry/relax/relax-3.1.6.ebuild b/sci-chemistry/relax/relax-3.1.6.ebuild new file mode 100644 index 000000000000..21a4215392d9 --- /dev/null +++ b/sci-chemistry/relax/relax-3.1.6.ebuild @@ -0,0 +1,70 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/relax/relax-3.1.6.ebuild,v 1.1 2014/03/06 10:26:48 jlec Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 ) + +WX_GTK_VER="2.9" + +inherit eutils multiprocessing python-single-r1 scons-utils toolchain-funcs wxwidgets virtualx + +DESCRIPTION="Molecular dynamics by NMR data analysis" +HOMEPAGE="http://www.nmr-relax.com/" +SRC_URI="http://download.gna.org/relax/${P}.src.tar.bz2" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +RDEPEND=" + ${PYTHON_DEPS} + dev-python/numpy[${PYTHON_USEDEP}] + dev-python/wxpython:${WX_GTK_VER}[${PYTHON_USEDEP}] + sci-chemistry/molmol + sci-chemistry/pymol[${PYTHON_USEDEP}] + sci-chemistry/vmd + >=sci-libs/bmrblib-1.0.3[${PYTHON_USEDEP}] + >=sci-libs/minfx-1.0.5[${PYTHON_USEDEP}] + sci-libs/scipy[${PYTHON_USEDEP}] + sci-visualization/grace + sci-visualization/opendx + x11-libs/wxGTK:${WX_GTK_VER}[X]" +DEPEND="${RDEPEND} + media-gfx/pngcrush" + +pkg_setup() { + python-single-r1_pkg_setup +} + +src_prepare() { + local png + rm -rf minfx bmrblib || die + epatch \ + "${FILESDIR}"/${PN}-3.0.1-gentoo.patch + tc-export CC +} + +src_compile() { + escons +} + +src_test() { + VIRTUALX_COMMAND="${EPYTHON} ./${PN}.py -x" + virtualmake +} + +src_install() { + dodoc README docs/{CHANGES,COMMITTERS,JOBS,relax.pdf,prompt_screenshot.txt} + + python_moduleinto ${PN} + python_domodule * + + rm ${PN} README || die + + make_wrapper ${PN}-nmr "${EPYTHON} $(python_get_sitedir)/${PN}/${PN}.py $@" +} |