Gentoo Archives: gentoo-commits

From: "Markus Dittrich (markusle)" <markusle@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-chemistry/pdb2pqr: ChangeLog pdb2pqr-1.3.0.ebuild
Date: Sat, 11 Oct 2008 11:19:39
Message-Id: E1KocVU-0001yW-Vj@stork.gentoo.org
1 markusle 08/10/11 11:19:36
2
3 Modified: ChangeLog pdb2pqr-1.3.0.ebuild
4 Log:
5 Added missing numpy dependency and fixed LDFLAGS issue (see bug #241178).
6 (Portage version: 2.2_rc11/cvs/Linux 2.6.26-SENTINEL-2 i686)
7
8 Revision Changes Path
9 1.13 sci-chemistry/pdb2pqr/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/pdb2pqr/ChangeLog?rev=1.13&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/pdb2pqr/ChangeLog?rev=1.13&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/pdb2pqr/ChangeLog?r1=1.12&r2=1.13
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/pdb2pqr/ChangeLog,v
18 retrieving revision 1.12
19 retrieving revision 1.13
20 diff -u -r1.12 -r1.13
21 --- ChangeLog 19 Jun 2008 13:02:12 -0000 1.12
22 +++ ChangeLog 11 Oct 2008 11:19:36 -0000 1.13
23 @@ -1,6 +1,10 @@
24 # ChangeLog for sci-chemistry/pdb2pqr
25 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/pdb2pqr/ChangeLog,v 1.12 2008/06/19 13:02:12 markusle Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/pdb2pqr/ChangeLog,v 1.13 2008/10/11 11:19:36 markusle Exp $
28 +
29 + 11 Oct 2008; Markus Dittrich <markusle@g.o>
30 + +files/pdb2pqr-1.3.0-ldflags.patch, pdb2pqr-1.3.0.ebuild:
31 + Added missing numpy dependency and fixed LDFLAGS issue (see bug #241178).
32
33 19 Jun 2008; Markus Dittrich <markusle@g.o>
34 +files/pdb2pqr-1.3.0-gcc4.3.patch, pdb2pqr-1.3.0.ebuild:
35
36
37
38 1.3 sci-chemistry/pdb2pqr/pdb2pqr-1.3.0.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/pdb2pqr/pdb2pqr-1.3.0.ebuild?rev=1.3&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/pdb2pqr/pdb2pqr-1.3.0.ebuild?rev=1.3&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/pdb2pqr/pdb2pqr-1.3.0.ebuild?r1=1.2&r2=1.3
43
44 Index: pdb2pqr-1.3.0.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/pdb2pqr/pdb2pqr-1.3.0.ebuild,v
47 retrieving revision 1.2
48 retrieving revision 1.3
49 diff -u -r1.2 -r1.3
50 --- pdb2pqr-1.3.0.ebuild 19 Jun 2008 13:02:12 -0000 1.2
51 +++ pdb2pqr-1.3.0.ebuild 11 Oct 2008 11:19:36 -0000 1.3
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2008 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/pdb2pqr/pdb2pqr-1.3.0.ebuild,v 1.2 2008/06/19 13:02:12 markusle Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/pdb2pqr/pdb2pqr-1.3.0.ebuild,v 1.3 2008/10/11 11:19:36 markusle Exp $
57
58 inherit eutils fortran multilib flag-o-matic distutils
59
60 @@ -13,7 +13,8 @@
61 IUSE=""
62 KEYWORDS="~amd64 ~x86"
63
64 -DEPEND="dev-lang/python"
65 +DEPEND="dev-lang/python
66 + dev-python/numpy"
67
68 FORTRAN="g77 gfortran"
69
70 @@ -21,6 +22,7 @@
71 unpack ${A}
72 cd "${S}"
73 epatch "${FILESDIR}"/${P}-gcc4.3.patch
74 + epatch "${FILESDIR}"/${P}-ldflags.patch
75 }
76
77 src_compile() {