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/xds-bin: ChangeLog xds-bin-20130530.ebuild xds-bin-20120926.ebuild
Date: Thu, 30 May 2013 09:42:06
Message-Id: 20130530094203.7A40C2171D@flycatcher.gentoo.org
1 jlec 13/05/30 09:42:03
2
3 Modified: ChangeLog
4 Added: xds-bin-20130530.ebuild
5 Removed: xds-bin-20120926.ebuild
6 Log:
7 sci-chemistry/xds-bin: Version BUmp
8
9 (Portage version: 2.2.0_alpha177/cvs/Linux x86_64, signed Manifest commit with key 8009D6F070EB7916)
10
11 Revision Changes Path
12 1.12 sci-chemistry/xds-bin/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/xds-bin/ChangeLog?rev=1.12&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/xds-bin/ChangeLog?rev=1.12&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/xds-bin/ChangeLog?r1=1.11&r2=1.12
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/xds-bin/ChangeLog,v
21 retrieving revision 1.11
22 retrieving revision 1.12
23 diff -u -r1.11 -r1.12
24 --- ChangeLog 24 Mar 2013 10:51:01 -0000 1.11
25 +++ ChangeLog 30 May 2013 09:42:03 -0000 1.12
26 @@ -1,6 +1,12 @@
27 # ChangeLog for sci-chemistry/xds-bin
28 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/xds-bin/ChangeLog,v 1.11 2013/03/24 10:51:01 jlec Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/xds-bin/ChangeLog,v 1.12 2013/05/30 09:42:03 jlec Exp $
31 +
32 +*xds-bin-20130530 (30 May 2013)
33 +
34 + 30 May 2013; Justin Lecher <jlec@g.o> -xds-bin-20120926.ebuild,
35 + +xds-bin-20130530.ebuild:
36 + Version BUmp
37
38 *xds-bin-20120926 (24 Mar 2013)
39
40
41
42
43 1.1 sci-chemistry/xds-bin/xds-bin-20130530.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/xds-bin/xds-bin-20130530.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/xds-bin/xds-bin-20130530.ebuild?rev=1.1&content-type=text/plain
47
48 Index: xds-bin-20130530.ebuild
49 ===================================================================
50 # Copyright 1999-2013 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sci-chemistry/xds-bin/xds-bin-20130530.ebuild,v 1.1 2013/05/30 09:42:03 jlec Exp $
53
54 EAPI=5
55
56 inherit eutils
57
58 DESCRIPTION="X-ray Detector Software for processing single-crystal monochromatic diffraction data"
59 HOMEPAGE="http://xds.mpimf-heidelberg.mpg.de/"
60 SRC_URI="
61 x86? ( ftp://ftp.mpimf-heidelberg.mpg.de/pub/kabsch/XDS-IA32_Linux_x86.tar.gz -> XDS-IA32_Linux_x86-${PV}.tar.gz )
62 amd64? ( ftp://ftp.mpimf-heidelberg.mpg.de/pub/kabsch/XDS-INTEL64_Linux_x86_64.tar.gz -> XDS-INTEL64_Linux_x86_64-${PV}.tar.gz )
63 ftp://ftp.mpimf-heidelberg.mpg.de/pub/kabsch/XDS_html_doc.tar.gz -> XDS_html_doc-${PV}.tar.gz"
64
65 LICENSE="free-noncomm"
66 SLOT="0"
67 KEYWORDS="-* ~amd64 ~x86"
68 IUSE="smp X"
69
70 RDEPEND="X? ( sci-visualization/xds-viewer )"
71 DEPEND=""
72
73 QA_PREBUILT="opt/xds-bin/*"
74
75 src_unpack() {
76 unpack ${A}
77 mv XDS-* "${S}"
78 }
79
80 src_install() {
81 local suffix bin
82 exeinto /opt/${PN}
83 doexe *
84
85 use smp && suffix="_par"
86
87 for bin in xds mintegrate mcolspot xscale; do
88 dosym ../${PN}/${bin}${suffix} /opt/bin/${bin}
89 done
90
91 for bin in 2cbf cellparm forkcolspot forkintegrate merge2cbf xdsconv; do
92 dosym ../${PN}/${bin} /opt/bin/${bin}
93 done
94
95 dohtml -r "${WORKDIR}"/XDS_html_doc/*
96 insinto /usr/share/${PN}/INPUT_templates
97 doins "${WORKDIR}"/XDS_html_doc/html_doc/INPUT_templates/*
98 }
99
100 pkg_postinst() {
101 elog "This package will expire on December 31, 2013"
102 }