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-libs/coot-data: ChangeLog coot-data-2.ebuild coot-data-1.ebuild
Date: Fri, 05 Feb 2010 23:31:19
Message-Id: E1NdXdr-0000Ax-0a@stork.gentoo.org
1 jlec 10/02/05 23:31:15
2
3 Modified: ChangeLog
4 Added: coot-data-2.ebuild
5 Removed: coot-data-1.ebuild
6 Log:
7 Version Bump
8 (Portage version: 2.2_rc62/cvs/Linux x86_64, RepoMan options: --force)
9
10 Revision Changes Path
11 1.9 sci-libs/coot-data/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/coot-data/ChangeLog?rev=1.9&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/coot-data/ChangeLog?rev=1.9&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/coot-data/ChangeLog?r1=1.8&r2=1.9
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-libs/coot-data/ChangeLog,v
20 retrieving revision 1.8
21 retrieving revision 1.9
22 diff -u -r1.8 -r1.9
23 --- ChangeLog 10 Oct 2009 00:12:29 -0000 1.8
24 +++ ChangeLog 5 Feb 2010 23:31:14 -0000 1.9
25 @@ -1,6 +1,12 @@
26 # ChangeLog for sci-libs/coot-data
27 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/coot-data/ChangeLog,v 1.8 2009/10/10 00:12:29 patrick Exp $
29 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/coot-data/ChangeLog,v 1.9 2010/02/05 23:31:14 jlec Exp $
31 +
32 +*coot-data-2 (05 Feb 2010)
33 +
34 + 05 Feb 2010; Justin Lecher (jlec) <jlec@g.o> -coot-data-1.ebuild,
35 + +coot-data-2.ebuild:
36 + Version Bump
37
38 10 Oct 2009; Patrick Lauer <patrick@g.o> coot-data-1.ebuild:
39 Fixing Homepage, other half of #285068
40
41
42
43 1.1 sci-libs/coot-data/coot-data-2.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/coot-data/coot-data-2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/coot-data/coot-data-2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: coot-data-2.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sci-libs/coot-data/coot-data-2.ebuild,v 1.1 2010/02/05 23:31:14 jlec Exp $
53
54 EAPI="3"
55
56 DESCRIPTION="Data for the Crystallographic Object-Oriented Toolkit"
57 HOMEPAGE="http://www.biop.ox.ac.uk/coot/"
58 #SRC_URI="http://www.ysbl.york.ac.uk/~emsley/software/extras/reference-structures.tar.gz"
59 SRC_URI="mirror://gentoo/reference-structures-${PV}.tar.gz"
60
61 LICENSE="GPL-3"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~x86"
64 IUSE=""
65
66 RESTRICT="binchecks strip"
67
68 S="${WORKDIR}"
69
70 src_install() {
71 insinto /usr/share/coot
72 doins -r reference-structures || die
73
74 # Coot looks in the wrong spot for the monomer library
75 # Listens to ccp4's CCP4_LIB rather than CLIBD_MON
76 cat >> "${T}"/coot <<- EOF
77 COOT_REFMAC_LIB_DIR="${EPREFIX}/usr/share/ccp4/"
78 COOT_REF_STRUCTS="${EPREFIX}/usr/share/coot/reference-structures/"
79 EOF
80
81 newenvd "${T}"/coot 20coot || die
82 }