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/probe: ChangeLog probe-2.12.071128.ebuild
Date: Mon, 28 Jun 2010 15:50:02
Message-Id: 20100628154957.77BE02C621@corvid.gentoo.org
1 jlec 10/06/28 15:49:57
2
3 Modified: ChangeLog probe-2.12.071128.ebuild
4 Log:
5 Keyworded for linux prefix, some QA (die missing)
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.9 sci-chemistry/probe/ChangeLog
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/probe/ChangeLog?rev=1.9&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/probe/ChangeLog?rev=1.9&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/probe/ChangeLog?r1=1.8&r2=1.9
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/probe/ChangeLog,v
18 retrieving revision 1.8
19 retrieving revision 1.9
20 diff -u -r1.8 -r1.9
21 --- ChangeLog 29 May 2009 00:44:23 -0000 1.8
22 +++ ChangeLog 28 Jun 2010 15:49:57 -0000 1.9
23 @@ -1,6 +1,9 @@
24 # ChangeLog for sci-chemistry/probe
25 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/probe/ChangeLog,v 1.8 2009/05/29 00:44:23 dberkholz Exp $
27 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/probe/ChangeLog,v 1.9 2010/06/28 15:49:57 jlec Exp $
29 +
30 + 28 Jun 2010; Justin Lecher <jlec@g.o> probe-2.12.071128.ebuild:
31 + Keyworded for linux prefix, some QA (die missing)
32
33 29 May 2009; Donnie Berkholz <dberkholz@g.o>;
34 probe-2.12.071128.ebuild:
35
36
37
38 1.4 sci-chemistry/probe/probe-2.12.071128.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/probe/probe-2.12.071128.ebuild?rev=1.4&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/probe/probe-2.12.071128.ebuild?rev=1.4&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/probe/probe-2.12.071128.ebuild?r1=1.3&r2=1.4
43
44 Index: probe-2.12.071128.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/probe/probe-2.12.071128.ebuild,v
47 retrieving revision 1.3
48 retrieving revision 1.4
49 diff -u -r1.3 -r1.4
50 --- probe-2.12.071128.ebuild 29 May 2009 00:44:23 -0000 1.3
51 +++ probe-2.12.071128.ebuild 28 Jun 2010 15:49:57 -0000 1.4
52 @@ -1,6 +1,6 @@
53 -# Copyright 1999-2009 Gentoo Foundation
54 +# Copyright 1999-2010 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/probe/probe-2.12.071128.ebuild,v 1.3 2009/05/29 00:44:23 dberkholz Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/probe/probe-2.12.071128.ebuild,v 1.4 2010/06/28 15:49:57 jlec Exp $
58
59 inherit toolchain-funcs
60
61 @@ -8,13 +8,16 @@
62 DESCRIPTION="Evaluates atomic packing within or between molecules"
63 HOMEPAGE="http://kinemage.biochem.duke.edu/software/probe.php"
64 SRC_URI="http://kinemage.biochem.duke.edu/downloads/software/probe/${MY_P}.src.zip"
65 +
66 LICENSE="richardson"
67 SLOT="0"
68 -KEYWORDS="amd64 ~ppc ~x86"
69 +KEYWORDS="amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
70 IUSE=""
71 +
72 RDEPEND=""
73 DEPEND="${RDEPEND}
74 app-arch/unzip"
75 +
76 S="${WORKDIR}/${MY_P}.scr"
77
78 src_unpack() {
79 @@ -23,7 +26,7 @@
80 # Respect CC
81 sed -i \
82 -e 's:cc:$(CC):g' \
83 - "${S}"/Makefile
84 + "${S}"/Makefile || die
85 }
86
87 src_compile() {
88 @@ -35,6 +38,6 @@
89 }
90
91 src_install() {
92 - dobin "${S}"/probe
93 - dodoc "${S}"/README*
94 + dobin "${S}"/probe || die
95 + dodoc "${S}"/README* || die
96 }