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/msms-bin: metadata.xml ChangeLog msms-bin-2.6.1-r1.ebuild
Date: Sat, 30 Oct 2010 13:17:10
Message-Id: 20101030131703.889F120051@flycatcher.gentoo.org
1 jlec 10/10/30 13:17:03
2
3 Added: metadata.xml ChangeLog msms-bin-2.6.1-r1.ebuild
4 Log:
5 Moved package from sci-chemistry/msms to sci-chemistry/msms-bin, fixed installation destination, install missing scripts
6
7 (Portage version: 2.2.0_alpha2/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 sci-chemistry/msms-bin/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/msms-bin/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/msms-bin/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <herd>sci-chemistry</herd>
21 <maintainer>
22 <email>alexxy@g.o</email>
23 </maintainer>
24 </pkgmetadata>
25
26
27
28 1.1 sci-chemistry/msms-bin/ChangeLog
29
30 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/msms-bin/ChangeLog?rev=1.1&view=markup
31 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/msms-bin/ChangeLog?rev=1.1&content-type=text/plain
32
33 Index: ChangeLog
34 ===================================================================
35 # ChangeLog for sci-chemistry/msms-bin
36 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
37 # $Header: /var/cvsroot/gentoo-x86/sci-chemistry/msms-bin/ChangeLog,v 1.1 2010/10/30 13:17:03 jlec Exp $
38
39 *msms-bin-2.6.1-r1 (30 Oct 2010)
40
41 30 Oct 2010; Justin Lecher <jlec@g.o> +msms-bin-2.6.1-r1.ebuild,
42 +metadata.xml:
43 Moved package from sci-chemistry/msms to sci-chemistry/msms-bin, fixed
44 installation destination, install missing scripts
45
46 23 Aug 2010; Diego E. Pettenò <flameeyes@g.o> msms-2.6.1.ebuild:
47 Fix nofetch message. REMOVE QA-BREAKING binchecks RESTRICTION.
48
49 *msms-2.6.1 (21 Aug 2010)
50
51 21 Aug 2010; Alexey Shvetsov <alexxy@g.o> +msms-2.6.1.ebuild,
52 +metadata.xml:
53 Initial import per bug #209161
54
55
56
57
58 1.1 sci-chemistry/msms-bin/msms-bin-2.6.1-r1.ebuild
59
60 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/msms-bin/msms-bin-2.6.1-r1.ebuild?rev=1.1&view=markup
61 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/msms-bin/msms-bin-2.6.1-r1.ebuild?rev=1.1&content-type=text/plain
62
63 Index: msms-bin-2.6.1-r1.ebuild
64 ===================================================================
65 # Copyright 1999-2010 Gentoo Foundation
66 # Distributed under the terms of the GNU General Public License v2
67 # $Header: /var/cvsroot/gentoo-x86/sci-chemistry/msms-bin/msms-bin-2.6.1-r1.ebuild,v 1.1 2010/10/30 13:17:03 jlec Exp $
68
69 EAPI=3
70
71 DESCRIPTION="MSMS allows to compute very efficiently triangulations of Solvent Excluded Surfaces"
72 HOMEPAGE="http://mgl.scripps.edu/people/sanner/html/msms_home.html"
73 SRC_URI="
74 amd64? ( msms_i86_64Linux2_2.6.1.tar.gz )
75 x86? ( msms_i86Linux2_2.6.1.tar.gz )
76 "
77
78 LICENSE="MSMS"
79 SLOT="0"
80 KEYWORDS="~amd64 ~x86"
81 IUSE=""
82
83 RESTRICT="fetch"
84
85 S="${WORKDIR}"
86
87 QA_DT_HASH="${EROOT#/}opt/bin"
88
89 pkg_nofetch() {
90 einfo "Please download ${A} from ${HOMEPAGE} and place it to ${DISTDIR}"
91 }
92
93 src_install() {
94 doman msms.1 || die
95 dodoc README msms.html ReleaseNotes || die
96 exeinto /opt/bin
97 if use amd64; then
98 newexe ${PN%-bin}.x86_64Linux2.${PV} msms || die
99 elif use x86; then
100 newexe ${PN%-bin}.i86Linux2.${PV} msms || die
101 fi
102 dobin pdb_to_xyz* || die
103 }