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