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/ortep3: ChangeLog ortep3-1.0.3-r1.ebuild ortep3-1.0.3.ebuild
Date: Thu, 24 Jun 2010 16:14:00
Message-Id: 20100624161355.B49942CF49@corvid.gentoo.org
1 jlec 10/06/24 16:13:55
2
3 Modified: ChangeLog
4 Added: ortep3-1.0.3-r1.ebuild
5 Removed: ortep3-1.0.3.ebuild
6 Log:
7 Fix for recent fortran compilers, #272577
8 (Portage version: 2.2_rc67/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.7 sci-chemistry/ortep3/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/ortep3/ChangeLog?rev=1.7&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/ortep3/ChangeLog?rev=1.7&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/ortep3/ChangeLog?r1=1.6&r2=1.7
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/ortep3/ChangeLog,v
20 retrieving revision 1.6
21 retrieving revision 1.7
22 diff -u -r1.6 -r1.7
23 --- ChangeLog 22 Jul 2007 07:20:46 -0000 1.6
24 +++ ChangeLog 24 Jun 2010 16:13:55 -0000 1.7
25 @@ -1,6 +1,12 @@
26 # ChangeLog for sci-chemistry/ortep3
27 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/ortep3/ChangeLog,v 1.6 2007/07/22 07:20:46 dberkholz Exp $
29 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/ortep3/ChangeLog,v 1.7 2010/06/24 16:13:55 jlec Exp $
31 +
32 +*ortep3-1.0.3-r1 (24 Jun 2010)
33 +
34 + 24 Jun 2010; Justin Lecher <jlec@g.o> -ortep3-1.0.3.ebuild,
35 + +ortep3-1.0.3-r1.ebuild:
36 + Fix for recent fortran compilers, #272577
37
38 22 Jul 2007; Donnie Berkholz <dberkholz@g.o>; ortep3-1.0.3.ebuild:
39 Drop virtual/x11 references.
40
41
42
43 1.1 sci-chemistry/ortep3/ortep3-1.0.3-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/ortep3/ortep3-1.0.3-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/ortep3/ortep3-1.0.3-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: ortep3-1.0.3-r1.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-chemistry/ortep3/ortep3-1.0.3-r1.ebuild,v 1.1 2010/06/24 16:13:55 jlec Exp $
53
54 inherit fortran
55
56 FORTRAN="gfortran ifc"
57
58 DESCRIPTION="Thermal ellipsoid plot program for crystal structure illustrations"
59 HOMEPAGE="http://www.ornl.gov/sci/ortep/"
60 SRC_URI="ftp://ftp.ornl.gov/pub/ortep/src/ortep.f"
61
62 LICENSE="public-domain"
63 SLOT="0"
64 KEYWORDS="~x86"
65 IUSE=""
66
67 RDEPEND="
68 sci-libs/pgplot
69 x11-libs/libX11"
70 DEPEND="${RDEPEND}"
71
72 S=${WORKDIR}
73
74 src_unpack() {
75 cp ${DISTDIR}/${A} ${S}
76 }
77
78 src_compile() {
79 COMMAND="${FORTRANC} ${FFLAGS:- -O2} ${LDFLAGS} -o ${PN} ortep.f -lpgplot -lX11"
80 echo ${COMMAND}
81 ${COMMAND} || die "Compilation failed"
82 }
83
84 src_install() {
85 dobin ${PN} || die
86 }