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/sfcheck: metadata.xml ChangeLog sfcheck-7.03.17.ebuild
Date: Sat, 06 Feb 2010 22:13:19
Message-Id: E1Ndstu-0003kt-M2@stork.gentoo.org
1 jlec 10/02/06 22:13:14
2
3 Added: metadata.xml ChangeLog sfcheck-7.03.17.ebuild
4 Log:
5 Splitted sfcheck from ccp4
6 (Portage version: 2.2_rc62/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 sci-chemistry/sfcheck/metadata.xml
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/sfcheck/metadata.xml?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/sfcheck/metadata.xml?rev=1.1&content-type=text/plain
13
14 Index: metadata.xml
15 ===================================================================
16 <?xml version="1.0" encoding="UTF-8"?>
17 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
18 <pkgmetadata>
19 <herd>sci</herd>
20 <maintainer>
21 <email>sci@g.o</email>
22 </maintainer>
23 </pkgmetadata>
24
25
26
27 1.1 sci-chemistry/sfcheck/ChangeLog
28
29 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/sfcheck/ChangeLog?rev=1.1&view=markup
30 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/sfcheck/ChangeLog?rev=1.1&content-type=text/plain
31
32 Index: ChangeLog
33 ===================================================================
34 # ChangeLog for sci-chemistry/sfcheck
35 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
36 # $Header: /var/cvsroot/gentoo-x86/sci-chemistry/sfcheck/ChangeLog,v 1.1 2010/02/06 22:13:13 jlec Exp $
37
38 *sfcheck-7.03.17 (06 Feb 2010)
39
40 06 Feb 2010; Justin Lecher (jlec) <jlec@g.o>
41 +files/7.03.17-ldflags.patch, +sfcheck-7.03.17.ebuild, +metadata.xml:
42 Splitted sfcheck from ccp4
43
44 *sfcheck-7.03.16 (22 Dec 2009)
45
46 22 Dec 2009; Justin Lecher (jlec) <jlec@×××××××××.net>
47 +files/7.03.16-ldflags.patch, +sfcheck-7.03.16.ebuild, +metadata.xml:
48 Initial commit
49
50
51
52
53 1.1 sci-chemistry/sfcheck/sfcheck-7.03.17.ebuild
54
55 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/sfcheck/sfcheck-7.03.17.ebuild?rev=1.1&view=markup
56 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/sfcheck/sfcheck-7.03.17.ebuild?rev=1.1&content-type=text/plain
57
58 Index: sfcheck-7.03.17.ebuild
59 ===================================================================
60 # Copyright 1999-2010 Gentoo Foundation
61 # Distributed under the terms of the GNU General Public License v2
62 # $Header: /var/cvsroot/gentoo-x86/sci-chemistry/sfcheck/sfcheck-7.03.17.ebuild,v 1.1 2010/02/06 22:13:13 jlec Exp $
63
64 EAPI="2"
65
66 inherit eutils toolchain-funcs
67
68 DESCRIPTION="Program for assessing the agreement between the atomic model and X-ray data or EM map"
69 HOMEPAGE="http://www.ysbl.york.ac.uk/~alexei/sfcheck.html"
70 #SRC_URI="http://www.ysbl.york.ac.uk/~alexei/downloads/sfcheck.tar.gz"
71 SRC_URI="mirror://gentoo/${P}.tar.gz"
72
73 SLOT="0"
74 KEYWORDS="~amd64 ~x86"
75 LICENSE="ccp4"
76 IUSE=""
77
78 RDEPEND="sci-libs/ccp4-libs"
79 DEPEND="${RDEPEND}
80 !<sci-chmistry/ccp4-apps-6.1.3"
81
82 S="${WORKDIR}"/${PN}
83
84 src_prepare() {
85 epatch "${FILESDIR}"/${PV}-ldflags.patch
86
87 emake \
88 -C src \
89 clean || die
90 }
91
92 src_compile() {
93 MR_FORT="$(tc-getFC) ${FFLAGS}" \
94 MR_LIBRARY="-lccp4f" \
95 emake \
96 -C src \
97 all || die
98 }
99
100 src_install() {
101 dobin bin/${PN} || die
102 dodoc readme ${PN}.com.gz doc/${PN}* || die
103 }