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/xdsi: metadata.xml ChangeLog xdsi-0.91.ebuild
Date: Wed, 17 Feb 2010 11:34:54
Message-Id: E1NhiB8-0000Da-7G@stork.gentoo.org
1 jlec 10/02/17 11:34:50
2
3 Added: metadata.xml ChangeLog xdsi-0.91.ebuild
4 Log:
5 New ebuild for xdsi
6 (Portage version: 2.2_rc62/cvs/Linux i686)
7
8 Revision Changes Path
9 1.1 sci-chemistry/xdsi/metadata.xml
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/xdsi/metadata.xml?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/xdsi/metadata.xml?rev=1.1&content-type=text/plain
13
14 Index: metadata.xml
15 ===================================================================
16 <?xml version="1.0" encoding="UTF-8"?>
17 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
18 <pkgmetadata>
19 <herd>sci</herd>
20 <maintainer>
21 <email>jlec@g.o</email>
22 </maintainer>
23 <longdescription>
24 XDSi offers you the possibility to process all your datasets in a given directory with minimum effort.
25 * You just have to provide it with a resultdirectory and the directory where your frames are stored.
26 * All datasets consisting of more than 100 frames within the given directory and all its subdirectories will be processed.
27 * For each dataset a space group assignment is done using POINTLESS of the CCP4 software package
28 * Plots of the most informative statistics of INTEGRATE.LP, CORRECT.LP and XDSSTAT.LP are generated for each dataset
29 * A plot comparing Rmeas, I/sig and Completeness of all the processed datasets is generated
30 * You can also generate plots for datasets that have been processed using XDS without XDSi
31 </longdescription>
32 </pkgmetadata>
33
34
35
36 1.1 sci-chemistry/xdsi/ChangeLog
37
38 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/xdsi/ChangeLog?rev=1.1&view=markup
39 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/xdsi/ChangeLog?rev=1.1&content-type=text/plain
40
41 Index: ChangeLog
42 ===================================================================
43 # ChangeLog for sci-chemistry/xdsi
44 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
45 # $Header: /var/cvsroot/gentoo-x86/sci-chemistry/xdsi/ChangeLog,v 1.1 2010/02/17 11:34:49 jlec Exp $
46
47 *xdsi-0.91 (17 Feb 2010)
48
49 17 Feb 2010; Justin Lecher (jlec) <jlec@×××××××××.net>
50 +files/0.91-gentoo.patch, +xdsi-0.91.ebuild, +metadata.xml:
51 Initial addition
52
53
54
55
56 1.1 sci-chemistry/xdsi/xdsi-0.91.ebuild
57
58 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/xdsi/xdsi-0.91.ebuild?rev=1.1&view=markup
59 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/xdsi/xdsi-0.91.ebuild?rev=1.1&content-type=text/plain
60
61 Index: xdsi-0.91.ebuild
62 ===================================================================
63 # Copyright 1999-2010 Gentoo Foundation
64 # Distributed under the terms of the GNU General Public License v2
65 # $Header: /var/cvsroot/gentoo-x86/sci-chemistry/xdsi/xdsi-0.91.ebuild,v 1.1 2010/02/17 11:34:49 jlec Exp $
66
67 EAPI="3"
68
69 inherit eutils
70
71 DESCRIPTION="A crude interface for running the XDS"
72 HOMEPAGE="http://strucbio.biologie.uni-konstanz.de/xdswiki/index.php/Xdsi"
73 SRC_URI="ftp://turn14.biologie.uni-konstanz.de/pub/${PN}/${PN}_${PV}.tar.gz"
74
75 LICENSE="as-is"
76 SLOT="0"
77 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
78 IUSE=""
79
80 RDEPEND="
81 sci-chemistry/mosflm
82 sci-chemistry/xds-bin[smp]
83 sci-chemistry/pointless
84 sci-visualization/xds-viewer
85 sci-visualization/gnuplot
86 media-gfx/imagemagick
87 app-text/xpdf
88 dev-lang/tk"
89 # Need to clarified for licensing
90 # sci-chemistry/xdsstat-bin
91 DEPEND=""
92
93 S="${WORKDIR}"
94
95 src_prepare() {
96 epatch "${FILESDIR}"/${PV}-gentoo.patch
97 sed "s:GENTOOTEMPLATE:${EPREFIX}/usr/share/${PN}/templates:g" -i ${PN} \
98 || die
99 }
100
101 src_install() {
102 dobin ${PN} || die
103 insinto /usr/share/${PN}/templates
104 doins templates/{*.INP,bohr*,fortran,pauli,info.png,*.pck,tablesf_xdsi} || die
105 dodoc templates/*.pdf || die
106 }
107
108 pkg_postinst() {
109 elog "Documentation can be found here:"
110 elog "ftp://turn14.biologie.uni-konstanz.de/pub/xdsi/xdsi_doc_print.pdf"
111 }