Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-astronomy/scamp: ChangeLog scamp-1.7.0.ebuild scamp-1.5.5.ebuild
Date: Mon, 03 May 2010 21:44:07
Message-Id: 20100503214404.CA2202C39F@corvid.gentoo.org
1 bicatali 10/05/03 21:44:04
2
3 Modified: ChangeLog
4 Added: scamp-1.7.0.ebuild
5 Removed: scamp-1.5.5.ebuild
6 Log:
7 Version bump
8 (Portage version: 2.2_rc67/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.6 sci-astronomy/scamp/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/scamp/ChangeLog?rev=1.6&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/scamp/ChangeLog?rev=1.6&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/scamp/ChangeLog?r1=1.5&r2=1.6
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/scamp/ChangeLog,v
20 retrieving revision 1.5
21 retrieving revision 1.6
22 diff -u -r1.5 -r1.6
23 --- ChangeLog 4 Nov 2009 00:45:32 -0000 1.5
24 +++ ChangeLog 3 May 2010 21:44:04 -0000 1.6
25 @@ -1,6 +1,12 @@
26 # ChangeLog for sci-astronomy/scamp
27 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/scamp/ChangeLog,v 1.5 2009/11/04 00:45:32 bicatali Exp $
29 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/scamp/ChangeLog,v 1.6 2010/05/03 21:44:04 bicatali Exp $
31 +
32 +*scamp-1.7.0 (03 May 2010)
33 +
34 + 03 May 2010; Sébastien Fabbro <bicatali@g.o> -scamp-1.5.5.ebuild,
35 + +scamp-1.7.0.ebuild:
36 + Version bump
37
38 *scamp-1.6.2 (04 Nov 2009)
39
40
41
42
43 1.1 sci-astronomy/scamp/scamp-1.7.0.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/scamp/scamp-1.7.0.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/scamp/scamp-1.7.0.ebuild?rev=1.1&content-type=text/plain
47
48 Index: scamp-1.7.0.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-astronomy/scamp/scamp-1.7.0.ebuild,v 1.1 2010/05/03 21:44:04 bicatali Exp $
53
54 EAPI=2
55
56 DESCRIPTION="Computes astrometric and photometric solutions for astronomical images"
57 HOMEPAGE="http://astromatic.iap.fr/software/scamp"
58 SRC_URI="ftp://ftp.iap.fr/pub/from_users/bertin/${PN}/${P}.tar.gz"
59
60 LICENSE="CeCILL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE="doc threads plplot"
64
65 RDEPEND=">=sci-astronomy/cdsclient-3.4
66 virtual/cblas
67 >=sci-libs/lapack-atlas-3.8.0
68 sci-libs/fftw:3.0
69 plplot? ( >=sci-libs/plplot-5.9 )"
70 DEPEND="${RDEPEND}
71 dev-util/pkgconfig"
72
73 src_prepare() {
74 # gentoo uses cblas instead of ptcblas (linked to threaded with eselect)
75 sed -i \
76 -e 's/ptcblas/cblas/g' \
77 configure || die "sed failed"
78 }
79
80 src_configure() {
81 econf \
82 --with-atlas="/usr/$(get_libdir)/lapack/atlas" \
83 $(use_with plplot) \
84 $(use_enable threads)
85 }
86
87 src_install () {
88 emake DESTDIR="${D}" install || die "emake install failed"
89 dodoc AUTHORS ChangeLog HISTORY README THANKS BUGS
90 if use doc; then
91 insinto /usr/share/doc/${PF}
92 doins doc/*.pdf || die "pdf doc install failed"
93 fi
94 }