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/pymol-plugins-promol: pymol-plugins-promol-3.0.2-r1.ebuild ChangeLog
Date: Wed, 30 Jan 2013 09:00:15
Message-Id: 20130130090011.3EF322171D@flycatcher.gentoo.org
1 jlec 13/01/30 09:00:11
2
3 Modified: ChangeLog
4 Added: pymol-plugins-promol-3.0.2-r1.ebuild
5 Log:
6 sci-chemistry/pymol-plugins-promol: Move to new python eclasses, #453574
7
8 (Portage version: 2.2.0_alpha161/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 70EB7916)
9
10 Revision Changes Path
11 1.5 sci-chemistry/pymol-plugins-promol/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/pymol-plugins-promol/ChangeLog?rev=1.5&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/pymol-plugins-promol/ChangeLog?rev=1.5&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/pymol-plugins-promol/ChangeLog?r1=1.4&r2=1.5
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/pymol-plugins-promol/ChangeLog,v
20 retrieving revision 1.4
21 retrieving revision 1.5
22 diff -u -r1.4 -r1.5
23 --- ChangeLog 22 Jan 2013 19:11:15 -0000 1.4
24 +++ ChangeLog 30 Jan 2013 09:00:11 -0000 1.5
25 @@ -1,6 +1,12 @@
26 # ChangeLog for sci-chemistry/pymol-plugins-promol
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/pymol-plugins-promol/ChangeLog,v 1.4 2013/01/22 19:11:15 jlec Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/pymol-plugins-promol/ChangeLog,v 1.5 2013/01/30 09:00:11 jlec Exp $
30 +
31 +*pymol-plugins-promol-3.0.2-r1 (30 Jan 2013)
32 +
33 + 30 Jan 2013; Justin Lecher <jlec@g.o>
34 + +pymol-plugins-promol-3.0.2-r1.ebuild:
35 + Move to new python eclasses, #453574
36
37 22 Jan 2013; Justin Lecher <jlec@g.o>
38 pymol-plugins-promol-3.0.2.ebuild, metadata.xml:
39
40
41
42 1.1 sci-chemistry/pymol-plugins-promol/pymol-plugins-promol-3.0.2-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/pymol-plugins-promol/pymol-plugins-promol-3.0.2-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/pymol-plugins-promol/pymol-plugins-promol-3.0.2-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: pymol-plugins-promol-3.0.2-r1.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/pymol-plugins-promol/pymol-plugins-promol-3.0.2-r1.ebuild,v 1.1 2013/01/30 09:00:10 jlec Exp $
52
53 EAPI=5
54
55 PYTHON_COMPAT=( python2_7 )
56
57 inherit python-r1
58
59 DESCRIPTION="Fast and accurate regognition of active sites"
60 HOMEPAGE="http://www.rit.edu/cos/ezviz/ProMOL_dl.html"
61 SRC_URI="mirror://gentoo/${P}.tar.bz2"
62
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86 ~amd64-linux"
65 LICENSE="as-is"
66 IUSE=""
67
68 RDEPEND="
69 virtual/pmw[${PYTHON_USEDEP}]
70 sci-chemistry/pymol"
71 DEPEND=""
72
73 src_prepare() {
74 python_copy_sources
75 preparation() {
76 cd "${BUILD_DIR}" || die
77 sed \
78 -e "s:./modules/pmg_tk/startup:${EPREFIX}/$(python_get_sitedir)/pmg_tk/startup/ProMol:g" \
79 -i ProMOL_302.py || die
80 }
81 python_foreach_impl preparation
82 }
83
84 src_install(){
85 dodoc *doc
86 dohtml -r Thanks.html EDMHelp.htm Help
87
88 installation() {
89 cd "${BUILD_DIR}" || die
90 python_moduleinto pmg_tk/startup/ProMol
91 python_domodule PDB_List AminoPics Motifs *GIF pdb_entry_type.txt Master.txt Scripts
92 python_moduleinto pmg_tk/startup
93 python_domodule *.py
94 dosym ../../../../../../share/doc/${PF}/html/Help \
95 $(python_get_sitedir)/pmg_tk/startup/ProMol/Help
96 dosym ../../../../../../share/doc/${PF}/html/Thanks.html \
97 $(python_get_sitedir)/pmg_tk/startup/ProMol/Thanks.html
98 dosym ../../../../../../share/doc/${PF}/html/EDMHelp.htm \
99 $(python_get_sitedir)/pmg_tk/startup/ProMol/EDMHelp.htm
100 }
101 python_foreach_impl installation
102 }