Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-chemistry/relax: ChangeLog relax-3.1.5.ebuild
Date: Wed, 05 Feb 2014 10:59:19
Message-Id: 20140205105916.123232004B@flycatcher.gentoo.org
1 jlec 14/02/05 10:59:15
2
3 Modified: ChangeLog
4 Added: relax-3.1.5.ebuild
5 Log:
6 sci-chemistry/relax: Version Bump
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
9
10 Revision Changes Path
11 1.19 sci-chemistry/relax/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/relax/ChangeLog?rev=1.19&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/relax/ChangeLog?rev=1.19&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/relax/ChangeLog?r1=1.18&r2=1.19
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/relax/ChangeLog,v
20 retrieving revision 1.18
21 retrieving revision 1.19
22 diff -u -r1.18 -r1.19
23 --- ChangeLog 3 Feb 2014 08:44:29 -0000 1.18
24 +++ ChangeLog 5 Feb 2014 10:59:15 -0000 1.19
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sci-chemistry/relax
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/relax/ChangeLog,v 1.18 2014/02/03 08:44:29 jlec Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/relax/ChangeLog,v 1.19 2014/02/05 10:59:15 jlec Exp $
30 +
31 +*relax-3.1.5 (05 Feb 2014)
32 +
33 + 05 Feb 2014; Justin Lecher <jlec@g.o> +relax-3.1.5.ebuild:
34 + Version Bump
35
36 *relax-3.1.4 (03 Feb 2014)
37
38
39
40
41 1.1 sci-chemistry/relax/relax-3.1.5.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/relax/relax-3.1.5.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/relax/relax-3.1.5.ebuild?rev=1.1&content-type=text/plain
45
46 Index: relax-3.1.5.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sci-chemistry/relax/relax-3.1.5.ebuild,v 1.1 2014/02/05 10:59:15 jlec Exp $
51
52 EAPI=5
53
54 PYTHON_COMPAT=( python2_7 )
55
56 WX_GTK_VER="2.9"
57
58 inherit eutils multiprocessing python-single-r1 scons-utils toolchain-funcs wxwidgets virtualx
59
60 DESCRIPTION="Molecular dynamics by NMR data analysis"
61 HOMEPAGE="http://www.nmr-relax.com/"
62 SRC_URI="http://download.gna.org/relax/${P}.src.tar.bz2"
63
64 SLOT="0"
65 LICENSE="GPL-2"
66 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
67 IUSE=""
68
69 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
70
71 RDEPEND="
72 ${PYTHON_DEPS}
73 dev-python/numpy[${PYTHON_USEDEP}]
74 dev-python/wxpython:${WX_GTK_VER}[${PYTHON_USEDEP}]
75 sci-chemistry/molmol
76 sci-chemistry/pymol[${PYTHON_USEDEP}]
77 sci-chemistry/vmd
78 >=sci-libs/bmrblib-1.0.3[${PYTHON_USEDEP}]
79 >=sci-libs/minfx-1.0.5[${PYTHON_USEDEP}]
80 sci-libs/scipy[${PYTHON_USEDEP}]
81 sci-visualization/grace
82 sci-visualization/opendx
83 x11-libs/wxGTK:${WX_GTK_VER}[X]"
84 DEPEND="${RDEPEND}
85 media-gfx/pngcrush"
86
87 pkg_setup() {
88 python-single-r1_pkg_setup
89 }
90
91 src_prepare() {
92 local png
93 rm -rf minfx bmrblib || die
94 epatch \
95 "${FILESDIR}"/${PN}-3.0.1-gentoo.patch
96 tc-export CC
97 }
98
99 src_compile() {
100 escons
101 }
102
103 src_test() {
104 VIRTUALX_COMMAND="${EPYTHON} ./${PN}.py -x"
105 virtualmake
106 }
107
108 src_install() {
109 dodoc README docs/{CHANGES,COMMITTERS,JOBS,relax.pdf,prompt_screenshot.txt}
110
111 python_moduleinto ${PN}
112 python_domodule *
113
114 rm ${PN} README || die
115
116 make_wrapper ${PN}-nmr "${EPYTHON} $(python_get_sitedir)/${PN}/${PN}.py $@"
117 }