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