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.0.ebuild
Date: Fri, 29 Nov 2013 08:38:50
Message-Id: 20131129083842.708552004B@flycatcher.gentoo.org
1 jlec 13/11/29 08:38:42
2
3 Modified: ChangeLog
4 Added: relax-3.1.0.ebuild
5 Log:
6 sci-chemistry/relax: Version BUmp
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key B9D4F231BD1558AB!)
9
10 Revision Changes Path
11 1.11 sci-chemistry/relax/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/relax/ChangeLog?rev=1.11&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/relax/ChangeLog?rev=1.11&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/relax/ChangeLog?r1=1.10&r2=1.11
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/relax/ChangeLog,v
20 retrieving revision 1.10
21 retrieving revision 1.11
22 diff -u -r1.10 -r1.11
23 --- ChangeLog 27 Nov 2013 11:27:08 -0000 1.10
24 +++ ChangeLog 29 Nov 2013 08:38:42 -0000 1.11
25 @@ -1,6 +1,12 @@
26 # ChangeLog for sci-chemistry/relax
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/relax/ChangeLog,v 1.10 2013/11/27 11:27:08 jlec Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/relax/ChangeLog,v 1.11 2013/11/29 08:38:42 jlec Exp $
30 +
31 +*relax-3.1.0 (29 Nov 2013)
32 +
33 + 29 Nov 2013; Justin Lecher <jlec@g.o> +relax-3.1.0.ebuild,
34 + +files/relax-3.1.0-sample-script.patch:
35 + Version BUmp
36
37 *relax-3.0.2-r2 (27 Nov 2013)
38
39
40
41
42 1.1 sci-chemistry/relax/relax-3.1.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/relax/relax-3.1.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/relax/relax-3.1.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: relax-3.1.0.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sci-chemistry/relax/relax-3.1.0.ebuild,v 1.1 2013/11/29 08:38:42 jlec Exp $
52
53 EAPI=5
54
55 PYTHON_COMPAT=( python2_7 )
56
57 WX_GTK_VER="2.9"
58
59 inherit eutils python-single-r1 scons-utils toolchain-funcs wxwidgets virtualx
60
61 DESCRIPTION="Molecular dynamics by NMR data analysis"
62 HOMEPAGE="http://www.nmr-relax.com/"
63 SRC_URI="http://download.gna.org/relax/${P}.src.tar.bz2"
64
65 SLOT="0"
66 LICENSE="GPL-2"
67 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
68 IUSE=""
69
70 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
71
72 RDEPEND="
73 ${PYTHON_DEPS}
74 dev-python/numpy[${PYTHON_USEDEP}]
75 dev-python/wxpython:${WX_GTK_VER}[${PYTHON_USEDEP}]
76 sci-chemistry/molmol
77 sci-chemistry/pymol[${PYTHON_USEDEP}]
78 sci-chemistry/vmd
79 >=sci-libs/bmrblib-1.0.1_pre198[${PYTHON_USEDEP}]
80 >=sci-libs/minfx-1.0.4_pre98[${PYTHON_USEDEP}]
81 sci-libs/scipy[${PYTHON_USEDEP}]
82 sci-visualization/grace
83 sci-visualization/opendx
84 x11-libs/wxGTK:${WX_GTK_VER}[X]"
85 DEPEND="${RDEPEND}"
86
87 pkg_setup() {
88 python-single-r1_pkg_setup
89 }
90
91 src_prepare() {
92 rm -rf minfx bmrblib || die
93 epatch \
94 "${FILESDIR}"/${PN}-3.0.1-gentoo.patch \
95 "${FILESDIR}"/${P}-sample-script.patch
96 tc-export CC
97 }
98
99 src_compile() {
100 escons
101 }
102
103 src_test() {
104 VIRTUALX_COMMAND="${EPYTHON}"
105 virtualmake ./${PN}.py -x || die
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 }