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-20111230.ebuild xds-bin-20111220.ebuild
Date: Sat, 31 Dec 2011 09:00:32
Message-Id: 20111231090022.A140E2004B@flycatcher.gentoo.org
1 jlec 11/12/31 09:00:22
2
3 Modified: ChangeLog
4 Added: xds-bin-20111230.ebuild
5 Removed: xds-bin-20111220.ebuild
6 Log:
7 Version Bump
8
9 (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.9 sci-chemistry/xds-bin/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/xds-bin/ChangeLog?rev=1.9&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/xds-bin/ChangeLog?rev=1.9&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/xds-bin/ChangeLog?r1=1.8&r2=1.9
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/xds-bin/ChangeLog,v
21 retrieving revision 1.8
22 retrieving revision 1.9
23 diff -u -r1.8 -r1.9
24 --- ChangeLog 20 Dec 2011 15:59:59 -0000 1.8
25 +++ ChangeLog 31 Dec 2011 09:00:22 -0000 1.9
26 @@ -1,6 +1,12 @@
27 # ChangeLog for sci-chemistry/xds-bin
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/xds-bin/ChangeLog,v 1.8 2011/12/20 15:59:59 jlec Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/xds-bin/ChangeLog,v 1.9 2011/12/31 09:00:22 jlec Exp $
31 +
32 +*xds-bin-20111230 (31 Dec 2011)
33 +
34 + 31 Dec 2011; Justin Lecher <jlec@g.o> -xds-bin-20111220.ebuild,
35 + +xds-bin-20111230.ebuild:
36 + Version Bump
37
38 *xds-bin-20111220 (20 Dec 2011)
39
40
41
42
43 1.1 sci-chemistry/xds-bin/xds-bin-20111230.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/xds-bin/xds-bin-20111230.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/xds-bin/xds-bin-20111230.ebuild?rev=1.1&content-type=text/plain
47
48 Index: xds-bin-20111230.ebuild
49 ===================================================================
50 # Copyright 1999-2011 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-20111230.ebuild,v 1.1 2011/12/31 09:00:22 jlec Exp $
53
54 EAPI="2"
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_EXECSTACK="*"
74
75 src_unpack() {
76 unpack ${A}
77 mv XDS-* "${S}"
78 }
79
80 src_install() {
81 exeinto /opt/${PN}
82 doexe * || die
83 if use smp; then
84 rm "${D}"/opt/${PN}/{xds,mintegrate,mcolspot,xscale}
85 dosym xds_par /opt/${PN}/xds || die
86 dosym xscale_par /opt/${PN}/xscale || die
87 dosym mintegrate_par /opt/${PN}/mintegrate || die
88 dosym mcolspot_par /opt/${PN}/mcolspot || die
89 else
90 rm "${D}"/opt/${PN}/*par
91 fi
92 dohtml -r "${WORKDIR}"/XDS_html_doc/* || die
93 insinto /usr/share/${PN}/INPUT_templates
94 doins "${WORKDIR}"/XDS_html_doc/html_doc/INPUT_templates/* || die
95
96 cat >> "${T}"/20xds <<- EOF
97 PATH="/opt/${PN}/"
98 EOF
99 doenvd "${T}"/20xds || die
100 }
101
102 pkg_postinst() {
103 elog "This package will expire on December 31, 2011"
104 }